/* ═══════════════════════════════════════════════════════════════════
   JUNGLENEARME — LANDING PAGE
   Self-contained: reset, tokens, components. Loads no other stylesheet.

   Direction — "field notebook":
   numbered section markers, hairline rules, asymmetric splits, and a
   season calendar as the centrepiece. Warm paper ground, deep forest
   ink, marigold used sparingly and only where the eye should go.
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────── Tokens ─────────── */
:root {
    --forest:       #1E3A2B;
    --night:        #1D211B;   /* warm near-black used for the big dark blocks */
    --night-deep:   #161A15;
    --forest-mid:   #2A4A38;
    --forest-soft:  #2F5340;
    --cream:        #F6F2E8;
    --cream-deep:   #EDE7D8;
    --paper:        #FDFBF5;
    --mari:         #D97A2C;
    --mari-deep:    #B5601C;
    --mari-wash:    #FBEAD7;
    --ink:          #1A1D1A;
    --ink-soft:     #4A4F49;
    --ink-mute:     #767B74;
    --rule:         #DCD5C3;
    --rule-soft:    #E9E3D4;
    --wa:           #25D366;

    --shell:        1280px;
    --r-sm:         8px;
    --r-md:         14px;
    --r-lg:         22px;

    --display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --sh-sm: 0 2px 10px rgba(20, 38, 27, .06);
    --sh-md: 0 10px 34px rgba(20, 38, 27, .10);
    --sh-lg: 0 24px 60px rgba(20, 38, 27, .16);
}

/* ─────────── Reset ─────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
figure { margin: 0; }

.shell { width: min(var(--shell), 92%); margin-inline: auto; }

.skip {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--forest); color: #fff; padding: 12px 20px;
    font-weight: 600; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }
:where(a, button):focus-visible { outline: 2px solid var(--mari); outline-offset: 3px; border-radius: 3px; }

/* ─────────── Buttons ─────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 12px 22px;
    border-radius: 100px;
    font-size: 14.5px; font-weight: 600; letter-spacing: .005em;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn i { font-size: 13px; }
.btn--lg { padding: 15px 28px; font-size: 15.5px; }

.btn--mari   { background: var(--mari); color: #fff; box-shadow: 0 6px 18px rgba(217,122,44,.26); }
.btn--mari:hover { background: var(--mari-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(217,122,44,.32); }

.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--mari-deep); transform: translateY(-2px); }

.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.24); }
.btn--wa:hover { background: #1cb356; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--cream); border: 1px solid rgba(246,242,232,.35); }
.btn--ghost:hover { background: rgba(246,242,232,.1); border-color: var(--cream); transform: translateY(-2px); }

.tlink {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 14.5px; font-weight: 600; color: var(--mari-deep);
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(217,122,44,.35);
    transition: gap .2s ease, border-color .2s ease;
}
.tlink:hover { gap: 14px; border-color: var(--mari); }
.tlink i { font-size: 11px; }
.tlink--light { color: var(--mari); border-color: rgba(217,122,44,.5); }

/* ─────────── Section marker: "01 ──── Why only Corbett" ─────────── */
.marker {
    display: flex; align-items: center; gap: 16px;
    margin: 0 0 40px;
    font-size: 12px; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--ink-mute);
}
.marker span {
    font-family: var(--display);
    font-size: 15px; font-weight: 700; letter-spacing: 0;
    color: var(--mari-deep);
}
.marker i { flex: 0 0 56px; height: 1px; background: var(--rule); }
.marker b { font-weight: 600; }
.marker--light { color: rgba(246,242,232,.6); }
.marker--light span { color: var(--mari); }
.marker--light i { background: rgba(246,242,232,.25); }

/* ─────────── Section rhythm ─────────── */
.sec { padding: 96px 0; position: relative; }
.sec--statement { background: var(--cream); }
.sec--zones     { background: var(--cream-deep); padding-bottom: 104px; }
.sec--pkgs      { background: var(--cream); }
.sec--press     { background: var(--cream); }
.sec--reviews   { background: var(--night); color: var(--cream); }
.sec--updates   { background: var(--paper); }
.sec--about     { background: var(--cream); }
.sec--tours     { background: var(--cream-deep); }
.sec--gallery   { background: var(--cream); }
.sec--how       { background: var(--cream-deep); }
.sec--notes     { background: var(--cream); }
.sec--faq       { background: var(--cream-deep); }
.sec--cta       { background: var(--night); color: var(--cream); padding: 104px 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(246,242,232,.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--rule); box-shadow: 0 2px 20px rgba(20,38,27,.06); }
.nav__bar { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.nav__logo img { height: 38px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__links a {
    position: relative;
    font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
    padding: 6px 0;
    transition: color .2s ease;
}
.nav__links a::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 1.5px; background: var(--mari);
    transition: right .25s ease;
}
.nav__links a:hover { color: var(--forest); }
.nav__links a:hover::after { right: 0; }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--forest);
}
.nav__phone i { color: var(--mari-deep); font-size: 12px; }
.nav__phone:hover { color: var(--mari-deep); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
body.drawer-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .nav__burger span:nth-child(2) { opacity: 0; }
body.drawer-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
    display: none; flex-direction: column; gap: 4px;
    padding: 12px 4% 26px;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}
body.drawer-open .nav__drawer { display: flex; }
.nav__drawer a { padding: 13px 4px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--rule-soft); }
.nav__drawer .btn { margin-top: 14px; border-bottom: 0; }
.drawer__wa {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    margin-top: 8px; padding: 13px; border-radius: 100px;
    background: var(--wa); color: #fff; font-weight: 600; border-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   HERO — full-bleed carousel
   The photograph fills the frame and cross-fades; the copy stays
   put. Thumbnails, arrows and a counter sit bottom right so it is
   obvious there is more than one frame to see.
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: clamp(450px, 68vh, 690px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--night);
    isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 42%;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 7s ease-out;
}
/* The active frame fades in and drifts very slowly — enough to feel
   alive, not enough to distract from the headline. */
