@charset "UTF-8";
/* ==========================================================================
   AVENUE TREE — fonts (self-hosted)
   Latin woff2 subsets from @fontsource. Self-hosted rather than loaded from
   Google Fonts: removes two third-party preconnects and a render-blocking
   request from every page, and the whole set is 112 KB.
   ========================================================================== */
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/dm-sans-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/dm-sans-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("../fonts/dm-sans-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost"; font-style: normal; font-weight: 300;
  font-display: swap; src: url("../fonts/jost-latin-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/jost-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/jost-latin-500-normal.woff2") format("woff2");
}

/* ==========================================================================
   AVENUE TREE — design system
   Masinagudi, The Nilgiris. Hospitality rooted in nature.

   Structure
   01 Tokens          06 Sections & rules
   02 Reset & base    07 Cards & editorial blocks
   03 Typography      08 Gallery & lightbox
   04 Buttons         09 Forms
   05 Header & nav    10 Footer, CTA rail, utilities, motion, responsive
   ========================================================================== */

/* -------------------------------------------------- 01 Tokens ------------ */
/*  BRAND PALETTE — Aranyasun house identity
 *
 *  CONFIRMED  read directly from aranyasun.com (its published theme-color).
 *  DERIVED    built in the same hue family (H≈131°) / warm-neutral register.
 *             Send the brand hex codes or the logo file and these swap in one edit —
 *             nothing below this block hardcodes a colour.
 */
:root {
  /* --- greens ------------------------------------------------ */
  --forest:        #2f4a34;   /* CONFIRMED — aranyasun.com brand green      */
  --forest-mid:    #3e6044;   /* DERIVED  — hover / lifted state            */
  --forest-deep:   #1d2f20;   /* DERIVED  — footer, deep sections           */
  --forest-ink:    #132015;   /* DERIVED  — image overlays, lightbox        */
  --sage:          #779064;   /* DERIVED  — muted supporting green          */

  /* --- warm neutrals ----------------------------------------- */
  --cream:         #f7f3ea;   /* lifted: the warm alternating band  */
  --cream-deep:    #efe9dc;
  --paper:         #ffffff;   /* was off-white #fcfaf4            */
  --sand:          #ddcdae;

  /* --- accent (brass) ---------------------------------------- */
  --accent:        #86642a;   /* DERIVED — labels, links, focus (AA on cream) */
  --gold:          #976d15;   /* CTA primary — AA with white text  */
  --accent-soft:   #ccaf76;   /* DERIVED — accent on dark grounds (AA on green) */

  /* --- text -------------------------------------------------- */
  --ink:           #232b24;
  --muted:         #555f51;   /* darkened: 6.0:1 on cream, was 4.75 */

  /* --- channel tokens (drive every rgba() in this file) ------- */
  --forest-rgb:    47 74 52;
  --shade-rgb:     19 32 21;
  --cream-rgb:     247 243 234;

  --line:          rgb(var(--forest-rgb) / .17);
  --line-soft:     rgb(var(--forest-rgb) / .10);
  --line-light:    rgb(var(--cream-rgb) / .28);

  /* --- typography --------------------------------------------------
   *  --display  headings, titles, numerals, the wordmark
   *  --sans     interface: nav, labels, buttons, chips, form fields
   *  --prose    running paragraph copy only
   *
   *  Headings and interface are DM Sans; paragraphs stay on Jost, as requested.
   *  To put paragraphs on DM Sans too, set --prose to var(--sans) — one line.
   */
  --display: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --sans:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --prose:   "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --t-hero:  clamp(2.9rem, 7.4vw, 6.3rem);
  --t-h1:    clamp(2.5rem, 5.8vw, 4.7rem);
  --t-h2:    clamp(2rem, 4vw, 3.4rem);
  --t-h3:    clamp(1.35rem, 2.1vw, 1.85rem);
  --t-h4:    clamp(1.12rem, 1.45vw, 1.32rem);
  --t-lede:  clamp(1.22rem, 1.55vw, 1.5rem);
  --t-body:  1.125rem;
  --t-label: .72rem;

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --max:    1440px;
  --measure: 66ch;

  --pad-section:    clamp(4.5rem, 9vw, 9rem);
  --pad-section-sm: clamp(3.25rem, 6vw, 5.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

/* -------------------------------------------------- 02 Reset & base ------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.72;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
ul, ol { margin: 0; padding: 0; }
figure, blockquote, dl, dd { margin: 0; }
li { list-style: none; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--sand); color: var(--forest-deep); }

.skip-link {
  position: absolute; top: -100%; left: var(--gutter); z-index: 2000;
  background: var(--forest); color: #fff; padding: .9rem 1.4rem;
  font-size: var(--t-label); letter-spacing: .16em; text-transform: uppercase;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 980px; }

/* -------------------------------------------------- 03 Typography -------- */
h1, h2, h3, h4, h5, .display {
  font-family: var(--display);
  font-weight: 500;
  color: var(--forest-deep);
  margin: 0;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: var(--t-h1); line-height: 1.04; letter-spacing: -.035em; font-weight: 500; }
h2 { font-size: var(--t-h2); line-height: 1.1;  letter-spacing: -.03em; }
h3 { font-size: var(--t-h3); line-height: 1.24; letter-spacing: -.02em; }
h4 { font-size: var(--t-h4); line-height: 1.32; letter-spacing: -.015em; }

/* Running copy keeps Jost; everything else is DM Sans. */
p, .lede, blockquote,
.prose li, .pkgitem__col li, .facts dd, .summary dd, .spec em, .act p {
  font-family: var(--prose);
}
p { margin: 0 0 1.15em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--t-lede);
  line-height: 1.62;
  color: var(--ink);
  max-width: 56ch;
}

.label {
  display: inline-block;
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: .215em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.4;
}
.label--light { color: var(--accent-soft); }
.label--muted  { color: var(--muted); }

.muted { color: var(--muted); }
.serif { font-family: var(--display); }

/* pull quote */
.quote {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.9vw, 2.5rem);
  line-height: 1.24; font-weight: 500;
  letter-spacing: -.028em;
  color: var(--forest);
  max-width: 24ch;
  margin: 0;
}
.quote cite {
  display: block; margin-top: 1.4rem;
  font: 500 var(--t-label)/1.5 var(--sans);
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  font-style: normal;
}

