/* ============================================================
   International Destination Pages — Shared Stylesheet
   Used by: Paris, London, Tokyo, Dubai, Bali, Santorini,
            Barcelona, Maldives
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

.intl-dest * { box-sizing: border-box; }

.intl-dest {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: #1a1208;
    background: #fdf8f2;
}

/* ── Hero ── */
.p-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

.p-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-hero__bg.loaded { transform: scale(1); }

.p-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15,10,5,0.08) 0%, rgba(15,10,5,0.45) 60%, rgba(15,10,5,0.82) 100%);
}

.p-hero__deco {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.p-hero__deco span { display: block; height: 1px; background: rgba(255,255,255,0.3); }
.p-hero__deco span:nth-child(1) { width: 48px; }
.p-hero__deco span:nth-child(2) { width: 24px; }

.p-hero__inner {
    position: relative;
    z-index: 2;
    align-self: end;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 2rem;
}

.p-hero__country {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,160,80,0.75);
    margin-bottom: 0.6rem;
}

.p-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(4rem, 9vw, 8rem);
    color: #fff;
    line-height: 0.88;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
}
.p-hero__title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,220,160,0.8);
    display: block;
}

.p-hero__tagline {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 2rem;
}

.p-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.p-hero__aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
    padding-bottom: 0.25rem;
}
.p-aside__item { text-align: right; }
.p-aside__lbl {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 3px;
}
.p-aside__val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}

/* ── Buttons ── */
.p-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #F37203;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 1px;
    text-decoration: none;
    transition: background 0.25s;
}
.p-btn-gold:hover { background: #d96502; }

.p-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 1px;
    border: 1px solid rgba(255,255,255,0.22);
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
}
.p-btn-outline:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.95); }

/* ── Essentials bar ── */
.p-essentials { background: #1a1208; }
.p-essentials__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-left: 1px solid #2e2010;
}
.p-essential {
    padding: 1.35rem 1.25rem;
    border-right: 1px solid #2e2010;
}
.p-essential__lbl {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(243,114,3,0.85);
    margin-bottom: 4px;
}
.p-essential__val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,240,210,0.95);
    line-height: 1.3;
}