.hero__img.is-on { opacity: 1; transform: scale(1); }

.hero__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top,   rgba(18,21,17,.92) 0%, rgba(18,21,17,.55) 40%, rgba(18,21,17,.10) 74%),
        linear-gradient(to right, rgba(18,21,17,.78) 0%, rgba(18,21,17,.22) 54%, transparent 80%);
}

.hero__inner { position: relative; padding: 60px 0 0; max-width: 100%; }

.hero__kicker {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px; margin-bottom: 26px;
    border-radius: 100px;
    background: rgba(246,242,232,.13);
    border: 1px solid rgba(246,242,232,.26);
    backdrop-filter: blur(10px);
    color: var(--cream);
    font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
}
.hero__kicker i { color: var(--mari); font-size: 12px; }

.hero__h1 {
    font-family: var(--display);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0 0 22px;
    /* wide enough to keep "Jim Corbett National Park," on one line */
    max-width: 21ch;
    text-shadow: 0 2px 30px rgba(18,21,17,.4);
}
.hero__h1 em { display: block; font-style: italic; font-weight: 600; color: var(--mari); }

.hero__lede {
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.68;
    color: rgba(246,242,232,.86);
    max-width: 56ch;
    margin: 0 0 30px;
}

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

.btn--glass {
    background: rgba(246,242,232,.13);
    border: 1px solid rgba(246,242,232,.32);
    backdrop-filter: blur(10px);
    color: var(--cream);
}
.btn--glass:hover {
    background: rgba(246,242,232,.22);
    border-color: rgba(246,242,232,.55);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Carousel deck: arrows, thumbnails, counter ---- */
.hero__deck {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-top: auto;
    padding-top: 46px;
    padding-bottom: 34px;
}

.hero__nav { display: flex; gap: 10px; flex-shrink: 0; }
.hero__arrow {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(246,242,232,.32);
    background: rgba(18,21,17,.35);
    backdrop-filter: blur(8px);
    color: var(--cream);
    font-size: 14px;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.hero__arrow:hover {
    background: var(--mari); border-color: var(--mari); color: #fff;
    transform: translateY(-2px);
}

.hero__thumbs {
    display: flex;
    gap: 12px;
    margin-left: auto;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.hero__thumbs::-webkit-scrollbar { display: none; }

.hero__thumb {
    position: relative;
    flex: 0 0 148px;
    padding: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    background: rgba(18,21,17,.4);
    border: 2px solid transparent;
    transition: border-color .25s ease, transform .25s ease, opacity .25s ease;
    opacity: .62;
}
.hero__thumb img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}
.hero__thumb span {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 20px 10px 8px;
    background: linear-gradient(to top, rgba(18,21,17,.9), transparent);
    color: #fff;
    font-size: 11.5px; font-weight: 600;
    text-align: left;
}
.hero__thumb:hover { opacity: 1; transform: translateY(-3px); }
.hero__thumb.is-on { opacity: 1; border-color: var(--mari); }

.hero__count {
    flex-shrink: 0;
    margin: 0 0 4px;
    font-family: var(--display);
    line-height: 1;
    color: rgba(246,242,232,.5);
}
.hero__count b { font-size: 34px; font-weight: 700; color: #fff; }
.hero__count span { font-size: 15px; margin-left: 4px; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .hero__thumb { flex-basis: 124px; }
}
@media (max-width: 860px) {
    .hero { min-height: 540px; }
    .hero__deck { flex-wrap: wrap; gap: 16px; padding-top: 34px; }
    .hero__thumbs { order: 3; width: 100%; margin-left: 0; }
    .hero__count { margin-left: auto; }
}
@media (max-width: 640px) {
    .hero { min-height: 480px; }
    /* A landscape photo cropped to a phone-width column zooms in hard;
       shifting the focal point keeps more of the scene. */
    .hero__img { object-position: 62% 45%; }
    /* On a narrow column the copy covers most of the frame, so the
       scrim has to carry much further up or the type sits on fur. */
    .hero__scrim {
        background:
            linear-gradient(to top, rgba(18,21,17,.96) 0%, rgba(18,21,17,.86) 44%, rgba(18,21,17,.5) 74%, rgba(18,21,17,.25) 100%);
    }
    .hero__inner { padding: 40px 0 0; }
    .hero__h1 { max-width: 100%; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
    .hero__deck { padding-top: 28px; padding-bottom: 24px; }
    .hero__arrow { width: 40px; height: 40px; font-size: 13px; }
    .hero__thumb { flex-basis: 108px; }
    .hero__thumb span { font-size: 10.5px; padding: 16px 8px 6px; }
    .hero__count b { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__img { transition: opacity .2s linear; transform: none; }
    .hero__img.is-on { transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   01 — THE PARK, IN SHORT
   ═══════════════════════════════════════════════════════════ */
.ab__top {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
    gap: 48px;
    align-items: end;
    padding-bottom: 32px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--rule);
}
.ab__h2 {
    font-family: var(--display);
    font-size: clamp(27px, 3.2vw, 44px);
    line-height: 1.14;
    letter-spacing: -.024em;
    color: var(--forest);
}
.ab__h2 em {
    display: block;
    font-style: italic; font-weight: 600;
    color: var(--mari-deep);
    margin-top: 6px;
}
.ab__stand { margin: 0; font-size: 16px; line-height: 1.72; color: var(--ink-soft); }

/* Text and photograph side by side; the body column was running
   at 74ch and leaving the right half of the section empty. */
.ab__cols {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
.ab__body { max-width: 68ch; }

.ab__figure { margin: 0; position: sticky; top: 100px; }
.ab__figure img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--r-md);
    box-shadow: var(--sh-md);
    display: block;
}
.ab__figure figcaption {
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-mute);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   RICH TEXT
   Anything pasted in from a text editor styles itself: headings,
   bullets, numbered lists, links, quotes and coloured spans.
   ═══════════════════════════════════════════════════════════ */
.rte { font-size: 16px; line-height: 1.8; color: var(--ink-soft); }
.rte > *:first-child { margin-top: 0; }
.rte > *:last-child { margin-bottom: 0; }

.rte p { margin: 0 0 18px; }

.rte h2, .rte h3, .rte h4 {
    font-family: var(--display);
    color: var(--forest);
    line-height: 1.25;
    margin: 34px 0 14px;
    font-weight: 700;
    letter-spacing: -.015em;
}
.rte h2 { font-size: 27px; }
.rte h3 { font-size: 22px; }
.rte h4 { font-size: 18px; }

.rte strong, .rte b { color: var(--forest); font-weight: 600; }
.rte em, .rte i { font-style: italic; }

.rte a {
    color: var(--mari-deep);
    font-weight: 500;
    border-bottom: 1px solid rgba(217,122,44,.4);
    transition: border-color .2s ease, color .2s ease;
}
.rte a:hover { color: var(--mari); border-color: var(--mari); }
/* A link already carrying the .tlink treatment keeps its own styling */
.rte a.tlink { border-bottom-color: rgba(217,122,44,.35); font-weight: 600; }

/* ---- Lists: marigold markers, comfortable spacing ---- */
.rte ul, .rte ol { margin: 0 0 20px; padding: 0; }
.rte li { position: relative; margin-bottom: 12px; padding-left: 26px; line-height: 1.72; }
.rte li:last-child { margin-bottom: 0; }

.rte ul > li::before {
    content: '';
    position: absolute; left: 4px; top: 11px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--mari);
}
.rte ol { counter-reset: rte-n; }
.rte ol > li { counter-increment: rte-n; }
.rte ol > li::before {
    content: counter(rte-n) '.';
    position: absolute; left: 0; top: 0;
    font-family: var(--display);
    font-weight: 700;
    color: var(--mari);
}
/* Nested lists step in and switch to a hollow marker */
.rte li > ul, .rte li > ol { margin: 12px 0 0; }
.rte li > ul > li::before {
    background: none;
    border: 2px solid var(--mari);
    width: 8px; height: 8px;
}

.rte blockquote {
    margin: 24px 0;
    padding: 4px 0 4px 22px;
    border-left: 3px solid var(--mari);
    font-style: italic;
    color: var(--forest);
}
.rte blockquote p:last-child { margin-bottom: 0; }

.rte hr { border: 0; height: 1px; background: var(--rule); margin: 32px 0; }

.rte img { max-width: 100%; height: auto; border-radius: var(--r-md); margin: 22px 0; }

.rte table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.rte th, .rte td { padding: 10px 12px; border: 1px solid var(--rule-soft); text-align: left; }
.rte th { background: var(--cream-deep); color: var(--forest); font-weight: 600; }

.rte code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .9em;
    background: var(--cream-deep);
    padding: 1px 6px; border-radius: 4px;
}

/* ---- Colour helpers, for changing a few words in an editor ---- */
.t-mari   { color: var(--mari-deep); }
.t-forest { color: var(--forest); }
.t-mute   { color: var(--ink-mute); }
.rte mark { background: var(--mari-wash); color: var(--forest); padding: 1px 5px; border-radius: 4px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .ab__top { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}
@media (max-width: 640px) {
    .rte { font-size: 15.5px; }
    .rte h2 { font-size: 23px; }
    .rte h3 { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   Outline button
   ═══════════════════════════════════════════════════════════ */
.btn--line {
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--rule);
}
.btn--line:hover {
    background: var(--forest); border-color: var(--forest); color: var(--cream);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   Lightbox
   ═══════════════════════════════════════════════════════════ */
.lb {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: center; justify-content: center; gap: 10px;
    padding: 24px;
    background: rgba(20,23,19,.94);
    backdrop-filter: blur(4px);
}
.lb.is-open { display: flex; }
.lb figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.lb img { max-width: 100%; max-height: 80vh; border-radius: var(--r-md); display: block; }
.lb figcaption { color: rgba(246,242,232,.8); font-size: 14px; margin-top: 12px; }
.lb__x {
    position: absolute; top: 18px; right: 22px;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(246,242,232,.12); color: #fff;
    font-size: 26px; line-height: 1;
}
.lb__nav {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(246,242,232,.12); color: #fff;
    font-size: 26px; line-height: 1;
}
.lb__x:hover, .lb__nav:hover { background: var(--mari); }

/* ═══════════════════════════════════════════════════════════
   Responsive for the blocks above
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1150px) {
    .about__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .about__img { grid-column: 1 / -1; max-width: 440px; }
    .about__img img { aspect-ratio: 16 / 9; }
}
@media (max-width: 1024px) {
    .upd__head { grid-template-columns: 1fr; gap: 18px; }
    .upd { grid-template-columns: 160px minmax(0, 1fr); }
    .upd__img { grid-column: 1 / -1; width: 100%; max-width: 320px; }
}
@media (max-width: 640px) {
    .about__grid { grid-template-columns: 1fr; gap: 26px; }
    .upd { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
    .upd__side { flex-direction: row; align-items: center; gap: 12px; }
    .upd__img { max-width: none; }
    .lb__nav { width: 38px; height: 38px; font-size: 22px; }
}
/* ═══════════════════════════════════════════════════════════
   02 — SAFARI ZONES
   Horizontal cards, two to a row: photograph left, writing right.
   A wider measure than a three-up grid, so the paragraph actually
   has room, and the heading still leads the block.
   ═══════════════════════════════════════════════════════════ */
.zones__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; margin-bottom: 40px;
}
.zones__head > div { max-width: 680px; }
.zones__head h2 {
    font-family: var(--display);
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.14; letter-spacing: -.022em; color: var(--forest);
    margin-bottom: 14px;
}
.zones__intro { margin: 0; font-size: 15.5px; line-height: 1.72; color: var(--ink-soft); }

.zones__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* ---- The card ---- */
.zcard {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.zcard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--mari); }

.zcard__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--cream-deep);
    padding: 0;
}
.zcard__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.zcard:hover .zcard__media img { transform: scale(1.06); }

.zcard__tag {
    position: absolute; left: 12px; bottom: 12px;
    padding: 5px 11px;
    border-radius: 100px;
    background: rgba(18,21,17,.8);
    backdrop-filter: blur(6px);
    color: var(--cream);
    font-size: 10.5px; font-weight: 600;
    white-space: nowrap;
}

/* ---- The writing ---- */
.zcard__body {
    display: flex; flex-direction: column;
    padding: 20px 22px 20px;
    min-width: 0;
}

.zcard__num {
    font-family: var(--display);
    font-size: 13px; font-weight: 700;
    color: var(--mari);
    letter-spacing: .04em;
    margin-bottom: 8px;
}

.zcard__title {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
}
.zcard__title a { color: var(--forest); }
.zcard__title a:hover { color: var(--mari-deep); }

.zcard__text {
    margin: 0 0 14px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-mute);
}

.zcard__when {
    display: flex; align-items: center; gap: 8px;
    margin: 0 0 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--rule-soft);
    font-size: 12.5px;
    color: var(--ink-soft);
}
.zcard__when i { color: var(--mari-deep); font-size: 12px; }

