/* ============================================================================
   ECCLESIA · "Kingdom" theme  —  light, photography-led travel identity
   Warm white + forest green, big full-bleed imagery, generous whitespace.
   Inspired by clean premium Bhutan operators (immersive hero, theme tiles,
   fixed departures, booking steps, reviews, awards). Plain CSS, no build step.
   ========================================================================== */

/* ------------------------------------------------------------------ TOKENS */
:root {
  /* surfaces (light) */
  --paper:      #fdfcf9;   /* primary background — warm white */
  --white:      #ffffff;
  --sand:       #f4efe4;   /* warm panel */
  --sand-2:     #ebe4d4;   /* deeper warm panel */
  --mist:       #e9f0ea;   /* soft green-tint panel */

  /* forest green (primary accent) */
  --green:      #1c5a43;
  --green-deep: #103a2c;   /* footer / cta / deep bands */
  --green-bright:#2c7d5b;  /* hovers */
  --green-tint: #eaf1ec;
  --green-line: rgba(28,90,67,.16);

  /* warm secondary accent (used sparingly: stars, price, small marks) */
  --ochre:      #b0863b;
  --ochre-soft: #f0e7d3;

  /* text */
  --ink:        #1f2621;   /* near-black, green-charcoal */
  --muted:      #5b6259;
  --faint:      #8a9088;
  --on-green:   #f2f5ef;   /* text on green */
  --on-green-soft:#b9ccbf;

  /* lines */
  --line:       #e7e0d1;   /* warm hairline on light */
  --line-2:     #ded5c2;

  /* type */
  --display: 'Poppins', 'Hanken Grotesk', system-ui, sans-serif;
  --sans:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --header-h: 90px;

  --fs-hero: clamp(2.6rem, 1.5rem + 4.6vw, 5rem);
  --fs-h1:   clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);
  --fs-h2:   clamp(1.7rem, 1.3rem + 1.75vw, 2.55rem);
  --fs-h3:   clamp(1.18rem, 1.05rem + .55vw, 1.42rem);
  --fs-lead: clamp(1.06rem, 1rem + .42vw, 1.26rem);
  --fs-sm:   .875rem;
  --fs-xs:   .78rem;

  --gutter:  clamp(1.15rem, .6rem + 2.4vw, 2.4rem);
  --maxw:        1220px;
  --maxw-wide:   1360px;
  --maxw-narrow: 780px;
  --sec-y:   clamp(4rem, 2.6rem + 5.4vw, 7rem);

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-1: 0 1px 2px rgba(31,38,33,.05), 0 8px 24px rgba(31,38,33,.06);
  --shadow-2: 0 18px 40px rgba(31,38,33,.12), 0 40px 80px rgba(31,38,33,.08);
  --shadow-green: 0 16px 36px rgba(16,58,44,.24);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .5s;
}

/* ---------------------------------------------------------------- RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--green); outline-offset: 3px; border-radius: 3px; }

.skip-link { position: fixed; top: -60px; left: 12px; z-index: 200; background: var(--green); color: #fff;
  padding: .6rem 1rem; border-radius: 0 0 var(--r) var(--r); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* -------------------------------------------------------------- HEADINGS */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -.01em; }
h4 { font-size: 1.02rem; line-height: 1.3; letter-spacing: 0; }
p { text-wrap: pretty; }
strong, b { font-weight: 700; }
em { font-style: italic; }
::selection { background: var(--green); color: #fff; }

/* ------------------------------------------------------------- LAYOUT */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide   { max-width: var(--maxw-wide); }
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--sec-y); position: relative; }
.section--soft  { background: var(--sand); }
.section--panel { background: var(--sand-2); }
.section--mist,
.section--tint  { background: var(--mist); }
.section--ink   { background: var(--green-deep); color: var(--on-green);
  background-image: radial-gradient(120% 90% at 85% -10%, rgba(44,125,91,.4), transparent 55%); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--tight { padding-block: clamp(2.6rem, 1.8rem + 3vw, 4rem); }

/* ---------------------------------------------------------- EYEBROW / HEADS */
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--sans);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--ochre); display: inline-block; }
.eyebrow--center { justify-content: center; }
.section--ink .eyebrow { color: #8fd3b3; }
.section--ink .eyebrow::before { background: #8fd3b3; }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 1.4rem + 1.6vw, 3.2rem); }
.section-head h2 { margin: .9rem 0 .7rem; }
.section-head p { color: var(--muted); font-size: var(--fs-lead); }
.section--ink .section-head p { color: var(--on-green-soft); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 1.4rem + 1.6vw, 3rem); }
.section-head__row .section-head { margin-bottom: 0; }

/* --------------------------------------------------------------- BUTTONS */
.btn { --bg: var(--green); --fg: #fff; display: inline-flex; align-items: center; gap: .55rem;
  background: var(--bg); color: var(--fg); font-weight: 700; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .85rem 1.5rem; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background .25s, color .25s, border-color .25s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); background: var(--green-bright); box-shadow: var(--shadow-green); }
