@charset "UTF-8";
/* ==========================================================================
   Travel Darjeeling - design system
   Hand written, no framework. Palette is sampled from the client's logo.
   Order: tokens > reset > type > layout > components > pages > utilities
   ========================================================================== */

/* --------------------------------------------------------------- fonts -- */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-var-latin.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jakarta';
  src: url('/assets/fonts/jakarta-var-latin.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* -------------------------------------------------------------- tokens -- */
:root {
  /* brand - sampled from the supplied logo */
  --forest-900: #052A11;
  --forest-800: #083A18;
  --forest-700: #0C4C1F;
  --forest-600: #12652A;
  --forest-500: #1C8038;
  --forest-300: #7FBF92;
  --forest-100: #DCEDE1;

  --gold-700: #8A6316;
  --gold-600: #B0821F;
  --gold-500: #D3A02B;
  --gold-300: #EFCE7F;
  --gold-100: #FAF0D6;

  --clay-600: #A8331C;
  --clay-500: #C4402A;

  /* neutrals - warm, paper-like */
  --ink: #12211A;
  --ink-2: #2E4137;
  --muted: #5D7167;
  --muted-2: #84968C;
  --line: rgb(18 33 26 / 10%);
  --line-strong: rgb(18 33 26 / 18%);
  --paper: #FBFAF6;
  --paper-2: #F4F2EA;
  --mist: #EAF1EB;
  --surface: #FFFFFF;

  /* effects */
  --r-xs: 8px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --pill: 999px;

  --sh-1: 0 1px 2px rgb(18 33 26 / 5%), 0 4px 14px -6px rgb(18 33 26 / 10%);
  --sh-2: 0 2px 4px rgb(18 33 26 / 4%), 0 14px 34px -14px rgb(18 33 26 / 18%);
  --sh-3: 0 4px 10px rgb(18 33 26 / 6%), 0 30px 60px -28px rgb(18 33 26 / 30%);
  --sh-glow: 0 18px 40px -18px rgb(12 76 31 / 45%);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* layout */
  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 7.5rem);
  --header-h: 94px;

  /* type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Jakarta', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

@media (max-width: 900px) { :root { --header-h: 74px; } }

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  overflow-x: clip;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:where(p, li) { text-wrap: pretty; }

::selection { background: var(--forest-700); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--forest-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -120%;
  z-index: 200;
  background: var(--forest-700);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  transition: translate .2s var(--ease);
}
.skip-link:focus { translate: -50% 0; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------- typography -- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
  text-wrap: balance;
}

.display   { font-size: clamp(2.7rem, 6.2vw, 4.6rem); line-height: 1.02; letter-spacing: -.028em; }
h1, .h1    { font-size: clamp(2.25rem, 4.6vw, 3.5rem); letter-spacing: -.024em; }
h2, .h2    { font-size: clamp(1.85rem, 3.4vw, 2.75rem); letter-spacing: -.02em; }
h3, .h3    { font-size: clamp(1.2rem, 1.7vw, 1.45rem); line-height: 1.24; letter-spacing: -.012em; }
h4, .h4    { font-size: 1.05rem; line-height: 1.3; }

.lead {
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
  flex: none;
}
.eyebrow--center::after {
  content: '';
  width: 28px; height: 1.5px;
  background: linear-gradient(270deg, transparent, var(--gold-500));
  flex: none;
}
.eyebrow--light { color: var(--gold-300); }
.eyebrow--light::before, .eyebrow--light::after { background: linear-gradient(90deg, transparent, var(--gold-300)); }

/* --------------------------------------------------------------- layout -- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }
.container--wide { max-width: 1400px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section--paper { background: var(--paper-2); }
.section--mist { background: var(--mist); }
.section--dark { background: var(--forest-900); color: rgb(255 255 255 / 82%); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 660px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head > * + * { margin-top: .85rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.section-head--split .section-head__text { max-width: 620px; }
.section-head--split .section-head__text > * + * { margin-top: .85rem; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr)); }

/* topographic texture used behind a few light sections */
.topo::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='560' viewBox='0 0 560 560'%3E%3Cg fill='none' stroke='%230C4C1F' stroke-opacity='.07' stroke-width='1'%3E%3Cpath d='M-40 300c90-70 180-20 260-70s150-120 250-90 130 120 130 120'/%3E%3Cpath d='M-40 350c90-70 180-20 260-70s150-120 250-90 130 120 130 120'/%3E%3Cpath d='M-40 400c90-70 180-20 260-70s150-120 250-90 130 120 130 120'/%3E%3Cpath d='M-40 450c90-70 180-20 260-70s150-120 250-90 130 120 130 120'/%3E%3Cpath d='M-40 500c90-70 180-20 260-70s150-120 250-90 130 120 130 120'/%3E%3Cpath d='M-40 550c90-70 180-20 260-70s150-120 250-90 130 120 130 120'/%3E%3C/g%3E%3C/svg%3E");
}

