/* =====================================================================
   L’Escale d’Azur — visual correction layer (V8)
   Boutique Mediterranean hotel / premium travel magazine direction.
   Keeps application logic intact and recomposes the visual hierarchy.
   ===================================================================== */

:root {
    --surface: #F9F7F2;
    --surface-lowest: #FFFFFF;
    --surface-low: #F5F3EE;
    --surface-container: #F0EEE9;
    --surface-high: #EAE8E3;
    --surface-highest: #E4E2DD;
    --azure-deep: #003366;
    --azure-dark: #001E40;
    --sand: #D2B48C;
    --terracotta: #E07A5F;
    --olive: #556B2F;
    --ink: #1A1C1E;
    --ink-soft: #43474F;
    --outline: #737780;
    --outline-soft: #C3C6D1;
    --radius: 4px;
    --radius-xs: 2px;
    --shadow-soft: 0 16px 44px rgba(0, 51, 102, .08);
    --shadow-float: 0 22px 60px rgba(0, 51, 102, .10);
    --container: 1200px;
    --header-h: 76px;
    --space-section: 64px;
}

html { background: var(--surface); }
body {
    background: var(--surface);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4 { color: var(--azure-dark); }

.eyebrow {
    margin: 0 0 14px;
    color: #725A39;
    font-family: var(--font-body-ltr);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
html[dir="rtl"] .eyebrow {
    font-family: var(--font-body-rtl);
    letter-spacing: .04em;
}

.container { width: min(100%, 1200px); padding-inline: 24px; }
.section { padding-block: 64px; }
.section-alt { background: var(--surface-container); }

.section-title {
    max-width: 760px;
    margin: 0 0 18px;
    padding: 0;
    text-align: start;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -.02em;
}
.section-title::before { display: none; }
.section-lead {
    max-width: 680px;
    margin: 0 0 40px;
    color: var(--ink-soft);
    text-align: start;
    font-size: 18px;
    line-height: 28px;
}
.editorial-title { margin-inline: 0; }
.editorial-lead { margin-inline: 0; }
.editorial-section-head { max-width: 720px; margin-bottom: 48px; }
.editorial-section-head .section-lead { margin-bottom: 0; }

/* Buttons — architectural, never bubbly */
.btn {
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    box-shadow: none;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out, border-color 300ms ease-in-out, transform 300ms ease-in-out;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--azure-deep); color: var(--surface); box-shadow: none; }
.btn-primary:hover { background: var(--azure-dark); box-shadow: none; }
.btn-conversion { background: var(--terracotta); color: #fff; box-shadow: none; }
.btn-conversion:hover { background: #C96850; box-shadow: none; }
.btn-hero-secondary {
    background: rgba(249,247,242,.08);
    border: 1px solid rgba(249,247,242,.72);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover { background: var(--surface); color: var(--azure-dark); border-color: var(--surface); }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249,247,242,.94);
    border-bottom: 1px solid rgba(210,180,140,.24);
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color 300ms ease-in-out, border-color 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.site-header.is-scrolled {
    background: rgba(249,247,242,.96);
    border-color: rgba(210,180,140,.38);
    box-shadow: 0 10px 34px rgba(0,51,102,.05);
}
.header-inner { height: var(--header-h); gap: 22px; }
.brand { gap: 10px; }
.brand-logo { color: var(--azure-deep); }
.brand-logo svg { width: 40px; height: 40px; }
.brand-name {
    color: var(--azure-dark);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.02em;
}
.main-nav { gap: 2px; }
.main-nav a {
    padding: 10px 9px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .01em;
}
.main-nav a:not(.nav-cta)::after { bottom: 6px; background: var(--sand); }
.main-nav .nav-cta {
    margin-inline-start: 10px;
    padding: 11px 16px;
    border-radius: 4px;
    background: var(--terracotta);
    color: #fff;
    font-weight: 600;
}
.lang-switch {
    gap: 1px;
    padding: 2px;
    background: rgba(249,247,242,.65);
    border: 1px solid rgba(0,51,102,.11);
    border-radius: 999px;
}
.lang-link { padding: 7px 9px; font-size: 11px; font-weight: 600; border-radius: 999px; }
.lang-link.is-active { background: var(--azure-deep); }

/* Homepage header floats over the photography until scrolling. */
.home-page .site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(0,30,64,.35), rgba(0,30,64,0));
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.home-page .site-header:not(.is-scrolled) .brand-logo,
.home-page .site-header:not(.is-scrolled) .brand-name,
.home-page .site-header:not(.is-scrolled) .main-nav a:not(.nav-cta),
.home-page .site-header:not(.is-scrolled) .nav-toggle { color: #fff; }
.home-page .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
.home-page .site-header:not(.is-scrolled) .lang-switch { background: rgba(0,30,64,.18); border-color: rgba(255,255,255,.26); }
.home-page .site-header:not(.is-scrolled) .lang-link { color: rgba(255,255,255,.85); }
.home-page .site-header:not(.is-scrolled) .lang-link.is-active { background: rgba(249,247,242,.94); color: var(--azure-dark); }

/* Hero — photography first, editorial copy second */
.hero {
    min-height: 88svh;
    align-items: flex-end;
    background: var(--azure-dark);
}
.hero-media img { object-position: center 46%; transform: none; }
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0,30,64,.08) 0%, rgba(0,30,64,.12) 35%, rgba(0,30,64,.75) 100%),
        linear-gradient(90deg, rgba(0,30,64,.70) 0%, rgba(0,30,64,.25) 48%, rgba(0,30,64,.03) 78%);
}
html[dir="rtl"] .hero-overlay {
    background:
        linear-gradient(180deg, rgba(0,30,64,.08) 0%, rgba(0,30,64,.12) 35%, rgba(0,30,64,.75) 100%),
        linear-gradient(270deg, rgba(0,30,64,.70) 0%, rgba(0,30,64,.25) 48%, rgba(0,30,64,.03) 78%);
}
.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(260px, 4fr);
    gap: 64px;
    align-items: end;
    padding-top: 150px;
    padding-bottom: 48px;
}
.hero-copy { max-width: 650px; }
.hero-eyebrow { color: #F4D6B0; }
.hero-title {
    max-width: 13ch;
    margin: 0 0 18px;
    color: #fff;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -.02em;
    text-wrap: balance;
}
html[dir="rtl"] .hero-title { letter-spacing: 0; line-height: 1.25; }
.hero-subtitle {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 28px;
}
.hero-actions { gap: 12px; }
.hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-self: end;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,.38);
    background: transparent;
}
.hero-trust li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    line-height: 18px;
}
.hero-trust .trust-index { color: var(--sand); font-family: var(--font-body-ltr); font-size: 11px; letter-spacing: .08em; }