.btn .ico { transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }
.btn--lg { padding: .98rem 1.8rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--outline { background: transparent; color: var(--green); border-color: var(--line-2); }
.btn--outline:hover { background: var(--green-tint); border-color: var(--green); color: var(--green); box-shadow: none; }
.btn--ghost { background: transparent; color: var(--green); padding-inline: .4rem; }
.btn--ghost:hover { box-shadow: none; color: var(--green-bright); }
/* on photo / dark green */
.btn--light { background: #fff; color: var(--green-deep); }
.btn--light:hover { background: #fff; color: var(--green-deep); box-shadow: 0 16px 40px rgba(0,0,0,.28); }
.btn--on-dark.btn--outline { color: #fff; border-color: rgba(255,255,255,.5); }
.btn--on-dark.btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--green);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px; transition: color .25s, border-color .25s, gap .25s; }
.text-link:hover { color: var(--green-bright); border-color: currentColor; gap: .6rem; }
.section--ink .text-link { color: #8fd3b3; }

.ico { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; }

/* ---------------------------------------------------------------- PILLS */
.pill { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .32rem .72rem; border-radius: 100px;
  background: var(--green-tint); color: var(--green); }
.pill--ghost { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.pill--ochre { background: var(--ochre-soft); color: #8a6620; }

/* ============================================================== TOPBAR */
.topbar { display: none; }   /* references go straight to a hero under a floating header */
.topbar--legacy { background: var(--green-deep); color: var(--on-green-soft); font-size: var(--fs-sm); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; flex-wrap: wrap; }
.topbar__group { display: flex; align-items: center; gap: 1.3rem; }
.topbar a { display: inline-flex; align-items: center; gap: .45rem; color: var(--on-green-soft); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .ico { color: #8fd3b3; }
.topbar__group--social { gap: .8rem; padding-left: .4rem; border-left: 1px solid rgba(255,255,255,.14); }
.topbar__group--social .ico { color: currentColor; }
@media (max-width: 720px) { .topbar__group--meta a:nth-child(2) { display: none; } .topbar { font-size: .8rem; } }

/* ============================================================== HEADER
   Fixed, floating. Every page opens on a photo hero, so the header is
   transparent over it (white logo + white nav) and turns solid on scroll. */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s; }
.header.is-stuck { background: rgba(253,252,249,.94); backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px); border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(31,38,33,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
/* transparent over the hero until scrolled: white logo + nav */
.header:not(.is-stuck) .brand__logo { filter: brightness(0) invert(1); }
.header:not(.is-stuck) .nav__link { color: #fff; }
.header:not(.is-stuck) .nav__link[aria-current="page"] { color: #fff; }
.header:not(.is-stuck) .nav__link::after { background: #fff; }
.header:not(.is-stuck) .burger span { background: #fff; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__logo { height: 60px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.28rem; letter-spacing: .12em; color: var(--green); }
.brand__tag { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ochre); margin-top: 4px; font-weight: 700; }

.nav { display: flex; align-items: center; gap: .1rem; }
.nav__link { position: relative; padding: .55rem .9rem; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); border-radius: var(--r-sm); transition: color .2s; }
.nav__link::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .34rem; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav__link:hover { color: var(--green); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--green); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: .8rem; }

.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 27px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------- MOBILE NAV */
.mobile-nav { position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px); z-index: 95; background: var(--white);
  color: var(--ink); padding: 6rem 1.6rem 2rem; display: flex; flex-direction: column; gap: .1rem; transform: translateX(100%);
  transition: transform .42s var(--ease); box-shadow: -30px 0 70px rgba(31,38,33,.2); border-left: 1px solid var(--line); overflow-y: auto; }
body.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav__link { display: flex; align-items: center; justify-content: space-between; padding: .95rem .4rem;
  font-family: var(--display); font-weight: 600; font-size: 1.28rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav__link[aria-current="page"] { color: var(--green); }
.mobile-nav__link .ico { color: var(--green); }
.mobile-nav .btn { margin-top: 1.4rem; }
.mobile-nav__contact { margin-top: 1.2rem; font-size: var(--fs-sm); color: var(--muted); }
.mobile-nav__contact a { color: var(--green); }
.nav-scrim { position: fixed; inset: 0; z-index: 94; background: rgba(16,26,20,.5); opacity: 0; visibility: hidden; transition: opacity .3s; }
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* ================================================================= HERO
   Full-bleed immersive photograph with an overlaid statement. */
.hero { position: relative; min-height: min(88vh, 820px); display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,26,20,.34) 0%, rgba(16,26,20,.12) 34%, rgba(16,26,20,.62) 82%, rgba(16,26,20,.8) 100%); }
.hero__inner { padding-block: clamp(2.5rem, 1.5rem + 5vw, 5rem); width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: #fff; margin-bottom: 1.3rem; }
.hero__eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--ochre); }
.hero h1 { color: #fff; font-size: var(--fs-hero); font-weight: 600; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero h1 em { font-style: normal; color: #ffd98a; }
.hero__lead { margin: 1.4rem 0 2rem; color: rgba(255,255,255,.9); font-size: var(--fs-lead); max-width: 48ch; text-shadow: 0 1px 14px rgba(0,0,0,.35); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.22); flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: .6rem; }
.hero__trust .stars { display: inline-flex; gap: .1rem; color: #ffcf6b; }
.hero__trust .stars svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.hero__trust .t { font-weight: 700; }
.hero__trust .d { color: rgba(255,255,255,.75); font-size: var(--fs-sm); }
.hero__trust-sep { width: 1px; height: 30px; background: rgba(255,255,255,.22); }
.scroll-cue { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.8);
  display: grid; place-items: center; gap: .3rem; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue svg { width: 22px; height: 22px; animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue svg { animation: none; } }

/* -------------------------------------------------- INTRO / TENETS (light) */
.tenets { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, .8rem + 2vw, 3rem); }
.tenet { position: relative; padding-top: 1.7rem; border-top: 2px solid var(--green); }
.tenet__n { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .18em; color: var(--ochre); margin-bottom: .5rem; }
.tenet h3 { font-size: clamp(1.2rem, 1.05rem + .8vw, 1.6rem); }
.tenet p { margin-top: .7rem; color: var(--muted); font-size: 1rem; }

/* ----------------------------------------------- TWO-COLUMN media + text */
.addon { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.addon__media { position: relative; }
.addon__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-1); }
.addon p { color: var(--muted); }
.addon p + p { margin-top: 1rem; }
.section--ink .addon p { color: var(--on-green-soft); }
.addon__list { margin: 1.5rem 0 1.8rem; display: grid; gap: .85rem; }
.addon__list li { display: flex; align-items: flex-start; gap: .75rem; font-weight: 500; }
.addon__list .ic { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px;
  background: var(--green-tint); color: var(--green); margin-top: 1px; }
.addon__list .ic svg { width: 16px; height: 16px; }
.section--ink .addon__list .ic { background: rgba(255,255,255,.12); color: #8fd3b3; }

/* --- neutralised legacy signature classes (kept so older markup still renders) --- */
.arch { position: relative; }
.arch > img, .arch__img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-1); }
.arch__frame, .arch::after { display: none !important; }
.kemar-band { height: 1px; background: var(--line); margin-inline: var(--gutter); }
.divider-frieze { height: 1px; background: var(--line); }

/* ------------------------------------------------------------- GRIDS */
.grid { display: grid; gap: clamp(1.1rem, .7rem + 1.4vw, 1.7rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------- THEME TILES
   Image tiles with an overlaid category + title (travel themes / experiences). */
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, .6rem + 1.4vw, 1.6rem); }
.theme-tile { position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px;
  border-radius: var(--r-lg); overflow: hidden; padding: 1.4rem; color: #fff; box-shadow: var(--shadow-1);
  transition: transform .45s var(--ease), box-shadow .45s; }
.theme-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.theme-tile__img { position: absolute; inset: 0; z-index: -2; }
.theme-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.theme-tile:hover .theme-tile__img img { transform: scale(1.06); }
.theme-tile::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,26,20,.05) 30%, rgba(16,26,20,.72) 100%); }
.theme-tile__cat { position: absolute; top: 1rem; left: 1rem; z-index: 1; background: var(--green); color: #fff;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .34rem .72rem; border-radius: 100px; box-shadow: 0 6px 16px rgba(0,0,0,.22); }
.theme-tile h3 { color: #fff; font-size: 1.4rem; display: flex; align-items: center; gap: .5rem; }
.theme-tile h3 .ico { width: 20px; height: 20px; opacity: 0; transform: translateX(-6px); transition: .3s var(--ease); }
.theme-tile:hover h3 .ico { opacity: 1; transform: none; }
.theme-tile p { color: rgba(255,255,255,.85); font-size: .93rem; margin-top: .4rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .3s, margin .4s; }
.theme-tile:hover p, .theme-tile:focus-within p { max-height: 6rem; opacity: 1; }
.theme-tile--tall { min-height: 420px; }

/* --------------------------------------------------------- FEATURE (why) */
.feature { padding: 1.7rem 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-1); transition: transform .35s var(--ease), box-shadow .35s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.feature__ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.1rem;
  background: var(--green-tint); color: var(--green); }
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .97rem; }
.section--ink .feature { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--ink .feature p { color: var(--on-green-soft); }
.section--ink .feature__ic { background: rgba(255,255,255,.1); color: #8fd3b3; }

/* ---------------------------------------------- DESTINATION CARD (image) */
.dest-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; background: #222; color: #fff;
  box-shadow: var(--shadow-1); transition: transform .4s var(--ease), box-shadow .4s; }
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.dest-card__art { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; }
.dest-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.dest-card:hover .dest-card__art img { transform: scale(1.06); }
.dest-card__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 42%, rgba(16,26,20,.8)); }
.dest-card__tag { position: absolute; top: .9rem; right: .9rem; z-index: 2; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .04em; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.3);
  color: #fff; padding: .3rem .65rem; border-radius: 100px; }