/* -------------------------------------------------------------- buttons -- */
.btn {
  --btn-bg: var(--forest-700);
  --btn-fg: #fff;
  --btn-bd: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .92rem 1.5rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out),
              background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn .icon { flex: none; transition: transform .3s var(--ease-out); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: var(--sh-glow); }
.btn--primary:hover { --btn-bg: var(--forest-600); box-shadow: 0 22px 44px -18px rgb(12 76 31 / 60%); }
.btn--primary:hover .icon:last-child { transform: translateX(3px); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bd: var(--forest-600); --btn-fg: var(--forest-700); background: rgb(12 76 31 / 4%); }

.btn--light { --btn-bg: rgb(255 255 255 / 12%); --btn-fg: #fff; --btn-bd: rgb(255 255 255 / 34%); backdrop-filter: blur(10px); }
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--forest-800); --btn-bd: #fff; }

.btn--gold { --btn-bg: var(--gold-500); --btn-fg: #241a03; box-shadow: 0 18px 38px -18px rgb(211 160 43 / 65%); }
.btn--gold:hover { --btn-bg: var(--gold-300); }

.btn--wa { --btn-bg: #1FA855; --btn-fg: #fff; box-shadow: 0 18px 38px -18px rgb(31 168 85 / 55%); }
.btn--wa:hover { --btn-bg: #17904a; }

.btn--sm { padding: .62rem 1.05rem; font-size: .84rem; }
.btn--lg { padding: 1.06rem 1.9rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* text link with an arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--forest-700);
  transition: gap .25s var(--ease-out), color .2s var(--ease);
}
.link-arrow .icon { transition: transform .28s var(--ease-out); }
.link-arrow:hover { color: var(--forest-600); gap: .7rem; }
.link-arrow--light { color: var(--gold-300); }
.link-arrow--light:hover { color: #fff; }

/* ---------------------------------------------------------------- chips -- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .34rem .72rem;
  border-radius: var(--pill);
  background: var(--forest-100);
  color: var(--forest-800);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.35;
  white-space: nowrap;
}
.chip .icon { flex: none; }
.chip--gold { background: var(--gold-100); color: var(--gold-700); }
.chip--outline { background: transparent; border: 1px solid var(--line-strong); color: var(--muted); }
.chip--solid { background: var(--forest-700); color: #fff; }
.chip--demo { background: rgb(196 64 42 / 10%); color: var(--clay-600); }
.chip--glass {
  background: rgb(8 22 14 / 42%);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgb(255 255 255 / 22%);
}

.chip-row { display: flex; flex-wrap: wrap; gap: .45rem; }

/* -------------------------------------------------------------- top bar -- */
.topbar {
  background: var(--forest-900);
  color: rgb(255 255 255 / 76%);
  font-size: .82rem;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding-block: .3rem;
}
.topbar__links { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: color .2s var(--ease);
}
.topbar a:hover { color: var(--gold-300); }
.topbar .icon { color: var(--gold-500); flex: none; }
.topbar__note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgb(255 255 255 / 55%);
  font-size: .78rem;
  letter-spacing: .01em;
}
@media (max-width: 780px) {
  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__links { gap: 1.1rem; font-size: .78rem; }
}

/* --------------------------------------------------------------- header -- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgb(251 250 246 / 88%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 10px 30px -22px rgb(18 33 26 / 55%); background: rgb(251 250 246 / 96%); }

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  min-height: var(--header-h);
  transition: min-height .3s var(--ease);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
.brand img { width: auto; height: 70px; transition: height .3s var(--ease); }
.header.is-stuck .brand img { height: 56px; }
.brand__text { display: none; }
@media (max-width: 900px) { .brand img { height: 54px; } .header.is-stuck .brand img { height: 48px; } }

/* desktop nav */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(.2rem, 1.1vw, 1rem); }
.nav__link {
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem .72rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-xs);
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: .72rem; right: .72rem; bottom: .28rem;
  height: 1.5px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__link:hover, .nav__link[aria-current="page"], .nav__item.is-open > .nav__link { color: var(--forest-700); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link .icon { transition: transform .25s var(--ease); opacity: .6; }
.nav__item.is-open > .nav__link .icon { transform: rotate(180deg); }

.nav__item { position: relative; }
.nav__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 520px;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .24s var(--ease), transform .24s var(--ease-out), visibility .24s;
}
.nav__item.is-open > .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem; }
.nav__panel-link {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .62rem .8rem;
  border-radius: var(--r-sm);
  transition: background-color .18s var(--ease);
}
.nav__panel-link strong { font-size: .92rem; font-weight: 600; color: var(--ink); }
.nav__panel-link span { font-size: .78rem; color: var(--muted); }
.nav__panel-link:hover { background: var(--mist); }
.nav__panel-foot {
  margin-top: .6rem;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-inline: .8rem;
}
.nav__panel-foot span { font-size: .8rem; color: var(--muted); }