/* prose blocks (journal, destination bodies) */
.prose h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); margin: 2.4em 0 .7em; letter-spacing: -.028em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); }
.prose > p:first-of-type { color: var(--ink); font-size: 1.08rem; }
.prose ul { margin: 0 0 1.4em; }
.prose ul li {
  position: relative; padding-left: 1.5rem; margin-bottom: .55rem;
  color: var(--muted); max-width: var(--measure);
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .78em;
  width: 8px; height: 1px; background: var(--accent);
}
.section--forest .prose ul li, .section--deep .prose ul li { color: #fff; opacity: .93; }
.section--forest .prose ul li::before, .section--deep .prose ul li::before { background: var(--accent-soft); }
.prose a { color: var(--forest); text-decoration: underline; text-decoration-color: var(--sand); }
.prose a:hover { text-decoration-color: var(--accent); }

/* -------------------------------------------------- 04 Buttons ----------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: #fff;
  --btn-bd: var(--forest);
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.02rem 1.85rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: 0;
  font-size: var(--t-label); font-weight: 500;
  letter-spacing: .17em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  line-height: 1; white-space: nowrap;
}
.btn:hover { --btn-bg: var(--forest-mid); --btn-bd: var(--forest-mid); }
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--forest); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bg: var(--forest); --btn-fg: #fff; --btn-bd: var(--forest); }

.btn--light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: var(--line-light); }
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--forest-deep); --btn-bd: #fff; }

.btn--solid-light { --btn-bg: var(--cream); --btn-fg: var(--forest-deep); --btn-bd: var(--cream); }
.btn--solid-light:hover { --btn-bg: #fff; --btn-bd: #fff; }

.btn--accent { --btn-bg: var(--accent); --btn-bd: var(--accent); }
.btn--accent:hover { --btn-bg: #6f5222; --btn-bd: #6f5222; }

.btn--sm { padding: .82rem 1.15rem; font-size: .64rem; letter-spacing: .14em; }
.btn--block { width: 100%; justify-content: center; }

/* text link with rule */
.tlink {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--t-label); font-weight: 500; letter-spacing: .17em;
  text-transform: uppercase; text-decoration: none; color: var(--forest);
  padding-bottom: .45rem; border-bottom: 1px solid var(--line);
  transition: border-color .35s var(--ease), color .35s var(--ease);
}
.tlink:hover { border-color: var(--accent); color: var(--accent); }
.tlink--light { color: var(--cream); border-color: var(--line-light); }
.tlink--light:hover { color: #fff; border-color: var(--sand); }

/* -------------------------------------------------- 05 Header & nav ------ */
.header {
  position: fixed; inset: 0 0 auto; z-index: 900;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
  background: transparent;
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgb(var(--shade-rgb) / .66), rgb(var(--shade-rgb) / .18) 62%, rgb(var(--shade-rgb) / 0));
  opacity: 1; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.header.is-solid { background: var(--cream); border-bottom-color: var(--line-soft); }
.header.is-solid::before { opacity: 0; }
.header--static { position: sticky; background: var(--cream); border-bottom-color: var(--line-soft); }
.header--static::before { opacity: 0; }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: var(--header-h);
}

/* wordmark + ridge glyph */
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand__mark { height: 46px; width: auto; flex: none; display: block; }
.brand__mark--green { display: none; }
.header.is-solid .brand__mark--white { display: none; }
.header.is-solid .brand__mark--green { display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display); font-size: 1.32rem; font-weight: 700; letter-spacing: -.012em;
  color: inherit;
}
.brand__sub {
  font-size: .5rem; letter-spacing: .22em; text-transform: uppercase;
  margin-top: .36rem; opacity: .72; white-space: nowrap;
}
.header .brand { color: #fff; }
.header.is-solid .brand, .header--static .brand { color: var(--forest-deep); }

/* desktop nav */
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: .2rem; }
.nav__link {
  display: inline-flex; align-items: center; gap: .34rem;
  padding: .7rem .68rem; text-decoration: none;
  font-size: .66rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: #fff; white-space: nowrap;
  transition: opacity .3s var(--ease);
  position: relative;
}
.header.is-solid .nav__link, .header--static .nav__link { color: var(--forest-deep); }
.nav__link::after {
  content: ""; position: absolute; left: .68rem; right: .68rem; bottom: .38rem;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease); opacity: .55;
}
.nav__link:hover::after, .nav__item[data-open="true"] > .nav__link::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__chev { width: 8px; height: 8px; opacity: .6; transition: transform .3s var(--ease); }
.nav__item[data-open="true"] .nav__chev { transform: rotate(180deg); }

.nav__item { position: relative; }

/* mega menu */
.mega {
  position: absolute; top: calc(100% + .1rem); left: 50%;
  transform: translate(-50%, 10px);
  min-width: 560px; padding: 2.2rem 2.4rem;
  background: var(--cream); border: 1px solid var(--line-soft);
  box-shadow: 0 26px 60px -24px rgb(var(--shade-rgb) / .3);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 2.2rem;
}
.nav__item[data-open="true"] .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.mega__intro p { font-size: .92rem; color: var(--muted); margin-top: .8rem; }
.mega__links { display: grid; grid-template-columns: 1fr 1fr; gap: .1rem 1.6rem; align-content: start; }
.mega--wide { min-width: 720px; }
.mega__link {
  display: block; padding: .62rem 0; text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.mega__link:last-child { border-bottom: 0; }
.mega__link b {
  display: block; font-family: var(--display); font-size: 1.02rem;
  font-weight: 500; letter-spacing: -.015em; color: var(--forest-deep); transition: color .3s var(--ease);
}
.mega__link span { font-size: .78rem; color: var(--muted); letter-spacing: .01em; }
.mega__link:hover b { color: var(--accent); }

.header__cta { display: none; align-items: center; gap: .75rem; }

/* mobile toggle */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 46px; height: 46px; padding: 0 10px;
  background: none; border: 0; cursor: pointer; color: #fff;
}
.header.is-solid .burger, .header--static .burger { color: var(--forest-deep); }
.burger span {
  display: block; height: 1.5px; background: currentColor;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger span:nth-child(2) { width: 70%; margin-left: auto; }
.drawer-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.drawer-open .burger span:nth-child(2) { opacity: 0; }
.drawer-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 890;
  background: var(--cream);
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateY(-100%); transition: transform .5s var(--ease);
  visibility: hidden;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer__group { border-bottom: 1px solid var(--line-soft); }
.drawer__link, .drawer__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.05rem 0; background: none; border: 0; text-align: left;
  text-decoration: none; font-family: var(--display); font-size: 1.42rem; font-weight: 500; letter-spacing: -.025em;
  color: var(--forest-deep); cursor: pointer;
}
.drawer__toggle svg { width: 12px; height: 12px; transition: transform .3s var(--ease); flex: none; }
.drawer__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__sub { display: none; padding: 0 0 1.1rem .1rem; }
.drawer__sub.is-open { display: block; }
.drawer__sub a {
  display: block; padding: .52rem 0; text-decoration: none;
  font-size: .95rem; color: var(--muted); border-bottom: 1px solid var(--line-soft);
}
.drawer__sub a:last-child { border-bottom: 0; }
.drawer__foot { margin-top: 2rem; display: grid; gap: .75rem; }
.drawer__meta { margin-top: 2rem; font-size: .85rem; color: var(--muted); }
.drawer__meta a { color: var(--forest); }