.zcard__go {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 600;
    color: var(--mari-deep);
    transition: gap .2s ease;
}
.zcard:hover .zcard__go { gap: 13px; }
.zcard__go i { font-size: 11px; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .zcard { grid-template-columns: 160px minmax(0, 1fr); }
}
@media (max-width: 1000px) {
    .zones__head { flex-direction: column; align-items: flex-start; gap: 18px; }
    .zones__grid { grid-template-columns: 1fr; }
    .zcard { grid-template-columns: 220px minmax(0, 1fr); }
}
@media (max-width: 560px) {
    /* Side by side stops working once the photo is a stamp */
    .zcard { grid-template-columns: 1fr; }
    .zcard__media { aspect-ratio: 16 / 9; }
    .zcard__title { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   06 — GOING THERE WITH US
   The ad board: poster on one side, the offer on the other. With
   several ads the rows alternate sides so the page does not read
   as one long column of the same shape.
   ═══════════════════════════════════════════════════════════ */
.tours__head {
    display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px; align-items: end; margin-bottom: 44px;
}
.tours__head h2 {
    font-family: var(--display);
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.14; letter-spacing: -.022em; color: var(--forest);
}
.tours__head p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin: 0; }

.ads { display: grid; gap: 34px; }

.ad {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 26px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
}
/* Alternate the poster side when there is more than one ad */
.ad:nth-child(even) .ad__poster { order: 2; }

.ad__poster {
    display: block;
    aspect-ratio: 1;              /* ad creatives are square */
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--cream-deep);
    padding: 0;
}
.ad__poster img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.ad:hover .ad__poster img { transform: scale(1.03); }