.header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }
@media (max-width: 1080px) { .nav, .header__actions .btn--ghost { display: none; } }
@media (max-width: 620px) { .header__actions .btn { display: none; } }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.nav-toggle:hover { background: var(--mist); border-color: var(--forest-600); }
@media (max-width: 1080px) { .nav-toggle { display: inline-flex; margin-left: auto; } }

/* ------------------------------------------------------- mobile drawer -- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgb(5 42 17 / 45%);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 120;
  width: min(400px, 88vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -30px 0 60px -30px rgb(5 42 17 / 45%);
  transform: translateX(102%);
  transition: transform .42s var(--ease-out);
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid var(--line);
  flex: none;
}
.drawer__head img { height: 46px; width: auto; }
.drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  transition: background-color .2s var(--ease);
}
.drawer__close:hover { background: var(--mist); }

.drawer__body { flex: 1; overflow-y: auto; padding: 1.1rem var(--gutter) 2rem; }
.drawer__nav > li + li { border-top: 1px solid var(--line); }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem .2rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.drawer__link .icon { color: var(--muted); transition: transform .28s var(--ease); flex: none; }
.drawer__link[aria-expanded="true"] .icon { transform: rotate(180deg); }
.drawer__link[aria-current="page"] { color: var(--forest-700); }

.drawer__sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease-out); }
.drawer__sub.is-open { grid-template-rows: 1fr; }
.drawer__sub > div { overflow: hidden; }
.drawer__sub a {
  display: block;
  padding: .58rem .2rem .58rem 1rem;
  font-size: .95rem;
  color: var(--muted);
  border-left: 2px solid var(--line);
}
.drawer__sub a:hover { color: var(--forest-700); border-color: var(--forest-500); }
.drawer__sub > div > div { padding-bottom: .8rem; }

.drawer__foot { padding: 1.2rem var(--gutter) calc(1.4rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); flex: none; display: grid; gap: .6rem; }
.drawer__contact { display: grid; gap: .5rem; margin-top: .4rem; }
.drawer__contact a { display: inline-flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--muted); }
.drawer__contact .icon { color: var(--forest-600); flex: none; }

body.no-scroll { overflow: hidden; }

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(9rem, 16vw, 13rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(4 24 12 / 62%) 0%, rgb(4 24 12 / 30%) 32%, rgb(4 24 12 / 55%) 72%, rgb(5 42 17 / 88%) 100%),
    linear-gradient(100deg, rgb(4 24 12 / 66%) 0%, rgb(4 24 12 / 12%) 58%);
}
.hero__inner { max-width: 720px; }
.hero__inner > * + * { margin-top: 1.35rem; }
.hero .display { color: #fff; text-shadow: 0 2px 30px rgb(3 20 10 / 40%); }
.hero .display em {
  font-style: normal;
  color: var(--gold-300);
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
}
.hero__lead {
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
  color: rgb(255 255 255 / 84%);
  max-width: 56ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; padding-top: .5rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .55rem;
  padding-top: 1.4rem;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: clamp(7.5rem, 13vw, 10.5rem);
  translate: -50% 0;
  display: grid;
  place-items: center;
  width: 34px; height: 52px;
  border: 1.5px solid rgb(255 255 255 / 34%);
  border-radius: var(--pill);
  z-index: 1;
}
.hero__scroll::after {
  content: '';
  width: 4px; height: 8px;
  border-radius: var(--pill);
  background: var(--gold-300);
  animation: scrollDot 2.1s var(--ease) infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(-8px); opacity: 0; }
  35%, 65% { opacity: 1; }
  80% { transform: translateY(9px); opacity: 0; }
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* page hero used on interior pages */
.page-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.2rem, 7vw, 5.5rem);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgb(5 30 15 / 74%), rgb(5 34 16 / 62%) 45%, rgb(5 42 17 / 86%));
}
.page-hero__inner { max-width: 760px; }
.page-hero__inner > * + * { margin-top: 1rem; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgb(255 255 255 / 82%); font-size: clamp(1rem, 1.3vw, 1.12rem); max-width: 60ch; }

/* -------------------------------------------------------- breadcrumbs --- */
.crumbs { font-size: .82rem; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .2rem .45rem; }
.crumbs li { display: inline-flex; align-items: center; gap: .45rem; color: rgb(255 255 255 / 62%); }
.crumbs a { color: rgb(255 255 255 / 78%); transition: color .2s var(--ease); }
.crumbs a:hover { color: var(--gold-300); }
.crumbs .icon { opacity: .45; }
.crumbs [aria-current] { color: #fff; font-weight: 500; }
.crumbs--dark li { color: var(--muted); }
.crumbs--dark a { color: var(--muted); }
.crumbs--dark a:hover { color: var(--forest-700); }
.crumbs--dark [aria-current] { color: var(--ink); }

/* --------------------------------------------------- quick enquiry card -- */
.enquiry-float { margin-top: clamp(-8rem, -11vw, -6rem); position: relative; z-index: 5; }

.enquiry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}
.enquiry-card__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: .8rem 1.5rem; margin-bottom: 1.3rem; }
.enquiry-card__head h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.enquiry-card__head p { font-size: .9rem; color: var(--muted); margin-top: .3rem; }
.enquiry-card__badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--forest-700); font-weight: 600; }
.enquiry-card__badge .icon { color: var(--gold-600); }