/* Shared editorial details */
.line-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--azure-deep);
    flex: 0 0 auto;
}
.line-icon svg { width: 24px; height: 24px; }
.feature-number,
.why-number {
    color: #8B6D46;
    font-family: var(--font-body-ltr);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
}

/* Experience — asymmetric image composition + editorial feature rail */
.editorial-experience { overflow: hidden; background: var(--surface); }
.editorial-split {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
    gap: clamp(56px, 8vw, 112px);
    align-items: center;
}
.editorial-media-cluster { position: relative; min-height: 700px; }
.editorial-photo { margin: 0; overflow: hidden; border-radius: 0; }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; }
.editorial-photo-main { width: 72%; height: 650px; margin-inline-start: 0; box-shadow: var(--shadow-soft); }
.editorial-photo-main img { object-position: center; }
.editorial-photo-inset {
    position: absolute;
    width: 46%;
    height: 370px;
    inset-inline-end: 0;
    bottom: 0;
    box-shadow: 0 18px 54px rgba(0,51,102,.10);
}
.editorial-photo-inset img { object-position: center 35%; }
.editorial-copy { max-width: 500px; }
.feature-list { margin-top: 36px; border-top: 1px solid rgba(210,180,140,.7); }
.feature-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(115,119,128,.18);
}
.feature-row h3 { margin: 2px 0 5px; font-size: 18px; line-height: 26px; }
.feature-row p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 21px; }
.brand-promise {
    margin: 32px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--sand);
    color: var(--azure-dark);
    font-family: var(--font-display-ltr);
    font-size: 22px;
    line-height: 31px;
    font-style: italic;
}
html[dir="rtl"] .brand-promise { font-family: var(--font-display-rtl); font-style: normal; }