.dest-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.3rem 1.4rem; }
.dest-card__kicker { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #ffd98a; margin-bottom: .3rem; }
.dest-card__kicker .ico { width: 14px; height: 14px; }
.dest-card h3 { color: #fff; font-size: 1.5rem; }
.dest-card__meta { color: rgba(255,255,255,.85); font-size: .93rem; margin-top: .4rem; max-width: 34ch;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .35s, margin .45s; }
.dest-card:hover .dest-card__meta, .dest-card:focus-within .dest-card__meta { max-height: 8rem; opacity: 1; }

/* ---------------------------------------------------- CATEGORY CARD (big) */
.cat-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 360px;
  border-radius: var(--r-lg); overflow: hidden; padding: 1.7rem; color: #fff; box-shadow: var(--shadow-1);
  transition: transform .4s var(--ease), box-shadow .4s; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.cat-card__art { position: absolute; inset: 0; z-index: 0; }
.cat-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat-card:hover .cat-card__art img { transform: scale(1.05); }
.cat-card__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,26,20,.12), rgba(16,26,20,.5) 55%, rgba(16,26,20,.88)); }
.cat-card__ic, .cat-card h3, .cat-card p, .cat-card__link { position: relative; z-index: 1; }
.cat-card__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; margin-bottom: .9rem;
  background: #fff; color: var(--green); box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.cat-card__ic svg { width: 24px; height: 24px; stroke-width: 2; }