/* ---------------------------------------------------------------- forms -- */
.field { display: grid; gap: .38rem; }
.field > label, .field-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .005em;
}
.field-label .req { color: var(--clay-500); }

.control {
  width: 100%;
  padding: .78rem .95rem;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-size: .93rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
  min-height: 46px;
}
.control::placeholder { color: #9AA9A0; }
.control:hover { border-color: rgb(18 33 26 / 28%); }
.control:focus {
  outline: none;
  border-color: var(--forest-600);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgb(28 128 56 / 12%);
}
textarea.control { min-height: 108px; resize: vertical; line-height: 1.55; }

select.control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235D7167' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2.4rem;
}
.control[type="date"] { position: relative; }
.control[type="date"]::-webkit-calendar-picker-indicator { opacity: .55; cursor: pointer; }

.field__error {
  display: none;
  font-size: .77rem;
  color: var(--clay-600);
  font-weight: 500;
}
.field.has-error .control { border-color: var(--clay-500); background: rgb(196 64 42 / 4%); }
.field.has-error .field__error { display: block; }

.form-grid { display: grid; gap: .9rem 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.form-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.col-span-full { grid-column: 1 / -1; }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .9rem; margin-top: 1.2rem; }
.form-note { font-size: .78rem; color: var(--muted); max-width: 46ch; line-height: 1.5; }

.radio-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s var(--ease);
  cursor: pointer;
}
.radio-pill input:checked + span { border-color: var(--forest-600); background: var(--forest-100); color: var(--forest-800); font-weight: 600; }
.radio-pill input:focus-visible + span { outline: 2.5px solid var(--forest-600); outline-offset: 2px; }

.form-status {
  display: none;
  gap: .8rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  line-height: 1.55;
}
.form-status.is-visible { display: flex; }
.form-status--ok { background: var(--forest-100); color: var(--forest-800); border: 1px solid rgb(28 128 56 / 22%); }
.form-status--err { background: rgb(196 64 42 / 8%); color: var(--clay-600); border: 1px solid rgb(196 64 42 / 22%); }
.form-status .icon { flex: none; margin-top: .1rem; }
.form-status strong { display: block; font-weight: 700; margin-bottom: .1rem; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------------------------------------------------- destination cards -- */
/* Editorial bento: two large cards, then a row of three, then a wide banner.
   Every row fills the six columns exactly, so there are never trailing gaps. */
.dest-grid {
  display: grid;
  gap: clamp(.85rem, 1.6vw, 1.25rem);
  grid-template-columns: repeat(6, 1fr);
}
.dest-grid > * { grid-column: span 2; }
.dest-grid > .dest-card--half { grid-column: span 3; }
.dest-grid > .dest-card--wide { grid-column: span 6; }

@media (max-width: 980px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid > *,
  .dest-grid > .dest-card--half { grid-column: span 1; }
  .dest-grid > .dest-card--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-grid > *,
  .dest-grid > .dest-card--half,
  .dest-grid > .dest-card--wide { grid-column: span 1; }
}

.dest-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--forest-900);
  isolation: isolate;
  min-height: 290px;
  color: #fff;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.dest-card--half { min-height: 380px; }
.dest-card--wide { min-height: 260px; }
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }

.dest-card picture, .dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; }
.dest-card img { object-fit: cover; transition: transform 1.1s var(--ease-out), filter .5s var(--ease); }
.dest-card:hover img { transform: scale(1.07); }
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgb(4 24 12 / 0%) 30%, rgb(4 24 12 / 58%) 68%, rgb(4 24 12 / 90%) 100%);
  transition: opacity .4s var(--ease);
}
.dest-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .45rem;
  padding: clamp(1.1rem, 2vw, 1.6rem);
}
.dest-card__region {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.dest-card h3 { color: #fff; font-size: clamp(1.25rem, 2vw, 1.6rem); }
.dest-card--half h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.dest-card--wide .dest-card__body { max-width: 640px; }
.dest-card--wide p { -webkit-line-clamp: 3; }
.dest-card p {
  font-size: .875rem;
  color: rgb(255 255 255 / 78%);
  line-height: 1.5;
  max-width: 42ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .3rem;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
}
.dest-card__cta .icon { transition: transform .3s var(--ease-out); }
.dest-card:hover .dest-card__cta .icon { transform: translateX(4px); }

/* plain destination tile used on /destinations */
.dest-tile {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s var(--ease);
  height: 100%;
}
.dest-tile:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: rgb(12 76 31 / 20%); }
.dest-tile__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--mist); }
.dest-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.dest-tile:hover .dest-tile__media img { transform: scale(1.06); }
.dest-tile__media .chip { position: absolute; left: .85rem; top: .85rem; }
.dest-tile__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.dest-tile__body h3 { font-size: 1.3rem; }
.dest-tile__body p { font-size: .88rem; color: var(--muted); line-height: 1.55; }
.dest-tile__meta { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--muted); }
.dest-tile__foot { margin-top: auto; padding-top: .9rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); }