/* Included — a photographed scene + ordered inventory, not a card wall */
.editorial-included { background: var(--surface-container); }
.included-editorial-grid {
    display: grid;
    grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: start;
}
.included-image { margin: 0; position: sticky; top: 112px; height: 720px; overflow: hidden; box-shadow: var(--shadow-soft); }
.included-image img { width: 100%; height: 100%; object-fit: cover; }
.included-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 30px; border-top: 1px solid var(--sand); }
.included-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 19px 0 20px;
    border-bottom: 1px solid rgba(115,119,128,.18);
}
.included-item h3 { margin: 2px 0 4px; font-size: 16px; line-height: 23px; }
.included-item p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 20px; }
.included-notes {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}
.included-notes p { margin: 0; padding: 18px 20px; color: var(--ink-soft); font-size: 13px; line-height: 20px; border-inline-end: 1px solid rgba(210,180,140,.7); }
.included-notes p:last-child { border-inline-end: 0; }
.included-notes .included-note-primary { color: var(--azure-deep); font-weight: 600; }

/* Optional activity — one image, one story */
.editorial-activity { background: var(--surface); }
.activity-grid {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
    gap: clamp(48px, 8vw, 112px);
    align-items: stretch;
}
.activity-image { margin: 0; min-height: 560px; overflow: hidden; }
.activity-image img { width: 100%; height: 100%; object-fit: cover; }
.activity-copy { align-self: center; max-width: 580px; padding-block: 34px; }
.activity-mark { width: 48px; height: 48px; margin-bottom: 18px; border: 1px solid rgba(0,51,102,.14); }
.activity-copy h2 { margin: 0 0 18px; font-size: 32px; line-height: 40px; letter-spacing: -.02em; }
.activity-lead { margin: 0 0 28px; color: var(--ink-soft); font-size: 17px; line-height: 27px; }
.activity-meta { margin: 0 0 32px; border-top: 1px solid var(--sand); }
.activity-meta > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(115,119,128,.17); }
.activity-meta dt { color: #725A39; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.activity-meta dd { margin: 0; color: var(--ink); font-size: 14px; }

/* Programme — editorial index */
.editorial-program { background: var(--surface-container); }
.program-grid {
    display: grid;
    grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
    gap: clamp(56px, 9vw, 124px);
    align-items: start;
}
.program-intro { position: sticky; top: 118px; }
.program-note { margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--sand); color: var(--outline); font-size: 13px; line-height: 20px; }
.editorial-timeline { list-style: none; margin: 0; padding: 0; }
.editorial-timeline::before { display: none; }
.editorial-timeline li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    align-items: start;
    padding: 18px 0 20px;
    border-bottom: 1px solid rgba(115,119,128,.20);
}
.editorial-timeline li:first-child { border-top: 1px solid var(--sand); }
.editorial-timeline .tl-num {
    position: static;
    width: auto;
    height: auto;
    display: block;
    border: 0;
    background: transparent;
    color: var(--terracotta);
    font-family: var(--font-body-ltr);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
}
.editorial-timeline .tl-body { padding: 0; background: transparent; border: 0; box-shadow: none; }
.editorial-timeline h3 { font-family: var(--font-body-rtl); font-size: 16px; font-weight: 500; line-height: 25px; color: var(--ink); }
html[dir="ltr"] .editorial-timeline h3 { font-family: var(--font-body-ltr); }