.cat-card h3 { color: #fff; font-size: 1.5rem; }
.cat-card p { color: rgba(255,255,255,.86); font-size: .96rem; margin-top: .45rem; max-width: 36ch; }
.cat-card__link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; font-weight: 700; color: #ffd98a; }
.cat-card__link .ico { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.cat-card:hover .cat-card__link .ico { transform: translateX(4px); }

/* ------------------------------------------------------------ TOUR CARD */
.tour-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-1); transition: transform .4s var(--ease), box-shadow .4s, border-color .3s; }
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
.tour-card__media { position: relative; aspect-ratio: 3 / 2.05; overflow: hidden; background: var(--sand-2); }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.06); }
.tour-card__badge { position: absolute; top: .85rem; left: .85rem; z-index: 2; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .32rem .68rem; border-radius: 100px; background: rgba(255,255,255,.94); color: var(--green); box-shadow: 0 4px 14px rgba(0,0,0,.16); }
.tour-card__fav { position: absolute; top: .7rem; right: .7rem; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.92); color: var(--muted); box-shadow: var(--shadow-1);
  transition: color .2s, transform .2s; }
.tour-card__fav svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.tour-card__fav:hover, .tour-card__fav.is-on { color: var(--ochre); transform: scale(1.1); }
.tour-card__fav.is-on svg { fill: var(--ochre); }
.tour-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.35rem 1.35rem; }
.tour-card__loc { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.tour-card__loc svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.tour-card__body h3 { font-size: 1.3rem; }
.tour-card__body h3 a:hover { color: var(--green); }
.tour-card__meta { display: flex; flex-wrap: wrap; gap: .9rem; margin: .8rem 0 1rem; color: var(--muted); font-size: .87rem; }
.tour-card__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.tour-card__meta svg { width: 15px; height: 15px; fill: none; stroke: var(--green); stroke-width: 1.8; }
.tour-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.tour-card__price { display: flex; flex-direction: column; line-height: 1.1; }
.tour-card__price .from { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--faint); font-weight: 600; }
.tour-card__price .amt { font-family: var(--display); font-weight: 700; font-size: 1.32rem; color: var(--ink); }
.tour-card__price .amt small { font-family: var(--sans); font-weight: 500; font-size: .72rem; color: var(--faint); }
.tour-card__enquire { font-size: .86rem; color: var(--muted); font-style: italic; max-width: 16ch; }