.ad__body { min-width: 0; }

.ad__title {
    font-family: var(--display);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -.018em;
    color: var(--forest);
    margin: 0 0 12px;
}

.ad__text {
    margin: 0 0 18px;
    font-size: 15.5px;
    line-height: 1.72;
    color: var(--ink-soft);
}

.ad__points { margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.ad__points li {
    position: relative;
    padding-left: 26px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.ad__points li::before {
    content: '\f00c';                    /* check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute; left: 0; top: 1px;
    font-size: 11px;
    color: var(--mari);
}

.ad__cta { margin: 0; }
.ad__note {
    margin: 12px 0 0;
    font-size: 12.5px;
    color: var(--ink-mute);
    font-style: italic;
}

.tours__foot {
    margin-top: 50px;
    display: flex; flex-wrap: wrap; gap: 13px; justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .tours__head { grid-template-columns: 1fr; gap: 18px; }
    .ad { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 30px; }
}
@media (max-width: 760px) {
    .ad {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 20px;
    }
    /* Poster always leads once the row stacks */
    .ad:nth-child(even) .ad__poster { order: 0; }
    .ad__poster { max-width: 420px; margin-inline: auto; width: 100%; }
    .ad__cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
    .tours__foot { flex-direction: column; }
    .tours__foot .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   04 — NEWS & MEDIA
   Video-led: the thumbnail is the card and the outlet's logo sits
   on it. An entry still waiting for its video keeps the same frame
   so the row never looks half-finished.
   ═══════════════════════════════════════════════════════════ */
.press__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 30px; margin-bottom: 40px;
}
.press__head h2 {
    font-family: var(--display);
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.14; letter-spacing: -.022em; color: var(--forest);
}

.press__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.pr {
    display: flex; flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pr:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--rule); }

/* ---- The frame ---- */
.pr__media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--night);
    border: 0;
    cursor: pointer;
}
.pr__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.pr__media:hover img { transform: scale(1.05); opacity: .82; }