/* Gallery — magazine spread, no dashboard cards */
.editorial-gallery { background: var(--surface); }
.gallery-head { margin-bottom: 52px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 88px; gap: 12px; }
.gallery-item {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: var(--surface-container);
    overflow: hidden;
    box-shadow: none;
}
.gallery-item::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(180deg, transparent, rgba(0,30,64,.58)); pointer-events: none; }
.gallery-item img { transform: none; transition: transform 700ms cubic-bezier(.2,.75,.25,1), filter 300ms ease; }
.gallery-item:hover img { transform: scale(1.025); filter: saturate(1.03); }
.gallery-item span { z-index: 2; inset: auto 18px 16px; padding: 0; background: transparent; color: #fff; font-size: 12px; font-weight: 500; letter-spacing: .02em; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 6; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 5; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 5; }
.gallery-item:nth-child(6) { grid-column: span 5; grid-row: span 5; }
.gallery-item:nth-child(7) { grid-column: span 3; grid-row: span 4; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 4; }

/* Why — trust is an editorial checklist beside a real photograph */
.editorial-why { background: var(--surface-container); }
.why-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(320px, 5fr);
    gap: clamp(56px, 8vw, 110px);
    align-items: center;
}
.why-copy { max-width: 620px; }
.why-list { margin-top: 34px; border-top: 1px solid var(--sand); }
.why-item {
    display: grid;
    grid-template-columns: 42px 34px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(115,119,128,.18);
}
.why-item p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 21px; }
.why-image { margin: 0; height: 680px; overflow: hidden; box-shadow: var(--shadow-soft); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* Booking — quiet, high-touch form rather than a dashboard panel */
.editorial-booking { background: var(--surface); }
.booking-container {
    display: grid;
    grid-template-columns: minmax(260px, 4fr) minmax(0, 7fr);
    gap: clamp(56px, 9vw, 126px);
    align-items: start;
}
.booking-head { position: sticky; top: 118px; }
.booking-head-rule { width: 76px; height: 1px; margin: 28px 0; background: var(--sand); }
.booking-head-promise { margin: 0; color: var(--azure-dark); font-family: var(--font-display-ltr); font-size: 20px; line-height: 29px; font-style: italic; }
html[dir="rtl"] .booking-head-promise { font-family: var(--font-display-rtl); font-style: normal; }
.booking-wrap { max-width: none; margin: 0; }
.booking-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.booking-form::before { display: none; }
.field { margin-bottom: 26px; }
.field-row { gap: 0 30px; }
.field label { margin-bottom: 7px; color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: .035em; }
.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 48px;
    padding: 10px 2px 9px;
    border: 0;
    border-bottom: 1px solid rgba(0,51,102,.28);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
}
.field textarea { min-height: 96px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-bottom-color: var(--azure-deep);
    box-shadow: 0 1px 0 var(--azure-deep);
    background: rgba(249,247,242,.5);
}
.field input::placeholder, .field textarea::placeholder { color: #858982; opacity: .7; }
.summary {
    margin: 34px 0 26px;
    padding: 22px 24px;
    border: 1px solid rgba(210,180,140,.82);
    border-radius: 2px;
    background: rgba(249,247,242,.78);
    box-shadow: 0 14px 34px rgba(0,51,102,.05);
}
.summary h3 { font-size: 19px; }
.summary-row { padding: 7px 0; }
.field-consent .checkbox { align-items: flex-start; }
.form-note { color: var(--ink-soft); }
.success-card { border-radius: 2px; border-color: rgba(85,107,47,.35); background: #F2F3E9; box-shadow: none; }

/* FAQ — simple editorial dividers */
.editorial-faq { background: var(--surface-container); }
.accordion { border-top: 1px solid var(--sand); }
.acc-item { border-bottom-color: rgba(115,119,128,.22); }
.acc-header { min-height: 64px; padding: 17px 0; color: var(--azure-dark); font-size: 16px; font-weight: 500; }
.acc-icon { color: var(--azure-deep); font-size: 24px; font-weight: 300; }
.acc-panel p { padding: 0 0 22px; max-width: 670px; color: var(--ink-soft); font-size: 14px; line-height: 23px; }

/* Destination authority cards become travel-journal tiles */
.editorial-destination { background: var(--surface); }
.destination-home-grid { grid-template-columns: repeat(12, 1fr); gap: 24px 18px; }
.destination-home-card { background: transparent; box-shadow: none; transform: none; }
.destination-home-card:hover, .destination-home-card:focus-visible { transform: translateY(-2px); box-shadow: none; }
.destination-home-card:nth-child(1) { grid-column: span 5; }
.destination-home-card:nth-child(2) { grid-column: span 3; margin-top: 74px; }
.destination-home-card:nth-child(3) { grid-column: span 4; }
.destination-home-card:nth-child(4) { grid-column: 7 / span 5; margin-top: -36px; }
.destination-home-card img { aspect-ratio: 4 / 5; border-radius: 0; box-shadow: var(--shadow-soft); }
.destination-home-card:nth-child(2) img { aspect-ratio: 3 / 4; }
.destination-home-card-copy { padding: 16px 0 0; }
.destination-home-card-copy span { color: #725A39; font-size: 11px; letter-spacing: .1em; }
.destination-home-card-copy strong { font-size: 21px; line-height: 29px; font-weight: 600; }

/* Legal information deliberately low-key */
.editorial-legal { padding-block: 72px; background: var(--surface); }
.legal-cols { gap: 54px; max-width: 1040px; }
.legal-block { padding: 0; background: transparent; }
.legal-block + .legal-block { border-inline-start: 1px solid rgba(210,180,140,.55); padding-inline-start: 42px; }
.section-title-sm { font-size: 22px; line-height: 30px; }
.legal-list li { font-size: 13px; line-height: 21px; }

/* Footer */
.site-footer { margin-top: 0; background: var(--azure-dark); color: rgba(249,247,242,.76); }
.site-footer .brand-name { color: #fff; }
.footer-inner { padding-top: 72px; padding-bottom: 56px; gap: 46px; }
.footer-col h4 { color: var(--sand); font-family: var(--font-body-ltr); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
html[dir="rtl"] .footer-col h4 { font-family: var(--font-body-rtl); }
.footer-col a { color: rgba(249,247,242,.80); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top-color: rgba(249,247,242,.12); }

/* Mobile conversion bar */
.sticky-cta {
    border-radius: 4px;
    background: var(--terracotta);
    box-shadow: 0 16px 40px rgba(0,30,64,.18);
}

/* Lightbox remains functional, but photography gets the visual focus. */
.lightbox { background: rgba(0,30,64,.94); }
.lb-img { border-radius: 0; }

/* ================================================================
   Destination pages — same boutique editorial language
   ================================================================ */
.destination-page { background: var(--surface); }
.destination-header { background: rgba(249,247,242,.96); }
.destination-breadcrumb-wrap { padding-top: 104px; padding-bottom: 18px; }
.breadcrumbs { color: var(--outline); font-size: 12px; }
.breadcrumbs a { color: var(--azure-deep); }
.destination-hero { min-height: 74svh; max-height: 780px; background: var(--azure-dark); }
.destination-hero-media::after {
    background:
        linear-gradient(180deg, rgba(0,30,64,.06) 0%, rgba(0,30,64,.18) 44%, rgba(0,30,64,.82) 100%),
        linear-gradient(90deg, rgba(0,30,64,.62) 0%, rgba(0,30,64,.10) 70%);
}
[dir="rtl"] .destination-hero-media::after {
    background:
        linear-gradient(180deg, rgba(0,30,64,.06) 0%, rgba(0,30,64,.18) 44%, rgba(0,30,64,.82) 100%),
        linear-gradient(270deg, rgba(0,30,64,.62) 0%, rgba(0,30,64,.10) 70%);
}
.destination-hero-layout { padding-top: 128px; padding-bottom: 72px; }
.destination-hero-copy { max-width: 720px; }
.destination-hero-copy h1 {
    max-width: 15ch;
    margin: 10px 0 18px;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -.02em;
}
.destination-lead { max-width: 700px; font-size: 18px; line-height: 28px; }
.destination-facts { background: var(--surface); border-bottom: 1px solid rgba(210,180,140,.5); }
.destination-fact { min-height: 118px; padding: 26px 28px; border-inline-end-color: rgba(210,180,140,.45); }
.destination-fact span { font-size: 11px; letter-spacing: .1em; }
.destination-fact strong { font-size: 20px; line-height: 28px; }
.destination-article { padding: 112px 0 128px; }
.destination-article-grid { grid-template-columns: 250px minmax(0, 720px); gap: 110px; justify-content: center; }
.destination-toc-inner { top: 116px; padding: 22px 0; border-color: var(--sand); }
.destination-toc a { font-size: 13px; }
.destination-content-section { padding-bottom: 72px; }
.destination-content-section + .destination-content-section { padding-top: 64px; border-top-color: rgba(210,180,140,.55); }
.destination-content-section h2 { font-size: 32px; line-height: 40px; letter-spacing: -.02em; }
.destination-content-section p { font-size: 16px; line-height: 28px; color: var(--ink-soft); }
.destination-section-number { color: var(--terracotta); font-size: 11px; }
.destination-related { background: var(--surface-container); }
.destination-card-grid { grid-template-columns: repeat(12, 1fr); gap: 18px; }
.destination-card { grid-column: span 4; background: transparent; box-shadow: none; }
.destination-card:nth-child(2) { margin-top: 48px; }
.destination-card img { aspect-ratio: 4/5; object-fit: cover; border-radius: 0; box-shadow: var(--shadow-soft); }
.destination-card-copy { padding: 16px 0 0; }
.destination-card-copy span { font-size: 11px; letter-spacing: .09em; }
.destination-card-copy strong { font-size: 20px; line-height: 28px; }
.destination-faq { background: var(--surface); }
.destination-faq-list { border-top: 1px solid var(--sand); }
.destination-faq-list details { border-bottom: 1px solid rgba(115,119,128,.2); }
.destination-faq-list summary { padding: 20px 0; font-size: 16px; color: var(--azure-dark); }
.destination-faq-list p { max-width: 680px; color: var(--ink-soft); font-size: 14px; line-height: 23px; }
.destination-sources { background: var(--surface-container); }
.destination-booking-cta { background: var(--surface); }
.destination-booking-box {
    padding: 52px 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    background: transparent;
    box-shadow: none;
}
.destination-booking-box h2 { font-size: 32px; line-height: 40px; }

/* Subtle entrances only */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ================================================================
   Responsive — mobile first experience preserved
   ================================================================ */
@media (min-width: 768px) {
    :root { --space-section: 96px; }
    .section { padding-block: 96px; }
}

@media (min-width: 1024px) {
    :root { --space-section: 128px; }
    .section { padding-block: 128px; }
}

@media (max-width: 1060px) {
    .main-nav a { padding-inline: 7px; font-size: 12px; }
    .header-inner { gap: 12px; }
    .hero-content { grid-template-columns: minmax(0, 7fr) minmax(240px, 4fr); gap: 42px; }
    .editorial-split { gap: 56px; }
    .included-editorial-grid { gap: 48px; }
    .program-grid, .booking-container { gap: 64px; }
}

@media (max-width: 900px) {
    .site-header { background: rgba(249,247,242,.95); }
    .home-page .site-header:not(.is-scrolled) { background: linear-gradient(180deg, rgba(0,30,64,.40), rgba(0,30,64,0)); }
    .main-nav {
        background: rgba(249,247,242,.98);
        box-shadow: var(--shadow-float);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .main-nav a { color: var(--ink-soft) !important; font-size: 15px; }
    .main-nav .nav-cta { color: #fff !important; }
    .nav-close { color: var(--azure-dark); }
    .hero-content { display: block; padding-bottom: 40px; }
    .hero-copy { max-width: 650px; }
    .hero-trust { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 46px; }
    .hero-trust li:nth-child(odd) { padding-inline-end: 20px; }
    .hero-trust li:nth-child(even) { padding-inline-start: 20px; border-inline-start: 1px solid rgba(255,255,255,.18); }

    .editorial-split,
    .included-editorial-grid,
    .activity-grid,
    .program-grid,
    .why-editorial-grid,
    .booking-container { grid-template-columns: 1fr; }
    .editorial-media-cluster { min-height: 650px; }
    .editorial-photo-main { height: 590px; }
    .editorial-copy { max-width: 680px; }
    .included-image { position: relative; top: auto; height: 620px; }
    .program-intro, .booking-head { position: relative; top: auto; max-width: 680px; }
    .why-copy { max-width: 720px; }
    .why-image { height: 620px; }
    .booking-wrap { max-width: 760px; }
    .destination-article-grid { grid-template-columns: 1fr; gap: 48px; }
    .destination-toc-inner { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
    :root { --header-h: 68px; }
    .section { padding-block: 72px; }
    .section-title { font-size: 30px; line-height: 38px; }
    .section-lead { font-size: 16px; line-height: 25px; margin-bottom: 34px; }
    .editorial-section-head { margin-bottom: 36px; }

    .hero { min-height: 86svh; }
    .hero-content { padding-top: 132px; padding-bottom: 32px; }
    .hero-title { font-size: 32px; line-height: 40px; max-width: 15ch; }
    .hero-subtitle { font-size: 16px; line-height: 25px; }
    .hero-actions { display: grid; width: min(100%, 360px); }
    .hero-actions .btn { width: 100%; }
    .hero-trust { margin-top: 34px; }

    .editorial-media-cluster { min-height: 510px; }
    .editorial-photo-main { width: 82%; height: 460px; }
    .editorial-photo-inset { width: 44%; height: 260px; }
    .feature-row { padding-block: 17px; }
    .brand-promise { font-size: 20px; line-height: 29px; }

    .included-image { height: 520px; }
    .included-list { grid-template-columns: 1fr; }
    .included-notes { grid-template-columns: 1fr; }
    .included-notes p { border-inline-end: 0; border-bottom: 1px solid rgba(210,180,140,.55); }
    .included-notes p:last-child { border-bottom: 0; }

    .activity-image { min-height: 480px; }
    .activity-copy h2 { font-size: 30px; line-height: 38px; }
    .activity-meta > div { grid-template-columns: 100px 1fr; }

    .editorial-timeline li { grid-template-columns: 44px 1fr; gap: 12px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; gap: 8px; }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; min-height: 0; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: 1 / -1; grid-row: span 2; }
    .gallery-item span { inset-inline: 12px; bottom: 12px; }

    .why-image { height: 520px; }
    .why-item { grid-template-columns: 38px 28px 1fr; }
    .booking-form { padding: 0; }
    .booking-head-promise { font-size: 19px; line-height: 28px; }
    .summary { margin-inline: 0; }

    .destination-home-grid { grid-template-columns: 1fr; gap: 42px; }
    .destination-home-card:nth-child(n) { grid-column: auto; margin-top: 0; }
    .destination-home-card img { aspect-ratio: 4/5; }
    .legal-block + .legal-block { border-inline-start: 0; border-top: 1px solid rgba(210,180,140,.55); padding-inline-start: 0; padding-top: 36px; }

    .destination-breadcrumb-wrap { padding-top: 92px; }
    .destination-hero { min-height: 68svh; }
    .destination-hero-layout { padding-top: 96px; padding-bottom: 48px; }
    .destination-hero-copy h1 { font-size: 32px; line-height: 40px; }
    .destination-lead { font-size: 16px; line-height: 25px; }
    .destination-facts-grid { grid-template-columns: 1fr; }
    .destination-fact { min-height: auto; padding: 20px 0; border-inline-end: 0; border-bottom: 1px solid rgba(210,180,140,.45); }
    .destination-article { padding: 72px 0 88px; }
    .destination-toc-inner { grid-template-columns: 1fr; }
    .destination-content-section h2 { font-size: 30px; line-height: 38px; }
    .destination-card-grid { grid-template-columns: 1fr; gap: 42px; }
    .destination-card { grid-column: auto; margin-top: 0 !important; }
    .destination-booking-box { display: grid; gap: 26px; padding: 42px 0; }
    .destination-booking-box h2 { font-size: 30px; line-height: 38px; }
}

@media (max-width: 480px) {
    .container { padding-inline: 24px; }
    .brand-name { max-width: 42vw; font-size: 16px; }
    .brand-logo svg { width: 36px; height: 36px; }
    .hero-trust { grid-template-columns: 1fr; }
    .hero-trust li:nth-child(n) { padding-inline: 0; border-inline-start: 0; }
    .editorial-media-cluster { min-height: 430px; }
    .editorial-photo-main { width: 86%; height: 400px; }
    .editorial-photo-inset { height: 220px; }
    .included-image, .why-image { height: 440px; }
    .activity-image { min-height: 430px; }
    .gallery-grid { grid-auto-rows: 170px; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: span 2; }
    .field-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}