/* -------------------------------------------------------- package cards -- */
.pkg-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: rgb(12 76 31 / 18%); }

.pkg-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--mist); }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.pkg-card:hover .pkg-card__media img { transform: scale(1.06); }
.pkg-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgb(4 24 12 / 30%) 0%, transparent 42%, rgb(4 24 12 / 12%) 100%);
}
.pkg-card__badges { position: absolute; inset: .85rem .85rem auto; display: flex; justify-content: space-between; gap: .5rem; z-index: 2; }
.pkg-card__duration {
  position: absolute;
  left: .85rem; bottom: .85rem;
  z-index: 2;
}

.pkg-card__body { display: flex; flex-direction: column; gap: .6rem; padding: 1.15rem 1.25rem 0; flex: 1; }
.pkg-card__where { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-700); }
.pkg-card__where .icon { color: var(--gold-600); }
.pkg-card h3 { font-size: 1.28rem; }
.pkg-card h3 a { transition: color .2s var(--ease); }
.pkg-card h3 a:hover { color: var(--forest-700); }
.pkg-card__summary {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-card__points { display: grid; gap: .35rem; margin-top: .15rem; }
.pkg-card__points li { display: flex; gap: .5rem; font-size: .83rem; color: var(--ink-2); line-height: 1.45; }
.pkg-card__points .icon { color: var(--forest-500); flex: none; margin-top: .1rem; }

.pkg-card__foot {
  margin-top: auto;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}
.pkg-card__price { display: grid; gap: .05rem; }
.pkg-card__price span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.pkg-card__price strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.pkg-card__actions { display: flex; gap: .45rem; }

/* horizontal rail on small screens */
.rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 720px) {
  .rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84vw);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: .8rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scrollbar-width: thin;
  }
  .rail > * { scroll-snap-align: start; }
}

/* ------------------------------------------------------------ why us ---- */
.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) { .feature-split { grid-template-columns: 1fr; } }

.collage { position: relative; }
.collage__main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 4 / 5; }
.collage__main img { width: 100%; height: 100%; object-fit: cover; }
.collage__sub {
  position: absolute;
  right: clamp(-1.5rem, -2vw, -1rem);
  bottom: clamp(-1.5rem, -3vw, -2rem);
  width: 46%;
  border-radius: var(--r); overflow: hidden;
  border: 5px solid var(--paper);
  box-shadow: var(--sh-3);
  aspect-ratio: 1;
}
.collage__sub img { width: 100%; height: 100%; object-fit: cover; }
.collage__stat {
  position: absolute;
  left: clamp(-1rem, -2vw, -.5rem);
  top: 8%;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1.1rem;
  background: var(--surface);
  border-radius: var(--pill);
  box-shadow: var(--sh-2);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
}
.collage__stat .icon { color: var(--gold-600); flex: none; }
@media (max-width: 940px) { .collage { max-width: 520px; margin-inline: auto; } }

.value-list { display: grid; gap: .2rem; margin-top: 1.8rem; }
.value-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.value-item:last-child { border-bottom: 1px solid var(--line); }
.value-item__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--forest-100);
  color: var(--forest-700);
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease-out);
}
.value-item:hover .value-item__icon { background: var(--forest-700); color: #fff; transform: rotate(-4deg); }
.value-item h3 { font-size: 1.02rem; margin-bottom: .18rem; }
.value-item p { font-size: .87rem; color: var(--muted); line-height: 1.55; }

/* value cards variant (grid) */
.value-card {
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s var(--ease);
  height: 100%;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgb(12 76 31 / 18%); }
.value-card__icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--forest-100), #fff);
  border: 1px solid rgb(12 76 31 / 12%);
  color: var(--forest-700);
  margin-bottom: 1.05rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.value-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.value-card__points { display: grid; gap: .4rem; margin-top: .95rem; padding-top: .95rem; border-top: 1px solid var(--line); }
.value-card__points li { display: flex; gap: .5rem; font-size: .82rem; color: var(--ink-2); line-height: 1.45; }
.value-card__points .icon { color: var(--forest-500); flex: none; margin-top: .12rem; }