body.drawer-open { overflow: hidden; }

/* -------------------------------------------------- 06 Sections & rules -- */
.section { padding-block: var(--pad-section); }
.section--sm { padding-block: var(--pad-section-sm); }
.section--flush-top { padding-top: 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h1, .section--forest h2, .section--forest h3, .section--forest h4 { color: #fff; }
.section--forest p { color: #fff; opacity: .93; }
.section--deep { background: var(--forest-deep); color: var(--cream); }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep p { color: #fff; opacity: .93; }

.section__head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head .label { margin-bottom: 1.1rem; }
.section__head p { margin-top: 1.3rem; color: var(--muted); max-width: 46ch; }
.section--forest .section__head p, .section--deep .section__head p { color: #fff; opacity: .93; }

.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.head-row .section__head { margin-bottom: 0; }

/* SIGNATURE — the ridge rule: a drawn Nilgiri horizon used as a divider */
.ridge {
  display: block; width: 100%; height: 26px;
  color: var(--line); overflow: hidden;
}
.ridge svg { width: 100%; height: 100%; }
.ridge--light { color: rgb(var(--cream-rgb) / .28); }
.ridge--sand { color: var(--sand); }
.ridge--short { width: 84px; height: 16px; color: var(--accent); }

/* -------------------------------------------------- 07 Cards & blocks ---- */
/* mounted photograph plate — image sits proud of a hairline mount */
.plate { position: relative; display: block; }
.plate__frame { position: relative; z-index: 1; overflow: hidden; background: var(--cream-deep); }
.plate__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.plate:hover .plate__frame img, a:hover .plate__frame img { transform: scale(1.045); }
.plate::after {
  content: ""; position: absolute; inset: 16px -16px -16px 16px;
  border: 1px solid var(--sand); z-index: 0; pointer-events: none;
}
.plate--left::after { inset: 14px 14px -14px -14px; }
.plate--none::after { display: none; }
.plate__cap {
  margin-top: 1.1rem; font-size: .78rem; color: var(--muted);
  display: flex; gap: .6rem; align-items: baseline;
}
.plate__cap b { font-weight: 500; color: var(--forest); letter-spacing: .14em;
  text-transform: uppercase; font-size: .62rem; }

.ratio-hero   { aspect-ratio: 16 / 9; }
.ratio-wide   { aspect-ratio: 3 / 2; }
.ratio-port   { aspect-ratio: 4 / 5; }
.ratio-tall   { aspect-ratio: 3 / 4; }
.ratio-square { aspect-ratio: 1 / 1; }

/* editorial two-column split */
.split {
  display: grid; gap: clamp(2.2rem, 5vw, 5rem);
  align-items: center;
}
.split__text { max-width: 34rem; }
.split__text .label { margin-bottom: 1.2rem; }
.split__text h2 + p, .split__text p + p { margin-top: 1.2rem; }
.split__text p { color: var(--muted); }
.split__text > * + .btn, .split__text > * + .tlink { margin-top: 2rem; }

/* homepage hero */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; background: var(--forest-deep);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  /* Three-part scrim: top for the header, bottom for the actions, and a left-hand
     wash so the headline stays legible whatever photograph sits behind it. */
  background:
    linear-gradient(180deg, rgb(var(--shade-rgb) / .48) 0%, rgb(var(--shade-rgb) / 0) 30%),
    linear-gradient(0deg,   rgb(var(--shade-rgb) / .86) 0%, rgb(var(--shade-rgb) / .38) 44%, rgb(var(--shade-rgb) / 0) 74%),
    linear-gradient(90deg,  rgb(var(--shade-rgb) / .58) 0%, rgb(var(--shade-rgb) / .20) 44%, rgb(var(--shade-rgb) / 0) 66%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 8rem 4.5rem; width: 100%; }
.hero h1 { color: #fff; font-size: var(--t-hero); line-height: 1.02; max-width: 16ch;
  letter-spacing: -.04em; font-weight: 700; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.8rem;
  font-size: var(--t-label); letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255, 255, 255, .88); font-weight: 500;
}
.hero__eyebrow svg { width: 44px; height: 12px; color: var(--sand); }
.hero p { color: rgba(255, 255, 255, .84); max-width: 46ch; margin-top: 1.9rem; font-size: var(--t-lede); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.6rem; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 7.5rem; z-index: 3;
  display: none; align-items: center; gap: .8rem;
  font-size: .6rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255, 255, 255, .7); writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 54px; background: rgba(255, 255, 255, .4);
  animation: scrollhint 2.6s var(--ease) infinite;
}
@keyframes scrollhint { 0%, 100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* page hero (inner pages) */
.phero { position: relative; color: #fff; background: var(--forest-deep); overflow: hidden; }
.phero__media { position: absolute; inset: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.phero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgb(var(--shade-rgb) / .58), rgb(var(--shade-rgb) / .78)),
    linear-gradient(90deg, rgb(var(--shade-rgb) / .34), rgb(var(--shade-rgb) / 0) 70%);
}
.phero__inner {
  position: relative; z-index: 2;
  padding-block: calc(var(--header-h) + clamp(3.5rem, 8vw, 7rem)) clamp(3rem, 6vw, 5.5rem);
}
.phero h1 { color: #fff; max-width: 18ch; }
.phero p { color: rgba(255, 255, 255, .82); max-width: 52ch; margin-top: 1.6rem; font-size: var(--t-lede); }
.phero .label { color: var(--sand); }
.phero--plain { background: var(--forest); }
.phero--plain .phero__media { display: none; }

/* breadcrumbs */
.crumbs { padding-top: 1.4rem; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.crumbs li { display: flex; align-items: center; gap: .5rem; font-size: .74rem;
  letter-spacing: .09em; color: rgba(255, 255, 255, .62); }
.crumbs li + li::before { content: "/"; opacity: .45; }
.crumbs a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current="page"] { color: rgba(255, 255, 255, .58); }

/* property showcase (large editorial block) */
.property { display: grid; gap: clamp(1.8rem, 4vw, 4rem); align-items: center; }
.property + .property { margin-top: clamp(4rem, 8vw, 7.5rem); }
.property__body { max-width: 34rem; }
.property__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .7rem; margin-bottom: 1.1rem;
  font-size: var(--t-label); letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
}
.property__meta span:not(:first-child)::before { content: "·"; margin-right: .7rem; opacity: .6; }
.property h3 { font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -.032em; }
.property__lede { margin-top: 1.2rem; color: var(--muted); font-size: 1.06rem; }
.property__list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.8rem 0 0; }
.property__list li {
  font-size: .84rem; letter-spacing: .06em; color: var(--forest);
  border: 1px solid var(--line); padding: .42rem .8rem;
  transition: border-color .3s var(--ease);
}
.property__list li:hover { border-color: var(--sage); }
.property__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }

/* grid card (experiences, destinations, journal) */
.grid { display: grid; gap: clamp(1.4rem, 2.6vw, 2.2rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

.card { display: block; text-decoration: none; color: inherit; }
.card__frame { position: relative; overflow: hidden; background: var(--cream-deep); }
.card__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__frame img { transform: scale(1.05); }
.card__body { padding-top: 1.3rem; }
.card__body .label { font-size: .62rem; }
.card h3 { margin-top: .6rem; font-size: clamp(1.15rem, 1.6vw, 1.4rem); letter-spacing: -.022em;
  transition: color .3s var(--ease); }
.card:hover h3 { color: var(--accent); }
.card p { margin-top: .7rem; color: var(--muted); font-size: 1.02rem; }
.card__more {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--forest);
}
.card__more .arw { transition: transform .35s var(--ease); }
.card:hover .card__more .arw { transform: translateX(4px); }

/* overlay card (destinations) */
.ocard {
  position: relative; display: block; overflow: hidden;
  text-decoration: none; color: #fff; background: var(--forest-deep);
}
.ocard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ocard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgb(var(--shade-rgb) / .86) 4%, rgb(var(--shade-rgb) / .12) 62%);
  transition: opacity .5s var(--ease);
}
.ocard:hover img { transform: scale(1.06); }
.ocard__body { position: absolute; z-index: 2; inset: auto 0 0 0; padding: clamp(1.3rem, 2.4vw, 2rem); }
.ocard__body .label { color: var(--sand); font-size: .6rem; }
.ocard h3 { color: #fff; margin-top: .5rem; font-size: clamp(1.2rem, 1.9vw, 1.62rem); letter-spacing: -.025em; }
.ocard p { color: rgba(255, 255, 255, .78); font-size: .9rem; margin-top: .5rem; }

/* feature list with hairlines */
.flist { display: grid; gap: 0; }
.flist__item { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.flist__item:last-child { border-bottom: 1px solid var(--line); }
.flist__item h3 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 500; color: var(--forest); }
.flist__item p { margin-top: .55rem; color: var(--muted); font-size: 1.02rem; }
.section--forest .flist__item, .section--deep .flist__item { border-color: var(--line-light); }
.section--forest .flist__item h3, .section--deep .flist__item h3 { color: var(--sand); }

/* numbered sequence — used only where order genuinely matters */
.steps { counter-reset: step; display: grid; gap: 0; }
.steps__item { counter-increment: step; position: relative; padding: 1.8rem 0 1.8rem 4.2rem;
  border-top: 1px solid var(--line); }
.steps__item:last-child { border-bottom: 1px solid var(--line); }
.steps__item::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 1.95rem;
  font-family: var(--display); font-weight: 700; font-size: .92rem;
  letter-spacing: .02em; color: var(--accent);
}
.steps__item h3 { font-size: 1.2rem; }
.steps__item p { margin-top: .55rem; color: var(--muted); }

/* fact table */
.facts { border-top: 1px solid var(--line); }
.facts div { display: flex; gap: 1.5rem; justify-content: space-between;
  padding: .95rem 0; border-bottom: 1px solid var(--line-soft); }
.facts dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  flex: none; max-width: 42%; }
.facts dd { margin: 0; text-align: right; font-size: 1.02rem; color: var(--forest); }