.pr__play {
    position: absolute; inset: 0; margin: auto;
    width: 68px; height: 68px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--mari);
    color: #fff;
    font-size: 21px;
    padding-left: 4px;
    box-shadow: 0 10px 32px rgba(18,21,17,.42);
    transition: transform .28s ease, background .28s ease;
}
.pr__media:hover .pr__play { transform: scale(1.09); background: var(--mari-deep); }
/* A slow ring so the play target reads as live, not decorative */
.pr__play::after {
    content: ''; position: absolute; inset: -9px;
    border-radius: 50%;
    border: 2px solid rgba(217,122,44,.45);
    animation: prPulse 2.6s ease-out infinite;
}
@keyframes prPulse {
    0%   { transform: scale(.88); opacity: .85; }
    100% { transform: scale(1.28); opacity: 0; }
}

/* Type of coverage, top right */
.pr__kind {
    position: absolute; top: 14px; right: 14px;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(18,21,17,.78);
    backdrop-filter: blur(6px);
    color: var(--cream);
    font-size: 11px; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
}
.pr__kind i { color: #ff4d4d; font-size: 13px; }

/* The outlet's mark, bottom left, on a white chip so any logo reads */
.pr__brand {
    position: absolute; left: 14px; bottom: 14px;
    display: inline-flex; align-items: center;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    background: #fff;
    box-shadow: 0 4px 16px rgba(18,21,17,.28);
}
.pr__brand img { height: 30px; width: auto; max-width: 170px; object-fit: contain; display: block; }
.pr__brand--text {
    font-family: var(--display);
    font-size: 20px; font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

/* ---- Waiting for its video ---- */
.pr__media--empty {
    display: grid;
    place-items: center;
    gap: 14px;
    cursor: default;
    background:
        radial-gradient(circle at 50% 42%, rgba(217,122,44,.16), transparent 62%),
        var(--cream-deep);
    border-bottom: 1px solid var(--rule);
}
.pr__media--empty .pr__brand {
    position: static;
    box-shadow: none;
    background: #fff;
    border: 1px solid var(--rule-soft);
}
.pr__emptyname {
    font-family: var(--display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--forest);
    letter-spacing: -.02em;
    line-height: 1;
}
.pr__kind--quiet {
    position: static;
    background: none;
    backdrop-filter: none;
    color: var(--ink-mute);
    padding: 0;
    font-size: 10.5px;
    letter-spacing: .16em;
}

/* ---- The words ---- */
.pr__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.pr__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-bottom: 11px; }
.pr__meta em {
    font-style: normal;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase;
    color: var(--mari-deep);
}
.pr__meta time { font-size: 12px; color: var(--ink-mute); }

.pr__body h3 {
    font-family: var(--display);
    font-size: 21px; font-weight: 700; line-height: 1.32;
    color: var(--forest);
    margin-bottom: 10px;
}
.pr__body p { font-size: 14.5px; line-height: 1.7; color: var(--ink-mute); margin: 0; }

.pr__go {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: auto; padding-top: 18px;
    font-size: 13.5px; font-weight: 600; color: var(--mari-deep);
    transition: gap .2s ease;
}
.pr__go:hover { gap: 12px; }
.pr__go i { font-size: 10px; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .press__head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .press__grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 560px) {
    .pr__play { width: 56px; height: 56px; font-size: 18px; }
    .pr__brand img { height: 24px; max-width: 130px; }
    .pr__body { padding: 18px 20px 20px; }
    .pr__body h3 { font-size: 19px; }
}

/* ═══════════════════════════════════════════════════════════
   05 — GUEST REVIEWS
   Media beside the words rather than under them. The stacked
   version ran close to 900px tall for one short quotation.
   ═══════════════════════════════════════════════════════════ */
.sec--reviews { padding: 68px 0; }
.sec--reviews .marker { justify-content: center; margin-bottom: 26px; }

.rv__h2 {
    font-family: var(--display);
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.16;
    letter-spacing: -.022em;
    color: #fff;
    text-align: center;
    margin: 0 auto 34px;
    max-width: 22ch;
}

/* ---- The slide ---- */
.rv__stage { position: relative; }
/* display would otherwise beat the UA rule for [hidden], which is what
   keeps the other reviews off screen. */
.rv[hidden] { display: none !important; }

.rv {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
    animation: rvIn .4s cubic-bezier(.2,.7,.2,1);
}
/* Nothing to sit beside, so the quotation takes the middle on its own */
.rv--text { grid-template-columns: minmax(0, 1fr); max-width: 660px; text-align: center; }
@keyframes rvIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---- What they shared ---- */
.rv__shared { margin: 0; }

.rv__video {
    position: relative;
    display: block; width: 100%; padding: 0;
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    background: #12140F;
    cursor: pointer;
}
.rv__video img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
.rv__video:hover img { opacity: .8; }

.rv__play {
    position: absolute; inset: 0; margin: auto;
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--mari); color: #fff;
    font-size: 17px; padding-left: 3px;
    transition: transform .25s ease, background .25s ease;
}
.rv__video:hover .rv__play { transform: scale(1.08); background: var(--mari-deep); }

.rv__shots { display: grid; gap: 7px; }
.rv__shots--1 { grid-template-columns: minmax(0, 1fr); }
.rv__shots--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rv__shots--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rv__shots--3 > :first-child { grid-column: 1 / -1; }

.rv__shot {
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: rgba(246,242,232,.06);
    padding: 0;
}
.rv__shot img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
.rv__shot:hover img { opacity: .82; }