/* -------------------------------------------------------- how it works -- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, rgb(211 160 43 / 55%) 0 8px, transparent 8px 16px);
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; text-align: center; }
.step__badge {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  border-radius: var(--pill);
  background: var(--surface);
  border: 1.5px solid rgb(211 160 43 / 45%);
  color: var(--forest-700);
  box-shadow: 0 8px 22px -14px rgb(18 33 26 / 45%);
  transition: transform .4s var(--ease-out), background-color .3s var(--ease), color .3s var(--ease);
}
.step:hover .step__badge { background: var(--forest-700); color: #fff; transform: translateY(-4px); border-color: var(--forest-700); }
.step__n {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: .1em;
  display: block;
  margin-bottom: .45rem;
}
.step h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.step p { font-size: .87rem; color: var(--muted); line-height: 1.6; max-width: 30ch; margin-inline: auto; }

/* ------------------------------------------------------- travel types --- */
.type-card {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 220px;
  isolation: isolate;
  color: #fff;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.type-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.type-card picture, .type-card img { position: absolute; inset: 0; width: 100%; height: 100%; }
.type-card img { object-fit: cover; transition: transform 1s var(--ease-out); }
.type-card:hover img { transform: scale(1.07); }
.type-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgb(5 42 17 / 20%), rgb(4 24 12 / 82%));
}
.type-card__body { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.15rem; gap: .3rem; }
.type-card__icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgb(255 255 255 / 14%);
  border: 1px solid rgb(255 255 255 / 22%);
  backdrop-filter: blur(6px);
  color: var(--gold-300);
  margin-bottom: .55rem;
}
.type-card h3 { color: #fff; font-size: 1.12rem; }
.type-card p { font-size: .82rem; color: rgb(255 255 255 / 76%); line-height: 1.5; }

/* -------------------------------------------------------- testimonials -- */
.quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  height: 100%;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.quote-card__mark { color: var(--gold-300); }
.quote-card blockquote { font-size: .96rem; line-height: 1.68; color: var(--ink-2); }
.quote-card__by { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.quote-card__by strong { display: block; font-size: .87rem; color: var(--ink); font-weight: 600; }
.quote-card__by span { font-size: .79rem; color: var(--muted); }

.demo-note {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .85rem 1.05rem;
  border: 1px dashed rgb(196 64 42 / 35%);
  border-radius: var(--r-sm);
  background: rgb(196 64 42 / 4%);
  font-size: .82rem;
  color: var(--clay-600);
  line-height: 1.55;
  margin-bottom: 1.6rem;
}
.demo-note .icon { flex: none; margin-top: .12rem; }

.placeholder-panel {
  display: grid;
  place-items: center;
  gap: .8rem;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.placeholder-panel .icon { color: var(--muted); }
.placeholder-panel p { font-size: .92rem; color: var(--muted); max-width: 46ch; }

/* ------------------------------------------------------------- gallery -- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  gap: clamp(.6rem, 1.2vw, .9rem);
}
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--mist);
  cursor: zoom-in;
}
.gallery-item:nth-child(8n + 1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
@media (max-width: 560px) { .gallery-item:nth-child(8n + 1) { grid-column: span 1; grid-row: span 1; } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(4 24 12 / 62%));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item__cap {
  position: absolute;
  inset: auto .8rem .8rem;
  z-index: 2;
  font-size: .78rem;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease-out);
}
.gallery-item:hover .gallery-item__cap { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgb(4 20 10 / 92%);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 82vh; border-radius: var(--r); object-fit: contain; }
.lightbox__cap { margin-top: 1rem; text-align: center; color: rgb(255 255 255 / 78%); font-size: .85rem; max-width: 60ch; }
.lightbox__btn {
  position: absolute;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: var(--pill);
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 25%);
  color: #fff;
  transition: background-color .2s var(--ease);
}
.lightbox__btn:hover { background: rgb(255 255 255 / 26%); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__prev { left: clamp(.5rem, 2vw, 2rem); top: 50%; translate: 0 -50%; }
.lightbox__next { right: clamp(.5rem, 2vw, 2rem); top: 50%; translate: 0 -50%; }

/* ---------------------------------------------------------------- CTA --- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-xl);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
}
.cta-band picture, .cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.cta-band img { object-fit: cover; }
.cta-band::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgb(5 42 17 / 94%) 12%, rgb(5 42 17 / 74%) 55%, rgb(5 42 17 / 40%));
}
.cta-band__inner { max-width: 620px; }
.cta-band__inner > * + * { margin-top: 1rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgb(255 255 255 / 82%); }
.cta-band .btn-row { padding-top: .6rem; }

/* --------------------------------------------------------------- FAQ ---- */
.faq-list { display: grid; gap: .6rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item.is-open { border-color: rgb(12 76 31 / 25%); box-shadow: var(--sh-1); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  padding: 1.1rem 1.3rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.faq-q .icon { flex: none; color: var(--forest-600); transition: transform .35s var(--ease-out); }
.faq-item.is-open .faq-q .icon { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease-out); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 1.3rem 1.25rem; font-size: .92rem; color: var(--muted); line-height: 1.68; max-width: 68ch; }

/* ------------------------------------------------------------- footer --- */
.footer { background: var(--forest-900); color: rgb(255 255 255 / 68%); padding-top: clamp(3rem, 6vw, 5rem); }
.footer a { transition: color .2s var(--ease); }
.footer a:hover { color: var(--gold-300); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 940px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.1rem; }
.footer__brand img { width: 54px; height: 54px; border-radius: var(--pill); flex: none; }
.footer__brand strong { display: block; font-family: var(--font-display); font-size: 1.28rem; color: #fff; letter-spacing: -.01em; line-height: 1.15; }
.footer__brand span { font-size: .78rem; color: var(--gold-300); letter-spacing: .06em; }
.footer__about { font-size: .875rem; line-height: 1.68; max-width: 42ch; }

.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.05rem;
}
.footer__links { display: grid; gap: .58rem; font-size: .88rem; }
.footer__contact { display: grid; gap: .85rem; font-size: .88rem; }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact .icon { color: var(--gold-500); flex: none; margin-top: .15rem; }
.footer__contact small { display: block; font-size: .74rem; color: rgb(255 255 255 / 45%); margin-top: .1rem; }

.footer__social { display: flex; gap: .55rem; margin-top: 1.2rem; }
.footer__social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--pill);
  border: 1px solid rgb(255 255 255 / 16%);
  color: rgb(255 255 255 / 76%);
  transition: all .25s var(--ease);
}
.footer__social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--forest-900); }