/* verification stamp — E-E-A-T device */
.stamp {
  display: inline-flex; flex-direction: column; gap: .45rem;
  border: 1px solid var(--line); padding: 1rem 1.2rem; background: var(--paper);
  max-width: 46ch;
}
.stamp b { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
  font-weight: 500; }
.stamp span { font-size: .95rem; color: var(--muted); line-height: 1.65; }
.section--cream .stamp { background: transparent; }

/* author byline */
.byline { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.2rem;
  font-size: .9rem; color: var(--muted); }
.byline b { font-weight: 500; color: var(--forest); }
.byline span { display: inline-flex; align-items: center; gap: .55rem; }
.byline span + span::before { content: ""; width: 3px; height: 3px; border-radius: 50%;
  background: var(--sand); }

/* FAQ — native details, no JS */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: clamp(1.06rem, 1.5vw, 1.28rem); font-weight: 500;
  letter-spacing: -.02em; color: var(--forest-deep); transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px; margin-top: .5rem;
  background: currentColor; transition: transform .3s var(--ease);
  clip-path: polygon(46% 0, 54% 0, 54% 46%, 100% 46%, 100% 54%, 54% 54%, 54% 100%, 46% 100%, 46% 54%, 0 54%, 0 46%, 46% 46%);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq__answer { padding: 0 0 1.6rem; }
.faq__answer p { color: var(--muted); max-width: 62ch; }
.faq details[open] summary { color: var(--forest); }