/* ── Shared typography ── */
.p-section-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F37203;
    margin-bottom: 0.75rem;
}
.p-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    color: #1a1208;
    line-height: 1;
    letter-spacing: -0.02em;
}
.p-heading em { font-style: italic; color: #C53678; }

/* ── About ── */
.p-about {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 6rem;
    align-items: start;
    border-bottom: 1px solid #ecdcc8;
}
.p-about__left {
    position: sticky;
    top: calc(80px + 2rem);
}
.p-about__divider {
    width: 32px;
    height: 1px;
    background: #F37203;
    margin: 1.5rem 0;
}
.p-about__quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: #C53678;
    line-height: 1.6;
}
.p-about__body {
    font-size: 15px;
    font-weight: 300;
    color: #4a3820;
    line-height: 1.9;
}
.p-about__body p + p { margin-top: 1.25rem; }
.p-about__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2rem;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1208;
    text-decoration: none;
    border-bottom: 1px solid #F37203;
    padding-bottom: 3px;
    transition: color 0.2s;
}
.p-about__link:hover { color: #F37203; }

/* ── Highlights grid ── */
.p-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
    border: 1px solid #ecdcc8;
}
.p-hl {
    padding: 1.75rem;
    border-right: 1px solid #ecdcc8;
    border-bottom: 1px solid #ecdcc8;
    background: #fdf8f2;
    transition: background 0.2s;
}
.p-hl:hover { background: #fdf3e7; }
.p-hl:nth-child(3n) { border-right: none; }
.p-hl:nth-child(n+4) { border-bottom: none; }
.p-hl__num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 11px;
    color: #F37203;
    opacity: 0.7;
    margin-bottom: 0.6rem;
}
.p-hl__title { font-size: 13px; font-weight: 500; color: #1a1208; margin-bottom: 4px; letter-spacing: 0.01em; }
.p-hl__desc { font-size: 12px; font-weight: 300; color: #7a5c34; line-height: 1.65; }

/* ── Attractions ── */
.p-attractions {
    background: #fdf3e7;
    border-top: 1px solid #ecdcc8;
    border-bottom: 1px solid #ecdcc8;
    padding: 6rem 0;
}
.p-attractions__inner { max-width: 1300px; margin: 0 auto; padding: 0 2.5rem; }
.p-attractions__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.p-cards {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}
.p-card { background: #fff; overflow: hidden; border: 1px solid #ecdcc8; }
.p-card--featured { grid-row: span 2; }
.p-card__img { overflow: hidden; }
.p-card--featured .p-card__img { height: 420px; }
.p-card:not(.p-card--featured) .p-card__img { height: 180px; }
.p-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: transform 0.7s ease, filter 0.4s;
}
.p-card:hover .p-card__img img { transform: scale(1.05); filter: saturate(1); }
.p-card__body { padding: 1.5rem; }
.p-card__tag { font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #F37203; margin-bottom: 0.5rem; }
.p-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 22px;
    color: #1a1208;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
}
.p-card--featured .p-card__name { font-size: 27px; }
.p-card__desc { font-size: 13px; font-weight: 300; color: #7a5c34; line-height: 1.75; }

/* ── International essentials ── */
.p-intl { max-width: 1300px; margin: 0 auto; padding: 6rem 2.5rem; }
.p-intl__header { margin-bottom: 3rem; }
.p-intl__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #ecdcc8;
}
.p-intl__item { padding: 2rem 1.75rem; border-right: 1px solid #ecdcc8; position: relative; }
.p-intl__item:last-child { border-right: none; }
.p-intl__icon { width: 32px; height: 32px; margin-bottom: 1.25rem; color: #F37203; }
.p-intl__title { font-size: 13px; font-weight: 500; color: #1a1208; margin-bottom: 0.6rem; letter-spacing: 0.01em; }
.p-intl__detail { font-size: 13px; font-weight: 300; color: #7a5c34; line-height: 1.8; }
.p-intl__badge {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F37203;
    border: 1px solid rgba(243,114,3,0.25);
    padding: 4px 10px;
}

/* ── Travel tips ── */
.p-tips { background: #1a1208; padding: 6rem 0; }
.p-tips__inner { max-width: 1300px; margin: 0 auto; padding: 0 2.5rem; }
.p-tips__header { margin-bottom: 3rem; }
.p-tips__header .p-section-label { color: rgba(243,114,3,0.9); }
.p-tips__header .p-heading { color: rgba(255,240,210,0.95); }
.p-tips__header .p-heading em { color: #C53678; }
.p-tips__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #2e2010;
}
.p-tip { background: #1a1208; padding: 2rem 1.75rem; }
.p-tip__num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 300;
    color: #F37203;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1rem;
}
.p-tip__title { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; color: rgba(255,240,210,0.95); margin-bottom: 0.6rem; }
.p-tip__detail { font-size: 12px; font-weight: 300; color: rgba(255,220,160,0.7); line-height: 1.85; }

/* ── CTA ── */
.p-cta { background: #fdf3e7; border-top: 1px solid #ecdcc8; padding: 6rem 2.5rem; }
.p-cta__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.p-cta__text .p-heading { font-size: clamp(2rem, 3.5vw, 3rem); }
.p-cta__sub { margin-top: 1.25rem; font-size: 14px; font-weight: 300; color: #7a5c34; line-height: 1.85; }
.p-cta__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.p-cta__phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: #1a1208;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}
.p-cta__phone:hover { color: #F37203; }
.p-cta__note { font-size: 11px; font-weight: 300; color: #b09070; letter-spacing: 0.03em; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .p-hero__inner { grid-template-columns: 1fr; }
    .p-hero__aside { display: none; }
    .p-about { grid-template-columns: 1fr; gap: 3rem; }
    .p-about__left { position: static; }
    .p-essentials__inner { grid-template-columns: repeat(3, 1fr); }
    .p-essentials .p-essential:nth-child(3) { border-right: none; }
    .p-essentials .p-essential:nth-child(n+4) { border-top: 1px solid #2e2010; }
    .p-essentials .p-essential:nth-child(5) { border-right: none; }
    .p-cards { grid-template-columns: 1fr; }
    .p-card--featured { grid-row: auto; }
    .p-card--featured .p-card__img { height: 260px; }
    .p-intl__grid { grid-template-columns: repeat(2, 1fr); }
    .p-intl__item:nth-child(2) { border-right: none; }
    .p-intl__item:nth-child(n+3) { border-top: 1px solid #ecdcc8; }
    .p-intl__item:nth-child(4) { border-right: none; }
    .p-tips__grid { grid-template-columns: repeat(2, 1fr); }
    .p-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .p-hero__title { font-size: 3.5rem; }
    .p-essentials__inner { grid-template-columns: 1fr 1fr; }
    .p-highlights { grid-template-columns: 1fr; }
    .p-hl { border-right: none !important; }
    .p-hl:nth-child(n+4) { border-bottom: 1px solid #ecdcc8; }
    .p-hl:last-child { border-bottom: none; }
    .p-cards { grid-template-columns: 1fr; }
    .p-card--featured { grid-row: auto; }
    .p-intl__grid { grid-template-columns: 1fr; }
    .p-intl__item { border-right: none !important; border-top: 1px solid #ecdcc8; }
    .p-intl__item:first-child { border-top: none; }
    .p-tips__grid { grid-template-columns: 1fr; }
}