.rv__shared figcaption {
    display: flex; align-items: center; gap: 8px;
    margin-top: 10px;
    font-size: 11.5px;
    color: rgba(246,242,232,.45);
}
.rv__shared figcaption i { color: var(--mari); }
.rv__shared figcaption i.fa-youtube { color: #ff4d4d; font-size: 13px; }

/* ---- What they said ---- */
.rv__quote { margin: 0; }
.rv__quote p {
    margin: 0 0 18px;
    font-family: var(--display);
    font-size: clamp(18px, 1.9vw, 24px);
    line-height: 1.48;
    font-style: italic;
    font-weight: 400;
    color: #fff;
}

/* Avatar, name and stars share one line instead of three */
.rv__quote footer {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}
.rv--text .rv__quote footer { justify-content: center; }

.rv__avatar {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: grid; place-items: center;
    background: var(--mari);
    color: #fff;
    font-family: var(--display);
    font-size: 19px; font-weight: 700;
    line-height: 1;
}
.rv__avatar img { width: 100%; height: 100%; object-fit: cover; }

.rv__by { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rv__by cite { font-style: normal; font-size: 15.5px; font-weight: 700; color: #fff; }
.rv__trip { font-size: 12.5px; color: rgba(246,242,232,.55); }

.rv__stars { display: flex; gap: 3px; font-size: 11.5px; }
.rv__stars i { color: rgba(246,242,232,.18); }
.rv__stars i.on { color: var(--mari); }

/* ---- Navigation ---- */
.rv__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(246,242,232,.12);
}
.rv__arrow {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(246,242,232,.24);
    color: var(--cream); font-size: 12px;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.rv__arrow:hover { background: var(--mari); border-color: var(--mari); color: #fff; }

.rv__dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.rv__dot {
    padding: 7px 14px; border-radius: 100px;
    border: 1px solid rgba(246,242,232,.2);
    color: rgba(246,242,232,.6);
    font-size: 12px; font-weight: 600;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.rv__dot:hover { border-color: rgba(246,242,232,.45); color: #fff; }
.rv__dot.is-on { background: var(--mari); border-color: var(--mari); color: #fff; }

.rv__pos {
    margin-left: 6px;
    font-size: 12px;
    color: rgba(246,242,232,.4);
    letter-spacing: .04em;
}
.rv__pos b { color: var(--mari); font-family: var(--display); font-size: 14px; }

/* ---- Responsive ---- */
@media (max-width: 760px) {
    .rv, .rv--text { grid-template-columns: minmax(0, 1fr); gap: 22px; text-align: center; }
    .rv__quote footer { justify-content: center; }
    .rv__shared { max-width: 300px; margin-inline: auto; }
    .rv__shared figcaption { justify-content: center; }
}
@media (max-width: 560px) {
    .sec--reviews { padding: 52px 0; }
    .rv__quote p { font-size: 17px; }
    .rv__dot { font-size: 11.5px; padding: 6px 12px; }
}

/* ═══════════════════════════════════════════════════════════
   06 — GALLERY
   ═══════════════════════════════════════════════════════════ */
.gal__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 30px; margin-bottom: 38px;
}
.gal__head h2 {
    font-family: var(--display);
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.14; letter-spacing: -.022em; color: var(--forest);
}

.gal__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}
/* Two tiles are promoted so the grid reads as a composition rather
   than a uniform contact sheet. */
.gal__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal__item:nth-child(6) { grid-column: span 2; }

.gal__item {
    position: relative;
    display: block;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--cream-deep);
    padding: 0;
}
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal__item:hover img { transform: scale(1.05); }
.gal__cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 26px 14px 12px;
    background: linear-gradient(to top, rgba(24,27,22,.88), transparent);
    color: #fff; font-size: 12.5px; font-weight: 500; line-height: 1.4;
    opacity: 0; transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}
.gal__item:hover .gal__cap { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   07 — PLANNING NOTES
   ═══════════════════════════════════════════════════════════ */
.notes__grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.notes__body h2 {
    font-family: var(--display);
    font-size: clamp(25px, 2.9vw, 38px);
    line-height: 1.16; letter-spacing: -.022em; color: var(--forest);
    margin-bottom: 22px;
}
.notes__body h3 { font-family: var(--display); font-size: 21px; color: var(--forest); margin: 32px 0 11px; }
.notes__body p { font-size: 15.5px; line-height: 1.82; color: var(--ink-soft); }
.notes__body strong { color: var(--forest); font-weight: 600; }

.notes__aside { position: sticky; top: 106px; }
.factcard { padding: 28px 26px; background: var(--night); border-radius: var(--r-md); color: var(--cream); }
.factcard h3 { font-family: var(--display); font-size: 19px; color: #fff; margin-bottom: 20px; }
.factcard dl { display: grid; gap: 12px; margin-bottom: 24px; }
.factcard dl > div {
    display: flex; justify-content: space-between; gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(246,242,232,.12);
    font-size: 13.5px;
}
.factcard dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.factcard dt { color: rgba(246,242,232,.58); }
.factcard dd { color: #fff; font-weight: 600; text-align: right; }
.factcard .btn { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   08 — FAQ
   ═══════════════════════════════════════════════════════════ */
.faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: 56px; align-items: start; }
.faq__intro { position: sticky; top: 106px; }
.faq__intro h2 {
    font-family: var(--display);
    font-size: clamp(25px, 2.9vw, 38px);
    line-height: 1.16; letter-spacing: -.022em; color: var(--forest); margin-bottom: 14px;
}
.faq__intro p { font-size: 15px; line-height: 1.75; color: var(--ink-mute); margin-bottom: 24px; }

.faq__list { display: grid; gap: 10px; }
.faq__item {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item:has(.faq__q[aria-expanded="true"]) { border-color: var(--mari); box-shadow: var(--sh-sm); }
.faq__q {
    width: 100%;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
    padding: 18px 20px; text-align: left;
    font-size: 16px; font-weight: 600; color: var(--forest); line-height: 1.45;
}
.faq__q i {
    flex-shrink: 0; margin-top: 3px;
    width: 24px; height: 24px; display: grid; place-items: center;
    border-radius: 50%; background: var(--mari-wash); color: var(--mari-deep);
    font-size: 10px; transition: transform .25s ease;
}
.faq__q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { margin: 0; padding: 0 54px 18px 20px; font-size: 15px; line-height: 1.75; color: var(--ink-soft); }

/* ═══════════════════════════════════════════════════════════
   CLOSING CTA
   Centred, with drawn jungle rather than photographed: the
   foliage, the paw trail and the undergrowth are inline SVG,
   so they weigh nothing and stay crisp at any size.
   ═══════════════════════════════════════════════════════════ */
.sec--cta {
    position: relative;
    overflow: hidden;
    padding: 96px 0 120px;   /* room for the undergrowth along the foot */
    text-align: center;
}

/* Warm glow behind the copy */
.sec--cta::before {
    content: '';
    position: absolute;
    top: -25%; left: 50%;
    width: 780px; height: 560px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(217,122,44,.20) 0%, transparent 66%);
    pointer-events: none;
}

/* ---- Foliage in the corners ---- */
/* Sat half outside the section before, so the shapes were sliced
   and read as a smear. Kept fully inside the frame now. */
.cta__leaf {
    position: absolute;
    width: clamp(140px, 15vw, 210px);
    height: auto;
    color: var(--mari);
    opacity: .3;
    pointer-events: none;
}
.cta__leaf--tl { top: 24px; left: 30px; }
.cta__leaf--br { bottom: 96px; right: 30px; }

/* ---- The block itself ---- */
.cta {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

/* ---- A tiger has walked through ---- */
.cta__paws {
    display: block;
    width: 190px;
    height: auto;
    margin: 0 auto 22px;
    color: var(--mari);
    opacity: .8;
}

.cta h2 {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -.025em;
    color: #fff;
    margin: 0 0 18px;
}
.cta h2 em { font-style: italic; font-weight: 600; color: var(--mari); }

.cta p {
    font-size: 16.5px;
    line-height: 1.72;
    color: rgba(246,242,232,.78);
    margin: 0 auto 30px;
    max-width: 54ch;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    justify-content: center;
}

.cta__phone {
    margin: 26px auto 0;
    font-size: 14.5px;
    color: rgba(246,242,232,.6);
}
.cta__phone a {
    color: var(--mari);
    font-weight: 600;
    border-bottom: 1px solid rgba(217,122,44,.4);
}
.cta__phone span { opacity: .6; }

/* ---- Undergrowth along the bottom edge ---- */
.cta__grass {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    width: 100%;
    height: clamp(46px, 6vw, 84px);
    color: var(--night-deep);   /* meets the footer, so the two merge */
    pointer-events: none;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .cta__leaf { width: 130px; opacity: .12; }
    .cta__leaf--tl { top: 6px; left: -34px; }
    .cta__leaf--br { bottom: 56px; right: -34px; }
}
@media (max-width: 560px) {
    .sec--cta { padding: 64px 0 86px; }
    .cta__paws { width: 150px; margin-bottom: 18px; }
    .cta__actions { flex-direction: column; }
    .cta__actions .btn { justify-content: center; }
    .cta__leaf { display: none; }   /* too little room to read as foliage */
}

@media (prefers-reduced-motion: reduce) {
    .cta__leaf, .cta__paws { transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.foot { background: var(--night-deep); color: rgba(246,242,232,.66); padding: 70px 0 0; }
.foot__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 44px;
    padding-bottom: 52px;
}
.foot__brand img { height: 40px; width: auto; margin-bottom: 18px; }
.foot__brand p { font-size: 14px; line-height: 1.75; max-width: 34ch; }
.foot__social { display: flex; gap: 10px; margin-top: 20px; }
.foot__social a {
    width: 36px; height: 36px; display: grid; place-items: center;
    border-radius: 9px;
    background: rgba(246,242,232,.07); border: 1px solid rgba(246,242,232,.12);
    color: rgba(246,242,232,.72); font-size: 14px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.foot__social a:hover { background: var(--mari); border-color: var(--mari); color: #fff; }

.foot__col h4 {
    font-size: 11.5px; font-weight: 700; letter-spacing: .13em;
    text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.foot__col a { display: block; padding: 6px 0; font-size: 14px; transition: color .2s ease, padding-left .2s ease; }
.foot__col a:hover { color: var(--mari); padding-left: 5px; }
.foot__col--contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.6; margin-bottom: 12px; }
.foot__col--contact i { color: var(--mari); font-size: 12px; margin-top: 4px; flex-shrink: 0; }
.foot__col--contact a { display: inline; padding: 0; }
.foot__wa {
    display: inline-flex !important; align-items: center; gap: 9px;
    margin-top: 8px; padding: 11px 18px !important; border-radius: 100px;
    background: var(--wa); color: #fff !important; font-weight: 600; font-size: 13.5px;
}
.foot__wa:hover { background: #1cb356; padding-left: 18px !important; }

.foot__base {
    padding: 22px 0 30px;
    border-top: 1px solid rgba(246,242,232,.1);
}
.foot__base p { margin: 0 0 6px; font-size: 12.5px; color: rgba(246,242,232,.42); }
.foot__base a { color: var(--mari); }
.foot__note { font-size: 11.5px !important; line-height: 1.65; max-width: 78ch; }

/* Floating WhatsApp */
.wafloat {
    position: fixed; right: 20px; bottom: 20px; z-index: 95;
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--wa); color: #fff; font-size: 25px;
    box-shadow: 0 8px 26px rgba(37,211,102,.4);
    transition: transform .25s ease;
}
.wafloat:hover { transform: scale(1.08); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1150px) {
    .nav__links { gap: 18px; }
    .nav__phone span { display: none; }
    .statement { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .statement__img { grid-column: 1 / -1; max-width: 420px; }
    .statement__img img { aspect-ratio: 16/9; }
}

@media (max-width: 1024px) {
    .sec { padding: 74px 0; }
    .hero__grid { grid-template-columns: 1fr; gap: 48px; padding: 48px 0 60px; }
    .hero__media { max-width: 560px; }
    .hero__inset { left: auto; right: -20px; bottom: -28px; width: 42%; }
    .hero__media figcaption { position: static; margin-top: 46px; }
    .trustbar__list { grid-template-columns: repeat(2, 1fr); }
    .trustbar__list li { border-right: 0; padding-inline: 0 !important; border-bottom: 1px solid var(--rule-soft); }
    .trustbar__list li:nth-child(odd) { padding-right: 20px !important; border-right: 1px solid var(--rule-soft); }
    .season__head, .pkgs__head { grid-template-columns: 1fr; gap: 20px; }
    .pkgs__grid { grid-template-columns: repeat(2, 1fr); }
    .pkgs__grid > :nth-child(2) { transform: none; }
    .extend { grid-template-columns: 1fr; gap: 26px; }
    .notes__grid, .faq__grid { grid-template-columns: 1fr; gap: 40px; }
    .notes__aside, .faq__intro { position: static; }
    .factcard { max-width: 460px; }
    .foot__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 860px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .cover { grid-template-columns: 1fr; }
    .proof__split { grid-template-columns: 1fr; gap: 26px; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 640px) {
    .sec { padding: 58px 0; }
    .marker { margin-bottom: 28px; }
    .marker i { flex-basis: 30px; }
    .hero__grid { padding: 34px 0 46px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__facts > div { padding-right: 20px; margin-right: 20px; }
    .hero__photo { border-radius: var(--r-md) var(--r-md) 56px var(--r-md); }
    .hero__inset { width: 48%; right: -8px; bottom: -22px; border-width: 4px; }
    .trustbar__list { grid-template-columns: 1fr; }
    .trustbar__list li,
    .trustbar__list li:nth-child(odd) { border-right: 0 !important; padding: 16px 0 !important; }
    .trustbar__list li:last-child { border-bottom: 0; }
    .statement { grid-template-columns: 1fr; gap: 28px; }
    .zones__head, .proof__head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .zcard { flex: 0 0 268px; }
    .pkgs__grid { grid-template-columns: 1fr; }
    .extend__list a { grid-template-columns: minmax(0, 1fr) auto; gap: 4px 14px; }
    .extend__dur { grid-row: 2; }
    .extend__price { grid-row: 2; grid-column: 2; text-align: right; }
    .extend__list i { display: none; }
    .strip { grid-template-columns: repeat(2, 1fr); }
    .cta__actions { flex-direction: column; align-items: stretch; }
    .faq__a p { padding-right: 20px; }
    .foot__grid { grid-template-columns: 1fr; gap: 30px; }
    .wafloat { width: 48px; height: 48px; font-size: 22px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Hero copy column + explicit lightbox arrow sides */
.hero__copy { min-width: 0; }
.lb__prev { order: -1; }
.lb__next { order: 1; }

/* Outlet logo lockup — sits on a paper chip so mastheads of any
   colour read cleanly against the cream card. */
.pr__logo {
    display: inline-flex; align-items: center;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--rule-soft);
    border-radius: var(--r-sm);
}
.pr__logo img { height: 40px; width: auto; max-width: 240px; object-fit: contain; display: block; }
@media (max-width: 560px) { .pr__logo img { height: 26px; max-width: 150px; } }

/* Outlet name standing in for a logo that has not been uploaded yet.
   It sits in the same chip at the same height, so dropping the real
   masthead in later changes nothing about the layout. */
.pr__logo--text { padding: 0; background: none; border: 0; }
.pr__logo--text b {
    display: inline-flex; align-items: center;
    height: 40px; padding: 0 2px;
    font-family: var(--display);
    font-size: 26px; font-weight: 700; letter-spacing: -.01em;
    color: var(--forest);
}

/* The headline and lede swap with the slide; fading them keeps the
   change from reading as a glitch. */
#heroEm, #heroLede { transition: opacity .22s ease, transform .22s ease; }
#heroEm.is-swapping, #heroLede.is-swapping { opacity: 0; transform: translateY(6px); }
@media (prefers-reduced-motion: reduce) {
    #heroEm, #heroLede { transition: none; }
    #heroEm.is-swapping, #heroLede.is-swapping { opacity: 1; transform: none; }
}

/* Wide tables scroll inside their own box rather than pushing the page */
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 1024px) {
    .ab__cols { grid-template-columns: 1fr; gap: 32px; }
    .ab__figure { position: static; max-width: 460px; }
    .ab__figure img { aspect-ratio: 4 / 3; }
}

/* ── Video modal ── */
.lb--video { padding: 4vh 4vw; }
.lb__frame { width: min(1100px, 100%); aspect-ratio: 16 / 9; }
.lb__frame iframe { width: 100%; height: 100%; border: 0; border-radius: var(--r-md); display: block; }
@media (max-width: 640px) { .lb--video { padding: 0 12px; } }

/* Poster slot before the artwork exists: a plain coloured frame that
   holds the exact shape the ad creative will take. */
.ad__poster--empty {
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 8px;
    text-align: center;
    padding: 20px;
    background:
        radial-gradient(circle at 50% 40%, rgba(217,122,44,.14), transparent 66%),
        var(--cream-deep);
    border: 1px dashed var(--rule);
}
.ad__poster--empty i { font-size: 30px; color: var(--mari); opacity: .75; }
.ad__poster--empty span {
    font-family: var(--display);
    font-size: 18px; font-weight: 700; color: var(--forest);
}
.ad__poster--empty small {
    font-size: 11.5px; line-height: 1.5; color: var(--ink-mute);
    word-break: break-word; max-width: 22ch;
}