/* related strip */
.related { display: grid; gap: 1.6rem; }
.related a { display: block; text-decoration: none; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.related a .label { font-size: .6rem; }
.related a h3 { margin-top: .5rem; transition: color .3s var(--ease); }
.related a:hover h4 { color: var(--accent); }

/* index list (journal listing) */
.jlist { border-top: 1px solid var(--line); }
.jitem { display: grid; gap: 1.4rem; padding: clamp(1.8rem, 3vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
.jitem__frame { overflow: hidden; background: var(--cream-deep); }
.jitem__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.jitem:hover .jitem__frame img { transform: scale(1.05); }
.jitem h3 { margin-top: .6rem; transition: color .3s var(--ease); }
.jitem:hover h3 { color: var(--accent); }
.jitem p { margin-top: .7rem; color: var(--muted); font-size: 1.04rem; }
.jitem__meta { margin-top: 1rem; font-size: .74rem; color: var(--muted); letter-spacing: .06em; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { max-width: 48ch; margin: 1.4rem auto 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.4rem; }

/* -------------------------------------------------- 08 Gallery ----------- */
.gfilters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.4rem; }
.gfilter {
  padding: .62rem 1.15rem; background: transparent; border: 1px solid var(--line);
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--forest);
  cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.gfilter:hover { border-color: var(--forest); }
.gfilter[aria-pressed="true"] { background: var(--forest); color: #fff; border-color: var(--forest); }

.masonry { columns: 2; column-gap: clamp(.7rem, 1.4vw, 1.1rem); }
.masonry__item { break-inside: avoid; margin-bottom: clamp(.7rem, 1.4vw, 1.1rem); display: block;
  width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; position: relative; }
.masonry__item img { width: 100%; transition: transform 1s var(--ease), opacity .4s var(--ease); }
.masonry__item::after {
  content: ""; position: absolute; inset: 0; background: rgb(var(--shade-rgb) / .16);
  opacity: 0; transition: opacity .35s var(--ease);
}
.masonry__item:hover::after { opacity: 1; }
.masonry__item[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 1200; display: none;
  align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--forest-ink) 95%, transparent); padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[open] { display: flex; }
.lightbox::backdrop { background: color-mix(in srgb, var(--forest-ink) 95%, transparent); }
.lightbox img { max-width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox__cap { color: rgba(255, 255, 255, .78); font-size: .84rem; margin-top: 1.2rem; text-align: center; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: none; border: 1px solid var(--line-light);
  color: #fff; width: 48px; height: 48px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .14); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__nav--prev { left: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__inner { max-width: 1200px; width: 100%; }

/* -------------------------------------------------- 09 Forms ------------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; gap: 1.25rem; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 1rem 1.1rem; font: inherit; font-size: 1.04rem;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 0;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--forest); background: #fff; outline: none;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 1px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23626c5e' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px;
  padding-right: 2.6rem; }
.field__error { font-size: .78rem; color: var(--accent); display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--accent); }
.field.is-invalid .field__error { display: block; }
.form__note { font-size: .8rem; color: var(--muted); }
.form__status { padding: 1rem 1.2rem; border: 1px solid var(--line); background: var(--cream);
  font-size: .9rem; color: var(--forest); display: none; }
.form__status.is-visible { display: block; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.check input { width: auto; margin-top: .25rem; }

/* contact detail block */
.detail { border-top: 1px solid var(--line); padding-top: 1.3rem; margin-top: 1.3rem; }
.detail:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.detail b { display: block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: .6rem; }
.detail a { color: var(--forest); text-decoration: none; }
.detail a:hover { text-decoration: underline; }
.detail address { font-style: normal; color: var(--muted); }

/* -------------------------------------------------- 10 Footer & rails ---- */
.footer { background: var(--forest-deep); color: #fff; padding-block: clamp(3.5rem, 7vw, 6rem) 2rem; }
.footer a { color: #fff; opacity: .88; text-decoration: none; transition: opacity .3s var(--ease); }
.footer a:hover { opacity: 1; text-decoration: underline; }
.footer__grid { display: grid; gap: 2.6rem; }
.footer__brand .brand { color: #fff; }
.footer__brand p { margin-top: 1.4rem; color: #fff; opacity: .82; font-size: 1.02rem; max-width: 34ch; }
.footer__col h3 { font-family: var(--sans); font-size: .66rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 1.1rem; }
.footer__col li { margin-bottom: .6rem; font-size: 1rem; }
.footer address { font-style: normal; font-size: 1rem; line-height: 1.8; color: #fff; opacity: .85; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgb(var(--cream-rgb) / .2);
  display: inline-flex; align-items: center; justify-content: center; transition: background .3s var(--ease); }
.footer__social a:hover { background: rgb(var(--cream-rgb) / .1); }
.footer__social svg { width: 16px; height: 16px; }
.footer__base { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.8rem;
  border-top: 1px solid rgb(var(--cream-rgb) / .14);
  display: flex; flex-wrap: wrap; gap: .8rem 1.8rem; justify-content: space-between;
  font-size: .9rem; color: rgb(var(--cream-rgb) / .78); }
.footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* floating WhatsApp */
.wa {
  position: fixed; right: clamp(1rem, 2vw, 1.75rem); bottom: clamp(5.6rem, 8vw, 1.75rem);
  z-index: 800; width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgb(var(--shade-rgb) / .5);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.wa:hover { transform: translateY(-3px); background: var(--forest-deep); }
.wa svg { width: 24px; height: 24px; }

/* sticky mobile action rail */
.rail {
  position: fixed; inset: auto 0 0 0; z-index: 810;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--cream); border-top: 1px solid var(--line-soft);
  transform: translateY(101%); transition: transform .4s var(--ease);
}
.rail.is-visible { transform: translateY(0); }
.rail a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  padding: .7rem .4rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  text-decoration: none; color: var(--forest-deep);
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
}
.rail a + a { border-left: 1px solid var(--line-soft); }
.rail a:last-child { background: var(--forest); color: #fff; }
.rail svg { width: 17px; height: 17px; }
body.drawer-open .rail { transform: translateY(101%); }

/* utilities */
.stack > * + * { margin-top: 1.2rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.center { text-align: center; }
.vh { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal[data-delay="1"].is-in { transition-delay: .09s; }
.reveal[data-delay="2"].is-in { transition-delay: .18s; }
.reveal[data-delay="3"].is-in { transition-delay: .27s; }


/* -------------------------------------------------- 11 Aranya-pattern parts -- */
/* stats band — a short row of verifiable figures, not marketing numbers */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.stats__item { padding: 1.9rem 1.2rem 1.9rem 0; border-bottom: 1px solid var(--line); }
.stats__item:nth-child(odd) { border-right: 1px solid var(--line); padding-left: 0; }
.stats__item:nth-child(even) { padding-left: 1.6rem; }
.stats__n {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem); line-height: 1; letter-spacing: -.035em;
  color: var(--forest);
}
.stats__l {
  display: block; margin-top: .7rem; font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.section--forest .stats, .section--deep .stats { border-color: var(--line-light); }
.section--forest .stats__item, .section--deep .stats__item { border-color: var(--line-light); }
.section--forest .stats__n, .section--deep .stats__n { color: var(--accent-soft); }
.section--forest .stats__l, .section--deep .stats__l { color: #fff; opacity: .88; }

/* reasons grid — hairline cells, no boxes, no icons */
.reasons { display: grid; grid-template-columns: 1fr; gap: 0; }
.reason { padding: 1.7rem 0; border-top: 1px solid var(--line); }
.reason h3 {
  font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .19em; text-transform: uppercase; color: var(--forest);
}
.reason p { margin-top: .6rem; font-size: 1.02rem; color: var(--muted); }
.section--cream .reason { border-color: rgb(var(--forest-rgb) / .14); }
.section--forest .reason, .section--deep .reason { border-color: var(--line-light); }
.section--forest .reason h3, .section--deep .reason h3 { color: var(--accent-soft); }
.section--forest .reason p, .section--deep .reason p { color: #fff; opacity: .93; }

/* amenity chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li {
  font-size: .84rem; letter-spacing: .07em; color: var(--forest);
  border: 1px solid var(--line); padding: .55rem .95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.chips li:hover { border-color: var(--sage); background: rgb(var(--forest-rgb) / .04); }
.section--forest .chips li, .section--deep .chips li {
  color: var(--cream); border-color: var(--line-light);
}

/* map embed */
.map { border: 1px solid var(--line); background: var(--cream-deep); overflow: hidden; }
.map iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

@media (min-width: 600px) {
  .reasons { grid-template-columns: 1fr 1fr; column-gap: 2.6rem; }
}
@media (min-width: 860px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats__item { padding: 2.2rem 1.4rem; border-right: 1px solid var(--line); }
  .stats__item:first-child { padding-left: 0; }
  .stats__item:last-child { border-right: 0; }
  .stats__item:nth-child(odd), .stats__item:nth-child(even) { padding-left: 1.4rem; }
  .stats__item:first-child { padding-left: 0; }
  .reasons { grid-template-columns: repeat(3, 1fr); column-gap: 2.6rem; }
}


/* -------------------------------------------------- 12 Hero slider ---------- */
/* Crossfade with a slow Ken Burns push on the active slide. One image is visible
   at a time; only the first is preloaded. Fully disabled under reduced motion. */
.hero__stage { position: absolute; inset: 0; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.5s var(--ease);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__slide.is-active img { animation: kenburns 9s var(--ease) forwards; }
@keyframes kenburns {
  from { transform: scale(1.005); }
  to   { transform: scale(1.075); }
}

.hero__ui {
  position: absolute; z-index: 4; right: var(--gutter); bottom: 3rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero__dots { display: flex; gap: .6rem; }
.hero__dot {
  width: 34px; height: 2px; padding: 0; border: 0; cursor: pointer;
  background: rgb(255 255 255 / .35); position: relative; overflow: hidden;
  transition: background .3s var(--ease);
}
.hero__dot:hover { background: rgb(255 255 255 / .6); }
.hero__dot[aria-selected="true"] { background: rgb(255 255 255 / .35); }
.hero__dot[aria-selected="true"]::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  transform-origin: left; animation: dotfill var(--slide-ms, 6500ms) linear forwards;
}
@keyframes dotfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero__arrows { display: flex; gap: .5rem; }
.hero__arrow {
  width: 44px; height: 44px; border: 1px solid rgb(255 255 255 / .4);
  background: rgb(19 32 21 / .22); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.hero__arrow:hover { background: rgb(255 255 255 / .18); border-color: #fff; }
.hero__arrow svg { width: 15px; height: 15px; }

/* the page-hero variant reuses the same machinery at reduced height */
.phero__slides { position: absolute; inset: 0; }
.phero__slides .hero__slide img { opacity: .96; }
.phero .hero__ui { bottom: 1.6rem; }

@media (max-width: 599px) {
  .hero__ui { right: auto; left: var(--gutter); bottom: 1.4rem; }
  .hero__arrows { display: none; }
  .hero__dot { width: 26px; }
}

/* -------------------------------------------------- 13 Packages ------------- */
.pkg { display: grid; gap: 0; border-top: 1px solid var(--line); }
.pkgitem { border-bottom: 1px solid var(--line); }
.pkgitem__head {
  width: 100%; display: grid; gap: .6rem 1.5rem; align-items: baseline;
  padding: 1.8rem 0; background: none; border: 0; text-align: left; cursor: pointer;
  grid-template-columns: 1fr auto;
}
.pkgitem__head:hover h3 { color: var(--accent); }
.pkgitem__head h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); letter-spacing: -.028em;
  transition: color .3s var(--ease); }
.pkgitem__meta {
  display: flex; flex-wrap: wrap; gap: .4rem .9rem; margin-top: .5rem;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.pkgitem__lede { margin-top: .8rem; color: var(--muted); max-width: 54ch; }
.pkgitem__toggle {
  flex: none; width: 40px; height: 40px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--forest);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.pkgitem__head:hover .pkgitem__toggle { background: var(--forest); color: #fff; }
.pkgitem__toggle::before {
  content: ""; width: 13px; height: 13px; background: currentColor;
  transition: transform .35s var(--ease);
  clip-path: polygon(46% 0, 54% 0, 54% 46%, 100% 46%, 100% 54%, 54% 54%, 54% 100%, 46% 100%, 46% 54%, 0 54%, 0 46%, 46% 46%);
}
.pkgitem__head[aria-expanded="true"] .pkgitem__toggle::before { transform: rotate(135deg); }
.pkgitem__panel { display: none; padding-bottom: 2.2rem; }
.pkgitem__panel.is-open { display: grid; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: start; }
.pkgitem__cols { display: grid; gap: 2rem; }
.pkgitem__col h4 {
  font-family: var(--sans); font-size: .74rem; font-weight: 500; letter-spacing: .19em;
  text-transform: uppercase; color: var(--forest); margin-bottom: .9rem;
}
.pkgitem__col li {
  position: relative; padding-left: 1.5rem; margin-bottom: .55rem;
  color: var(--muted); font-size: 1.02rem;
}
.pkgitem__col li::before {
  content: ""; position: absolute; left: 0; top: .75em; width: 8px; height: 1px;
  background: var(--accent);
}
.pkgitem__col--out li::before { background: var(--muted); }
.pkgitem__rate {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem; border: 1px solid var(--line); background: var(--paper);
}
.pkgitem__rate b {
  font-family: var(--display); font-size: 1.16rem; font-weight: 700; letter-spacing: -.02em;
  color: var(--forest);
}
.pkgitem__rate span { font-size: .95rem; color: var(--muted); }

@media (min-width: 860px) {
  .pkgitem__panel.is-open { grid-template-columns: 1fr 1.4fr; }
  .pkgitem__cols { grid-template-columns: 1fr 1fr; }
}

/* -------------------------------------------------- 14 Booking flow -------- */
.book { display: grid; gap: clamp(1.6rem, 3vw, 2.6rem); }
.bookcard { border: 1px solid var(--line); background: var(--paper); padding: clamp(1.4rem, 2.6vw, 2.2rem); }
.bookcard__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-bottom: 1.2rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.bookcard__head h3 { font-size: clamp(1.18rem, 1.7vw, 1.45rem); letter-spacing: -.025em; }
.bookcard__step { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }

.summary { border-top: 1px solid var(--line); margin-top: 1.4rem; }
.summary div { display: flex; justify-content: space-between; gap: 1.2rem;
  padding: .8rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.02rem; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; color: var(--forest); text-align: right; }
.summary div.summary__total dt, .summary div.summary__total dd {
  font-family: var(--display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--forest-deep);
}

.notice {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: var(--cream); padding: 1.1rem 1.3rem;
}
.notice b { display: block; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .5rem; }
.notice p { font-size: 1rem; color: var(--muted); }
.notice--stop { border-left-color: var(--forest); }
.notice--stop b { color: var(--forest); }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .45; cursor: not-allowed; pointer-events: none;
}

/* -------------------------------------------------- 15 Activities ---------- */
.acts { display: grid; gap: 0; border-top: 1px solid var(--line); }
.act { display: grid; grid-template-columns: 1fr; gap: .35rem 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.act__k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.act h3 { font-size: clamp(1.06rem, 1.5vw, 1.28rem); letter-spacing: -.02em; }
.act p { color: var(--muted); font-size: 1.02rem; }
.section--forest .act, .section--deep .act { border-color: var(--line-light); }
.section--forest .act__k, .section--deep .act__k { color: var(--accent-soft); }

@media (min-width: 860px) {
  .act { grid-template-columns: 150px 1fr 1.5fr; align-items: start; }
}

/* clickable gallery figures anywhere on the site */
.lb-item { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
  position: relative; overflow: hidden; }
.lb-item::after {
  content: ""; position: absolute; inset: 0; background: rgb(var(--shade-rgb) / .18);
  opacity: 0; transition: opacity .35s var(--ease);
}
.lb-item:hover::after { opacity: 1; }
.lb-item__zoom {
  position: absolute; z-index: 2; inset: 50% auto auto 50%; transform: translate(-50%, -50%) scale(.85);
  width: 46px; height: 46px; border: 1px solid rgb(255 255 255 / .7); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.lb-item:hover .lb-item__zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.lb-item__zoom svg { width: 16px; height: 16px; }

/* lightbox counter */
.lightbox__count { position: absolute; top: clamp(1rem, 3vw, 2rem); left: clamp(1rem, 3vw, 2rem);
  color: #fff; opacity: .8; font-size: .84rem; letter-spacing: .18em; }


/* -------------------------------------------------- 16 CTA band ------------ */
.ctaband {
  position: relative; overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  color: #fff; background: var(--forest-deep);
  text-align: center;
}
.ctaband__media { position: absolute; inset: 0; }
.ctaband__media img { width: 100%; height: 100%; object-fit: cover; }
.ctaband__media::after {
  content: ""; position: absolute; inset: 0;
  /* green wash + edge falloff, so any photograph in the set stays legible */
  background:
    radial-gradient(120% 100% at 50% 50%, rgb(var(--shade-rgb) / .58) 0%, rgb(var(--shade-rgb) / .88) 100%),
    linear-gradient(180deg, rgb(47 74 52 / .58), rgb(47 74 52 / .66));
}
.ctaband__inner { position: relative; z-index: 2; }

.ctaband__eyebrow {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent-soft);
}
.ctaband__eyebrow::before, .ctaband__eyebrow::after {
  content: ""; width: 42px; height: 2px; background: currentColor;
}
.ctaband h2 {
  color: #fff; font-weight: 700; margin-top: 1.5rem; letter-spacing: -.035em;
  font-size: clamp(2rem, 3.9vw, 3.3rem); line-height: 1.08;
  max-width: 22ch; margin-inline: auto;
}
.ctaband p {
  color: #fff; opacity: .88; margin: 1.3rem auto 0;
  max-width: 46ch; font-size: var(--t-lede); text-wrap: balance;
}
.ctaband__actions {
  display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2.6rem;
}

/* pill buttons — only used on the CTA band, where the reference calls for them */
.pill {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: 1.05rem 2rem; border-radius: 999px;
  border: 1.5px solid rgb(255 255 255 / .55); background: transparent; color: #fff;
  font-family: var(--sans); font-size: 1rem; font-weight: 500; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; line-height: 1;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              color .35s var(--ease), transform .35s var(--ease);
}
.pill:hover { background: rgb(255 255 255 / .14); border-color: #fff; transform: translateY(-2px); }
.pill svg { width: 18px; height: 18px; flex: none; }
/* The reference amber (#c8901c) gives only 2.8:1 with white text. This is the
   brightest gold in the same hue that clears AA at 4.6:1. */
.pill--gold {
  background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 500;
}
.pill--gold:hover { background: #85600f; border-color: #85600f; color: #fff; transform: translateY(-2px); }
.pill:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 4px; }

@media (max-width: 599px) {
  .ctaband__actions { flex-direction: column; align-items: stretch; }
  .pill { justify-content: center; }
  .ctaband__eyebrow::before, .ctaband__eyebrow::after { width: 24px; }
}

/* -------------------------------------------------- 17 Wildlife list ------- */
.species { display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec {
  display: grid; grid-template-columns: 1fr auto; gap: .35rem 1.5rem;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line-soft); align-items: baseline;
}
.spec h3 { font-size: 1.08rem; letter-spacing: -.02em; }
.spec em { font-style: normal; color: var(--muted); font-size: .95rem; display: block; }
.spec__odds {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.spec__odds[data-odds="common"] { color: var(--forest); }
.spec__odds[data-odds="occasional"] { color: var(--accent); }
.spec__odds[data-odds="rare"] { color: var(--muted); }
.section--forest .species, .section--deep .species { border-color: var(--line-light); }
.section--forest .spec, .section--deep .spec { border-color: var(--line-light); }
.section--forest .spec em, .section--deep .spec em { color: #fff; opacity: .8; }
.section--forest .spec__odds, .section--deep .spec__odds { color: var(--accent-soft); }


/* -------------------------------------------------- 18 Dark-ground text ---- */
/*
 * Every component below sets its own colour (var(--muted), var(--forest)) for use
 * on light grounds. Those declarations are more specific than the section-level
 * `.section--forest p { color: #fff }` rule, so on a green ground they win and the
 * text goes dim — which is exactly what happened on the booking page.
 *
 * One inversion block, applied to every dark ground on the site, fixes all of them
 * and keeps working as new components are added.
 */
.section--forest,
.section--deep,
.ctaband,
.phero,
.footer {
  /* Only text tokens are inverted. --forest is NOT touched: these sections use
     it for their own background, so redefining it turns the section gold. */
  --muted: rgb(255 255 255 / .88);   /* secondary copy */
  --ink:   #ffffff;                  /* primary copy   */
  --line:      rgb(var(--cream-rgb) / .26);
  --line-soft: rgb(var(--cream-rgb) / .16);
}

/* Body copy on dark grounds: white, not tinted. */
.section--forest p, .section--deep p, .ctaband p, .phero p,
.section--forest li, .section--deep li,
.section--forest dd, .section--deep dd,
.section--forest .card p, .section--deep .card p,
.section--forest .flist__item p, .section--deep .flist__item p,
.section--forest .steps__item p, .section--deep .steps__item p,
.section--forest .reason p, .section--deep .reason p,
.section--forest .act p, .section--deep .act p,
.section--forest .spec em, .section--deep .spec em,
.section--forest .faq__answer p, .section--deep .faq__answer p,
.section--forest .property__lede, .section--deep .property__lede,
.section--forest .split__text p, .section--deep .split__text p,
.section--forest .section__head p, .section--deep .section__head p,
.section--forest .prose p, .section--deep .prose p,
.section--forest .byline, .section--deep .byline,
.section--forest .jitem p, .section--deep .jitem p {
  color: #fff; opacity: .9;
}

/* Small caps labels and headings stay full strength. */
.section--forest h1, .section--forest h2, .section--forest h3, .section--forest h4,
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4,
.section--forest .prose > p:first-of-type, .section--deep .prose > p:first-of-type,
.section--forest strong, .section--deep strong, .ctaband strong {
  color: #fff; opacity: 1;
}
.section--forest .flist__item h3, .section--deep .flist__item h3,
.section--forest .flist__item h4, .section--deep .flist__item h4,
.section--forest .reason h3, .section--deep .reason h3,
.section--forest .steps__item h3, .section--deep .steps__item h3,
.section--forest .act__k, .section--deep .act__k,
.section--forest .label, .section--deep .label,
.section--forest .facts dt, .section--deep .facts dt,
.section--forest .spec__odds, .section--deep .spec__odds,
.section--forest .byline b, .section--deep .byline b,
.section--forest .card__more, .section--deep .card__more {
  color: var(--accent-soft); opacity: 1;
}

/* Numbered sequences and list bullets. */
.section--forest .steps__item::before, .section--deep .steps__item::before,
.section--forest .prose ul li::before, .section--deep .prose ul li::before {
  color: var(--accent-soft); background: var(--accent-soft);
}
.section--forest .steps__item::before, .section--deep .steps__item::before { background: none; }

/* The verification stamp sits on green in several places. */
.section--forest .stamp, .section--deep .stamp {
  background: rgb(255 255 255 / .06); border-color: rgb(var(--cream-rgb) / .3);
}
.section--forest .stamp span, .section--deep .stamp span { color: #fff; opacity: .9; }
.section--forest .stamp b, .section--deep .stamp b { color: var(--accent-soft); }

/* Links inside prose on green. */
.section--forest .prose a, .section--deep .prose a {
  color: #fff; text-decoration-color: var(--accent-soft);
}

/* Ghost buttons and text links inherit the inverted tokens correctly. */
.section--forest .btn--ghost, .section--deep .btn--ghost {
  --btn-fg: #fff; --btn-bd: rgb(255 255 255 / .45);
}
.section--forest .btn--ghost:hover, .section--deep .btn--ghost:hover {
  --btn-bg: #fff; --btn-fg: var(--forest-deep); --btn-bd: #fff;
}
.section--forest .tlink, .section--deep .tlink {
  color: #fff; border-color: rgb(255 255 255 / .4);
}
.section--forest .tlink:hover, .section--deep .tlink:hover {
  color: var(--accent-soft); border-color: var(--accent-soft);
}

/* Chips on green. */
.section--forest .chips li, .section--deep .chips li,
.section--forest .property__list li, .section--deep .property__list li {
  color: #fff; border-color: rgb(255 255 255 / .35);
}

/* FAQ blocks rendered on a green ground. */
.section--forest .faq summary, .section--deep .faq summary { color: #fff; }
.section--forest .faq summary:hover, .section--deep .faq summary:hover { color: var(--accent-soft); }
.section--forest .faq details, .section--deep .faq details,
.section--forest .faq, .section--deep .faq { border-color: rgb(var(--cream-rgb) / .26); }

/* Page-hero breadcrumbs and lede. */
.phero .crumbs li, .phero .crumbs a { color: #fff; }

/* -------------------------------------------------- responsive ----------- */
@media (min-width: 600px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .form__row--2 { grid-template-columns: 1fr 1fr; }
  .jitem { grid-template-columns: 250px 1fr; gap: 2rem; align-items: center; }
  .masonry { columns: 2; }
}

@media (min-width: 860px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .masonry { columns: 3; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.25fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.25fr; }
  .split--offset .split__text { padding-left: clamp(0rem, 3vw, 3rem); }
  .property { grid-template-columns: 1.15fr 1fr; }
  .property--flip .plate { order: 2; }
  .hero__scroll { display: flex; }
  .jitem { grid-template-columns: 320px 1fr; gap: 2.8rem; }
}

@media (min-width: 1080px) {
  .nav { display: block; }
  .header__cta { display: flex; }
  .burger { display: none; }
  .drawer { display: none; }
  .rail { display: none; }
  .masonry { columns: 4; }
  .split--3070 { grid-template-columns: 1fr 1.6fr; align-items: start; }
}

@media (max-width: 1079px) {
  /* the action rail already carries WhatsApp on small screens — one entry point, not two */
  .wa { display: none; }
}

@media (max-width: 599px) {
  :root { --header-h: 72px; }
  .hero { min-height: 92svh; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .quote { max-width: none; }
  .facts div { flex-direction: column; gap: .3rem; }
  .facts dd { text-align: left; }
  .facts dt { max-width: none; }
  .brand__mark { height: 34px; }
}

/* -------------------------------------------------- motion --------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll::after { animation: none; }
  .hero__slide.is-active img { animation: none; }
  .hero__dot[aria-selected="true"]::after { animation: none; transform: scaleX(1); }
}

/* -------------------------------------------------- print ---------------- */
@media print {
  .header, .drawer, .rail, .wa, .hero__scroll, .gfilters { display: none !important; }
  body { background: #fff; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}