.footer__bar {
  border-top: 1px solid rgb(255 255 255 / 10%);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem 1.5rem;
  font-size: .8rem;
  color: rgb(255 255 255 / 52%);
}
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ------------------------------------------------- floating WhatsApp ---- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .82rem 1.15rem .82rem .95rem;
  border-radius: var(--pill);
  background: #1FA855;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 14px 34px -12px rgb(31 168 85 / 60%);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease), background-color .2s var(--ease);
}
.wa-float.is-shown { transform: translateY(0); opacity: 1; }
.wa-float:hover { background: #17904a; }
.wa-float .icon { flex: none; }
@media (max-width: 560px) {
  .wa-float span { display: none; }
  .wa-float { padding: .95rem; }
}

/* ------------------------------------------------------ package detail -- */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 366px;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: start;
}
@media (max-width: 1020px) { .detail-layout { grid-template-columns: 1fr; } }

.detail-block + .detail-block { margin-top: clamp(2.2rem, 4vw, 3.2rem); }
.detail-block h2 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); margin-bottom: 1.1rem; }
.detail-block > p { font-size: 1rem; line-height: 1.75; color: var(--ink-2); max-width: 70ch; }
.detail-block > p + p { margin-top: .9rem; }

.itinerary { display: grid; gap: .7rem; }
.itin-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.itin-item.is-open { border-color: rgb(12 76 31 / 24%); box-shadow: var(--sh-1); }
.itin-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 1.25rem;
  text-align: left;
}
.itin-day {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--forest-100);
  color: var(--forest-800);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.itin-day b { display: block; font-size: 1.05rem; }
.itin-item.is-open .itin-day { background: var(--forest-700); color: #fff; }
.itin-head h3 { font-size: 1.02rem; flex: 1; line-height: 1.35; }
.itin-head > .icon { flex: none; color: var(--muted); transition: transform .35s var(--ease-out); }
.itin-item.is-open .itin-head > .icon { transform: rotate(180deg); }
.itin-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease-out); }
.itin-item.is-open .itin-body { grid-template-rows: 1fr; }
.itin-body > div { overflow: hidden; }
.itin-body p { padding: 0 1.25rem .6rem 5.3rem; font-size: .92rem; line-height: 1.7; color: var(--muted); }
.itin-stay { display: inline-flex; align-items: center; gap: .4rem; margin: 0 1.25rem 1.2rem 5.3rem; font-size: .78rem; color: var(--forest-700); font-weight: 600; }
.itin-stay .icon { color: var(--forest-500); }
@media (max-width: 560px) {
  .itin-body p, .itin-stay { padding-left: 1.25rem; margin-left: 1.25rem; }
  .itin-body p { padding-left: 1.25rem; }
}

.ie-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 1.2rem; }
.ie-card { padding: 1.35rem 1.5rem; border-radius: var(--r); border: 1px solid var(--line); background: var(--surface); }
.ie-card h3 { display: flex; align-items: center; gap: .55rem; font-size: 1.02rem; margin-bottom: .9rem; }
.ie-card ul { display: grid; gap: .55rem; }
.ie-card li { display: flex; gap: .6rem; font-size: .88rem; line-height: 1.55; color: var(--ink-2); }
.ie-card .icon { flex: none; margin-top: .15rem; }
.ie-card--in h3 .icon, .ie-card--in li .icon { color: var(--forest-500); }
.ie-card--ex h3 .icon, .ie-card--ex li .icon { color: var(--clay-500); }