/* --------------------------------------------------- HOW IT WORKS / STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, .6rem + 2vw, 2.4rem); position: relative; }
.step { position: relative; }
.step__n { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1.1rem;
  background: var(--white); border: 1.5px solid var(--green-line); color: var(--green); font-family: var(--display); font-weight: 700; font-size: 1.25rem; position: relative; z-index: 1; }
.section--ink .step__n { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #8fd3b3; }
.step__ic { position: absolute; top: 14px; left: 40px; color: var(--ochre); }
.step__ic svg { width: 22px; height: 22px; }
.step h3 { font-size: 1.14rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .94rem; }
.section--ink .step p { color: var(--on-green-soft); }
.steps--line .step:not(:last-child)::after { content: ""; position: absolute; top: 28px; left: 68px; right: -1rem; height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--green-line) 0 7px, transparent 7px 14px); }

/* --------------------------------------------------------------- STATS */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-cell { padding: 1rem .5rem; position: relative; }
.stat-cell + .stat-cell::before { content: ""; position: absolute; left: -.75rem; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.16); }
.stat-cell .n { font-family: var(--display); font-weight: 700; font-size: clamp(2.3rem, 1.6rem + 2.4vw, 3.3rem); line-height: 1; color: #fff; }
.stat-cell .l { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--on-green-soft); margin-top: .7rem; font-weight: 600; }
/* stats on light bg variant */
.section:not(.section--ink) .stat-cell .n { color: var(--green); }
.section:not(.section--ink) .stat-cell .l { color: var(--muted); }
.section:not(.section--ink) .stat-cell + .stat-cell::before { background: var(--line); }

/* ------------------------------------------------------------ TEAM CARD */
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-1); transition: transform .35s var(--ease), box-shadow .35s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.team-card__av { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1rem;
  font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: #fff; background: var(--green); }
.team-card__name { font-family: var(--display); font-weight: 600; font-size: 1.25rem; }
.team-card__role { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ochre); margin: .3rem 0 .7rem; }
.team-card__bio { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------- TESTIMONIALS */
.quotes { background: var(--sand); }
.qslider { max-width: 820px; margin: 0 auto; position: relative; text-align: center; }
.qcard { display: none; }
.qcard.is-active { display: block; animation: qfade .6s var(--ease); }
@keyframes qfade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.qcard__stars { display: inline-flex; gap: .2rem; color: var(--ochre); margin-bottom: 1.4rem; }
.qcard__stars svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.qcard__text { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.3rem, 1.05rem + 1.3vw, 1.95rem); line-height: 1.42; color: var(--ink); }
.qcard__by { display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.8rem; }
.qcard__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #fff; background: var(--green); }
.qcard__by .nm { font-weight: 700; }
.qcard__by .ro { display: block; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-top: .2rem; }
.qnav { display: flex; justify-content: center; gap: .55rem; margin-top: 2.2rem; }
.qdot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); transition: transform .3s, background .3s; }
.qdot.is-active { background: var(--green); transform: scale(1.35); }

/* --------------------------------------------------- REVIEWS (Google-style) */
.rating-summary { display: flex; flex-direction: column; align-items: center; gap: .5rem; margin-bottom: clamp(2rem, 1.4rem + 1.6vw, 3rem); }
.rating-summary .word { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: .02em; color: var(--ink); }
.rating-summary .stars { display: inline-flex; gap: .15rem; color: #f5a623; }
.rating-summary .stars svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }
.rating-summary .count { color: var(--muted); font-size: .95rem; }
.rating-summary .count b { color: var(--ink); }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.5rem 1.6rem; box-shadow: var(--shadow-1); display: flex; flex-direction: column; }
.review-card__top { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.review-card__av { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #fff; background: var(--green); }
.review-card__who { display: flex; flex-direction: column; line-height: 1.2; }
.review-card__name { font-weight: 700; color: var(--ink); }
.review-card__meta { font-size: var(--fs-xs); color: var(--faint); margin-top: 2px; }
.review-card__stars { display: inline-flex; gap: .1rem; color: #f5a623; margin-bottom: .7rem; }
.review-card__stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.review-card__text { color: var(--muted); font-size: .97rem; }
.review-card__src { margin-top: auto; padding-top: 1rem; font-size: var(--fs-xs); color: var(--faint); display: inline-flex; align-items: center; gap: .35rem; }
.review-card__src b { color: #4285F4; font-weight: 700; }

/* ---------------------------------------------------- FLOATING WHATSAPP */
.wa-fab { position: fixed; right: 20px; bottom: 20px; z-index: 85; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.28);
  transition: transform .25s var(--ease), box-shadow .25s; }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 40px rgba(0,0,0,.32); }
.wa-fab svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 1.9; }
@media (max-width: 600px) { .wa-fab { width: 52px; height: 52px; right: 14px; bottom: 14px; } }

/* --------------------------------------------------------- AWARDS / TRUST */
.awards { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 1rem + 2vw, 3.4rem); }
.awards__label { flex-basis: 100%; text-align: center; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: .4rem; }
.award { display: grid; place-items: center; gap: .5rem; text-align: center; color: var(--muted); }
.award img { width: 72px; height: 72px; object-fit: contain; filter: grayscale(1) opacity(.75); transition: filter .3s; }
.award:hover img { filter: none; }
.award span { font-size: var(--fs-xs); letter-spacing: .04em; }

/* --------------------------------------------------------------- CTA */
.cta { position: relative; overflow: hidden; border-radius: var(--r-xl); text-align: center; color: #fff;
  background: var(--green-deep); padding: clamp(3.2rem, 2rem + 4.5vw, 6rem) var(--gutter); }
.cta::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(16,58,44,.72), rgba(11,43,32,.9)), url('../assets/images/bhutan-landscape.jpg');
  background-size: cover; background-position: center; transform: scale(1.02); }
.cta__art { display: none; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; max-width: 20ch; margin: 0 auto .9rem; }
.cta p { color: var(--on-green-soft); max-width: 52ch; margin: 0 auto 2rem; font-size: var(--fs-lead); }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ------------------------------------------------- PAGE HEAD (photo hero) */
.page-head { position: relative; overflow: hidden; color: #fff;
  background-color: var(--green-deep); background-size: cover; background-position: center;
  padding-top: calc(var(--header-h) + clamp(2.6rem, 1.6rem + 4vw, 5.2rem));
  padding-bottom: clamp(2.6rem, 1.6rem + 4vw, 5.2rem); }