.notice {
  display: flex;
  gap: .85rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--r);
  border: 1px solid rgb(211 160 43 / 32%);
  background: var(--gold-100);
  color: var(--gold-700);
  font-size: .88rem;
  line-height: 1.62;
}
.notice .icon { flex: none; margin-top: .15rem; color: var(--gold-600); }
.notice ul { display: grid; gap: .45rem; margin-top: .4rem; }
.notice li { list-style: disc; margin-left: 1.05rem; }
.notice strong { color: var(--gold-700); }

.sticky-side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 1rem; }
@media (max-width: 1020px) { .sticky-side { position: static; } }

.side-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(1.3rem, 2.4vw, 1.7rem);
  box-shadow: var(--sh-1);
}
.side-card__price { padding-bottom: 1.1rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.side-card__price span { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.side-card__price strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.side-card__price p { font-size: .8rem; color: var(--muted); margin-top: .35rem; line-height: 1.5; }
.side-facts { display: grid; gap: .8rem; margin-bottom: 1.2rem; }
.side-facts li { display: flex; gap: .7rem; align-items: flex-start; font-size: .87rem; }
.side-facts .icon { color: var(--forest-600); flex: none; margin-top: .1rem; }
.side-facts strong { display: block; color: var(--ink); font-weight: 600; }
.side-facts span { color: var(--muted); font-size: .82rem; }

.side-help { text-align: center; padding-top: 1.1rem; margin-top: 1.1rem; border-top: 1px solid var(--line); }
.side-help p { font-size: .82rem; color: var(--muted); margin-bottom: .55rem; }
.side-help a { font-weight: 600; color: var(--forest-700); }

/* gallery strip on detail pages */
.shot-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: .6rem; }
.shot-strip a { position: relative; display: block; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; background: var(--mist); cursor: zoom-in; }
.shot-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.shot-strip a:hover img { transform: scale(1.08); }

/* highlight pills list */
.hl-list { display: grid; gap: .6rem; }
.hl-list li { display: flex; gap: .7rem; font-size: .93rem; line-height: 1.6; color: var(--ink-2); }
.hl-list .icon { color: var(--forest-500); flex: none; margin-top: .18rem; }

.attraction-list { display: grid; gap: .2rem; }
.attraction {
  display: flex;
  gap: 1rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
}
.attraction:last-child { border-bottom: 1px solid var(--line); }
.attraction__n {
  flex: none;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 700;
  color: var(--gold-600);
  width: 30px;
  padding-top: .1rem;
}
.attraction h3 { font-size: 1rem; margin-bottom: .2rem; }
.attraction p { font-size: .87rem; color: var(--muted); line-height: 1.6; }

.season-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: .9rem; }
.season-card { padding: 1.15rem 1.3rem; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.season-card h3 { display: flex; align-items: center; gap: .5rem; font-size: .98rem; margin-bottom: .45rem; }
.season-card h3 .icon { color: var(--gold-600); }
.season-card p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* ------------------------------------------------------------ contact --- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-tile {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.contact-tile:hover { border-color: rgb(12 76 31 / 22%); transform: translateY(-3px); box-shadow: var(--sh-1); }
.contact-tile__icon {
  flex: none;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--forest-100);
  color: var(--forest-700);
}
.contact-tile h3 { font-size: .96rem; margin-bottom: .2rem; }
.contact-tile a, .contact-tile p { font-size: .9rem; color: var(--muted); line-height: 1.5; word-break: break-word; }
.contact-tile a:hover { color: var(--forest-700); }
.contact-tile small { display: block; font-size: .76rem; color: var(--muted); opacity: .8; margin-top: .25rem; }

/* --------------------------------------------------------- misc pages -- */
.credits-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.credits-table th, .credits-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.credits-table th { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.credits-table td a { color: var(--forest-700); text-decoration: underline; text-underline-offset: 2px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }

.prose > * + * { margin-top: 1.05rem; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { font-size: 1rem; line-height: 1.75; color: var(--ink-2); }
.prose ul { display: grid; gap: .55rem; }
.prose ul li { display: flex; gap: .65rem; }
.prose ul .icon { color: var(--forest-500); flex: none; margin-top: .28rem; }
.prose a { color: var(--forest-700); text-decoration: underline; text-underline-offset: 3px; }

.error-page { display: grid; place-items: center; text-align: center; min-height: 62vh; padding-block: 4rem; }
.error-page__code { font-family: var(--font-display); font-size: clamp(4rem, 14vw, 8rem); line-height: 1; color: var(--forest-100); font-weight: 700; }

/* ------------------------------------------------------------ reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------- utilities ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.6rem; }
.mt-4 { margin-top: 2.4rem; }
.mx-auto { margin-inline: auto; }
.max-60 { max-width: 60ch; }
.flex-center { display: flex; align-items: center; gap: .5rem; }
.divider { height: 1px; background: var(--line); border: 0; }

@media print {
  .topbar, .header, .drawer, .drawer-backdrop, .wa-float, .footer__social, .hero__scroll { display: none !important; }
  body { background: #fff; }
  .section { padding-block: 1.5rem; }
}