.page-head::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(14,24,18,.42), rgba(12,20,15,.3) 45%, rgba(11,18,14,.72)); }
.page-head__bg { display: none; }
.page-head__inner { position: relative; z-index: 1; }
.crumb { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 1.1rem; }
.crumb a { color: #fff; }
.crumb .sep { margin: 0 .5rem; color: rgba(255,255,255,.5); }
.page-head h1 { font-size: var(--fs-h1); color: #fff; }
.page-head .lead { margin-top: 1.1rem; max-width: 58ch; color: rgba(255,255,255,.9); font-size: var(--fs-lead); }

/* --------------------------------------------------------- FILTER BAR */
.filterbar { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.6rem; align-items: center; }
.filterbar__btn { position: relative; cursor: pointer; }
.filterbar__btn input { position: absolute; opacity: 0; pointer-events: none; }
.filterbar__btn span { display: inline-flex; align-items: center; padding: .55rem 1.1rem; border-radius: 100px;
  border: 1.5px solid var(--line-2); font-weight: 600; font-size: .92rem; color: var(--muted); transition: all .2s; }
.filterbar__btn:hover span { border-color: var(--green); color: var(--green); }
.filterbar__btn input:checked + span { background: var(--green); border-color: var(--green); color: #fff; }
.filter-count { font-size: var(--fs-sm); color: var(--faint); margin-left: auto; }
.filter-count b { color: var(--green); }

/* ---------------------------------------------------------- TOUR DETAIL */
.detail { display: grid; grid-template-columns: 1fr 350px; gap: clamp(1.8rem, 1rem + 3vw, 3.4rem); align-items: start; }
.detail__hero { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 9; margin-bottom: 1.8rem; box-shadow: var(--shadow-2); }
.detail__hero img { width: 100%; height: 100%; object-fit: cover; }
.detail__facts-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; margin-bottom: 2rem; }
.detail__fact { background: var(--white); padding: 1rem .9rem; text-align: center; }
.detail__fact .ic { display: inline-grid; place-items: center; color: var(--green); margin-bottom: .35rem; }
.detail__fact .ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.detail__fact .k { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.detail__fact .v { display: block; font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--ink); margin-top: .1rem; }
.detail h2 { margin: 2.2rem 0 1rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.detail h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.detail p { color: var(--muted); }
.detail p + p { margin-top: 1rem; }

.itin { display: grid; gap: .7rem; margin-top: .5rem; }
.itin__item { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--white); transition: border-color .3s, box-shadow .3s; }
.itin__item.is-open { border-color: var(--green); box-shadow: var(--shadow-1); }
.itin__head { display: flex; align-items: center; gap: 1rem; width: 100%; padding: 1.05rem 1.2rem; text-align: left; }
.itin__day { flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--green);
  width: 48px; height: 48px; border-radius: 12px; background: var(--green-tint); line-height: 1; }
.itin__day small { display: block; font-size: .5rem; font-weight: 600; letter-spacing: .12em; color: var(--faint); margin-top: 2px; }
.itin__t { flex: 1; font-family: var(--display); font-weight: 600; font-size: 1.14rem; color: var(--ink); }
.itin__plus { flex: none; width: 26px; height: 26px; position: relative; }
.itin__plus::before, .itin__plus::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .3s var(--ease); }
.itin__plus::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.itin__plus::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.itin__item.is-open .itin__plus::after { transform: rotate(90deg); opacity: 0; }
.itin__body { height: 0; overflow: hidden; transition: height .4s var(--ease); }
.itin__body-inner { padding: 0 1.2rem 1.3rem 5rem; }
.itin__body-inner p { color: var(--muted); }
.itin__body-inner .meta { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: .9rem; font-size: .85rem; color: var(--muted); }
.itin__body-inner .meta b { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); margin-right: .3rem; }

.incl-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2.5rem; }
.incl-2 h3 { margin-bottom: .9rem; }
.incl-list { display: grid; gap: .7rem; }
.incl-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--muted); font-size: .96rem; }
.incl-list .ic { flex: none; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--green-tint); color: var(--green); margin-top: 1px; }
.incl-list .ic svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.incl-list--no .ic { background: #f3e3df; color: #b4503f; }

.booking { position: sticky; top: 100px; background: var(--white); border-radius: var(--r-lg); padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-2); border: 1px solid var(--line); }
.booking__price { display: flex; align-items: baseline; gap: .4rem; padding-bottom: 1.2rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.booking__price .amt { font-family: var(--display); font-weight: 700; font-size: 2.1rem; color: var(--green); }
.booking__price .per { font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); }
.booking__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.booking__row dt { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); }
.booking__row dd { font-weight: 600; color: var(--ink); text-align: right; }
.booking .btn { margin-top: 1.4rem; }
.booking__note { font-size: .82rem; color: var(--faint); text-align: center; margin-top: .9rem; }

/* --------------------------------------------------------- CONTACT / FORMS */
.contact-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.info-card { display: flex; gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); margin-bottom: 1rem; }
.info-card .ic { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--green-tint); color: var(--green); }
.info-card .ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.info-card h4 { margin-bottom: .2rem; }
.info-card p { color: var(--muted); font-size: .95rem; }
.info-card a { color: var(--green); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem); box-shadow: var(--shadow-1); }
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field > label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field .req { color: #b4503f; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .95rem; background: var(--paper); border: 1.5px solid var(--line-2); border-radius: var(--r); transition: border-color .2s, box-shadow .2s; color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-tint); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #b4503f; box-shadow: 0 0 0 4px rgba(180,80,63,.1); }
.field.is-invalid::after { content: "Please complete this field"; font-size: var(--fs-xs); color: #b4503f; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; }
.chip span { display: inline-block; padding: .45rem .9rem; border-radius: 100px; border: 1.5px solid var(--line-2); font-size: .9rem; color: var(--muted); transition: all .2s; }
.chip:hover span { border-color: var(--green); }
.chip input:checked + span { background: var(--green-tint); border-color: var(--green); color: var(--green); font-weight: 600; }
.form__success { display: none; text-align: center; padding: 2.5rem 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-1); }
.form__success.is-shown { display: block; animation: qfade .5s var(--ease); }
.form__success .ic { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; margin-bottom: 1rem; background: var(--green-tint); color: var(--green); }
.form__success .ic svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2; }
.form__success h3 { margin-bottom: .5rem; }
.form__success p { color: var(--muted); }

.footer__news { display: flex; gap: .5rem; margin-top: 1rem; }
.footer__news .field { flex: 1; margin: 0; }
.footer__news input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #fff; }
.footer__news input::placeholder { color: var(--on-green-soft); }
.footer__news button { flex: none; width: 48px; display: grid; place-items: center; background: #fff; color: var(--green-deep); border-radius: var(--r); transition: transform .2s; }
.footer__news button:hover { transform: translateY(-2px); }

/* =============================================================== FOOTER */
.footer { background: var(--green-deep); color: var(--on-green-soft); padding-top: clamp(3rem, 2rem + 3vw, 4.5rem); }
.footer .brand__logo { height: 84px; filter: brightness(0) invert(1); }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__about { margin: 1.1rem 0 1.3rem; font-size: .95rem; max-width: 34ch; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.16); color: var(--on-green-soft); transition: all .2s; }
.footer__social a:hover { color: #fff; border-color: #8fd3b3; transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer__col h4 { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { color: var(--on-green-soft); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .7rem; font-size: .93rem; }
.footer__contact .ico { width: 17px; height: 17px; color: #8fd3b3; flex: none; margin-top: 3px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer__partners { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__partners-label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--on-green-soft); }
.footer__badges { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.partner-badge { background: #fff; border-radius: 12px; padding: 8px; display: grid; place-items: center; }
.partner-badge img { width: 58px; height: 58px; object-fit: contain; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding: 1.6rem 0 2.4rem; font-size: var(--fs-xs); color: var(--on-green-soft); }
.footer__credits { flex-basis: 100%; opacity: .7; }

/* ---------------------------------------------------------- REVEAL / UTILS */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.hidden { display: none !important; }
.lead { font-size: var(--fs-lead); color: var(--muted); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps--line .step::after { display: none; }
}
@media (max-width: 960px) {
  .nav, .header__actions .btn { display: none; }
  .burger { display: block; }
  .detail { grid-template-columns: 1fr; }
  .booking { position: static; }
  .contact-split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .tenets { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 720px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: 1fr; }
  .addon { grid-template-columns: 1fr; }
  .addon__media { order: -1; }
  .detail__facts-row { grid-template-columns: repeat(2, 1fr); }
  .detail__fact:last-child { grid-column: 1 / -1; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 0; }
  .stat-cell:nth-child(3)::before { display: none; }
  .steps { grid-template-columns: 1fr; }
  .incl-2, .form__row { grid-template-columns: 1fr; }
  .itin__body-inner { padding-left: 1.2rem; }
  .hero__trust-sep { display: none; }
  .section-head__row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .grid--4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .detail__facts-row { grid-template-columns: 1fr; }
  .detail__fact:last-child { grid-column: auto; }
}
