/* ==========================================================================
   GOHARO TRAVEL — DESIGN SYSTEM
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Atmosphere (grain, vignette)
   4.  Preloader
   5.  Typography system & display treatments
   6.  Buttons
   7.  Navbar & mobile menu
   8.  Section shell
   9.  Hero
   10. Journey categories
   11. Package cards
   12. Why us
   13. Destination rail
   14. Promo
   15. Gallery
   16. Testimonials
   17. Statistics
   18. FAQ
   19. Final CTA
   20. Footer
   21. Inner pages (booking / itinerary / terms / summary)
   22. Forms
   23. Reveal system & reduced motion
   24. Responsive
   ========================================================================== */

/* ===== 1. TOKENS ========================================================= */
:root {
  /* Palette — deep forest night, ivory paper, muted gold */
  --ink:        #0B0F0D;
  --ink-2:      #111714;
  --charcoal:   #1C2320;
  --charcoal-2: #262E2A;
  --ivory:      #F7F2E8;
  --ivory-2:    #EDE5D6;
  --sand:       #DFD2BA;
  --sand-dim:   #A99A7E;
  --sand-mid:   #B4A78C;
  --gold:       #C2A15C;
  --gold-lit:   #E2C68C;
  --emerald:    #0E3B32;
  --emerald-lit:#17594A;

  --line:       rgba(247, 242, 232, 0.14);
  --line-dark:  rgba(11, 15, 13, 0.14);
  --glass:      rgba(11, 15, 13, 0.55);

  /* Type */
  --f-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --f-serif:   "Cormorant Garamond", Georgia, serif;
  --f-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --t-hero:  clamp(3.2rem, 13vw, 11rem);
  --t-mega:  clamp(2.6rem, 9.5vw, 8rem);
  --t-h2:    clamp(2rem, 5.2vw, 4.2rem);
  --t-h3:    clamp(1.35rem, 2.6vw, 2rem);
  --t-body:  clamp(0.95rem, 1.05vw, 1.05rem);
  --t-small: 0.78rem;
  --t-label: 0.68rem;

  /* Space */
  --gut:     clamp(1.25rem, 5vw, 5rem);
  --sec-y:   clamp(4.5rem, 11vw, 10rem);
  --maxw:    1440px;

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.6, 0, 0.35, 1);
  --nav-h:     76px;
}

/* ===== 2. RESET & BASE =================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  color-scheme: dark;
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.7;
  font-weight: 350;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink);
  padding: 0.75rem 1.25rem; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

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

.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ===== 3. ATMOSPHERE ===================================================== */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.045; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainshift 700ms steps(3) infinite;
}
@keyframes grainshift {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-2%, 1%); }
  66%  { transform: translate(1%, -2%); }
  100% { transform: translate(0, 0); }
}

.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 55;
  width: 420px; height: 420px; margin: -210px 0 0 -210px;
  border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(194,161,92,0.13) 0%, rgba(194,161,92,0) 65%);
  transition: opacity 500ms var(--ease);
  will-change: transform;
}
.cursor-glow.on { opacity: 1; }

/* ===== 4. PRELOADER ====================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--ink);
  transition: opacity 600ms var(--ease), visibility 600ms;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__word {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 11vw, 6rem);
  letter-spacing: 0.34em;
  color: var(--ivory);
  display: flex; padding-left: 0.34em;
}
.preloader__word span {
  opacity: 0; transform: translateY(18px);
  animation: preIn 620ms var(--ease) forwards;
}
.preloader__word span:nth-child(1) { animation-delay: 40ms; }
.preloader__word span:nth-child(2) { animation-delay: 100ms; }
.preloader__word span:nth-child(3) { animation-delay: 160ms; }
.preloader__word span:nth-child(4) { animation-delay: 220ms; }
.preloader__word span:nth-child(5) { animation-delay: 280ms; }
.preloader__word span:nth-child(6) { animation-delay: 340ms; }
@keyframes preIn { to { opacity: 1; transform: translateY(0); } }
.preloader__bar {
  position: absolute; bottom: 22%; left: 50%; transform: translateX(-50%);
  width: min(220px, 40vw); height: 1px; background: var(--line); overflow: hidden;
}
.preloader__bar i {
  display: block; height: 100%; width: 100%;
  background: var(--gold); transform-origin: left;
  animation: preBar 900ms var(--ease) forwards;
}
@keyframes preBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ===== 5. TYPOGRAPHY ===================================================== */
.eyebrow {
  font-size: var(--t-label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.85rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.6;
}
.eyebrow--plain::before { display: none; }

/* Coordinate rail — the signature structural device.
   Numbers encode a real sequence: the order of the journey down the page. */
.rail {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--f-body);
  font-size: var(--t-label);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sand-dim);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.rail b { color: var(--gold); font-weight: 700; }
.rail span { margin-left: auto; opacity: 0.6; font-size: 0.62rem; }
.on-light .rail { color: #6C6455; border-bottom-color: var(--line-dark); }
.on-light .rail b { color: var(--emerald); }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  font-size: var(--t-mega);
}
.display--h2 { font-size: var(--t-h2); }

.serif {
  font-family: var(--f-serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.012em;
  font-size: var(--t-h2);
}
.serif em { font-style: italic; color: var(--gold-lit); }

/* Outlined ghost word sitting behind a heading */
.stack { position: relative; }
.stack__ghost {
  position: absolute; left: -0.05em; top: 50%;
  transform: translateY(-52%);
  font-family: var(--f-display);
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247,242,232,0.10);
  pointer-events: none; user-select: none; white-space: nowrap; z-index: 0;
}
.on-light .stack__ghost { -webkit-text-stroke-color: rgba(14,59,50,0.13); }
.stack > *:not(.stack__ghost) { position: relative; z-index: 1; }

.lede {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  color: var(--sand);
  max-width: 56ch;
  font-weight: 300;
}
.on-light .lede { color: #4A4437; }

.gold { color: var(--gold); }
.muted { color: var(--sand-dim); }

/* ===== 6. BUTTONS ======================================================== */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  --btn-bd: var(--line);
  position: relative;
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1.05rem 1.9rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 2px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.19em; text-transform: uppercase;
  cursor: pointer; overflow: hidden;
  transition: color 380ms var(--ease), border-color 380ms var(--ease), transform 220ms var(--ease);
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 480ms var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn:hover::after, .btn:focus-visible::after { transform: scaleY(1); transform-origin: top; }
.btn:hover, .btn:focus-visible { color: var(--ink); border-color: var(--gold); }
.btn .arrow { transition: transform 380ms var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--solid { --btn-bg: var(--ivory); --btn-fg: var(--ink); --btn-bd: var(--ivory); }
.btn--gold  { --btn-bg: var(--gold); --btn-fg: var(--ink); --btn-bd: var(--gold); }
.btn--gold::after { background: var(--ivory); }
.btn--gold:hover { color: var(--ink); border-color: var(--ivory); }
.btn--dark  { --btn-fg: var(--ink); --btn-bd: rgba(11,15,13,0.28); }
.btn--dark:hover { color: var(--ivory); border-color: var(--emerald); }
.btn--dark::after { background: var(--emerald); }
.btn--lg { padding: 1.25rem 2.4rem; font-size: 0.78rem; }
.btn--sm { padding: 0.8rem 1.35rem; font-size: 0.66rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.34; cursor: not-allowed; pointer-events: none;
}

/* Understated text link with a wiping underline */
.tlink {
  position: relative; display: inline-block;
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding-bottom: 3px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 420ms var(--ease);
}
.tlink:hover::after, .tlink:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* ===== 7. NAVBAR ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 480ms var(--ease), backdrop-filter 480ms var(--ease),
              border-color 480ms var(--ease), height 480ms var(--ease), box-shadow 480ms var(--ease);
}
.nav.scrolled {
  height: 64px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 44px -28px rgba(0,0,0,0.9);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut);
  display: flex; align-items: center; gap: 2rem;
}
.brand { display: flex; align-items: baseline; gap: 0.6rem; margin-right: auto; }
.brand__mark {
  font-family: var(--f-display); font-size: 1.55rem;
  letter-spacing: 0.2em; line-height: 1;
}
.brand__sub {
  font-size: 0.55rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.1vw, 2.1rem); }
.nav__links a {
  position: relative;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--sand); padding: 6px 0;
  transition: color 320ms var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 420ms var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { margin-left: 0.6rem; }

.burger {
  display: none; position: relative;
  width: 46px; height: 46px; background: none; border: 1px solid var(--line);
  border-radius: 2px; cursor: pointer;
}
.burger i {
  position: absolute; left: 13px; width: 20px; height: 1.5px; background: var(--ivory);
  transition: transform 420ms var(--ease), opacity 260ms var(--ease), width 420ms var(--ease);
}
.burger i:nth-child(1) { top: 18px; }
.burger i:nth-child(2) { top: 24px; width: 13px; }
.burger i:nth-child(3) { top: 30px; }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Fullscreen mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink-2);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) var(--gut) 2rem;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 720ms var(--ease), visibility 720ms;
  overflow-y: auto;
}
.menu.open { clip-path: inset(0 0 0 0); visibility: visible; }
.menu__bg {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background: radial-gradient(120% 80% at 80% 0%, var(--emerald-lit) 0%, transparent 60%);
}
.menu__list { position: relative; display: flex; flex-direction: column; gap: 0.15rem; }
.menu__list a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 10vw, 3.4rem);
  line-height: 1.14; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ivory);
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0.22rem 0;
  opacity: 0; transform: translateY(26px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease), color 300ms;
}
.menu.open .menu__list a { opacity: 1; transform: translateY(0); }
.menu__list a:nth-child(1) { transition-delay: 120ms; }
.menu__list a:nth-child(2) { transition-delay: 175ms; }
.menu__list a:nth-child(3) { transition-delay: 230ms; }
.menu__list a:nth-child(4) { transition-delay: 285ms; }
.menu__list a:nth-child(5) { transition-delay: 340ms; }
.menu__list a:nth-child(6) { transition-delay: 395ms; }
.menu__list a:nth-child(7) { transition-delay: 450ms; }
.menu__list a small {
  font-family: var(--f-body); font-size: 0.6rem; letter-spacing: 0.24em;
  color: var(--gold); font-weight: 600;
}
.menu__list a:active { color: var(--gold); }
.menu__foot {
  position: relative; margin-top: auto; padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid; gap: 1rem;
  font-size: 0.82rem; color: var(--sand-dim);
}
.menu__foot .btn { margin-top: 0.5rem; }

/* ===== 8. SECTION SHELL ================================================== */
.section { position: relative; padding: var(--sec-y) 0; }
.section--tight { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--light { background: var(--ivory); color: var(--ink); }
.section--paper { background: var(--ivory-2); color: var(--ink); }
.section--deep  { background: var(--emerald); }
.section--flush { padding-top: 0; }
.on-light { color: var(--ink); }
.on-light .eyebrow { color: var(--emerald); }

.section__head {
  display: grid; gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section__head--split {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: end; gap: clamp(1.5rem, 4vw, 4rem);
}

/* ===== 9. HERO =========================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.14); filter: saturate(0.85) contrast(1.05);
  animation: heroZoom 2400ms var(--ease) forwards;
  will-change: transform;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,15,13,0.82) 0%, rgba(11,15,13,0.28) 32%, rgba(11,15,13,0.72) 72%, var(--ink) 100%),
    linear-gradient(92deg, rgba(11,15,13,0.72) 0%, rgba(11,15,13,0) 62%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__dual {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: var(--t-label); letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 700; color: var(--ivory);
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line);
  background: rgba(11,15,13,0.4);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.hero__dual b { color: var(--gold); font-weight: 700; }
.hero__dual i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.hero__title {
  font-family: var(--f-display);
  font-size: var(--t-hero);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.hero__title .ln { display: block; overflow: hidden; padding-bottom: 0.09em; margin-bottom: -0.09em; }
.hero__title .ln > span {
  display: block; transform: translateY(105%);
  animation: lineUp 1050ms var(--ease) forwards;
}
.hero__title .ln:nth-child(1) > span { animation-delay: 220ms; }
.hero__title .ln:nth-child(2) > span { animation-delay: 330ms; }
.hero__title .ln:nth-child(3) > span { animation-delay: 440ms; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero__title .ital {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  text-transform: none; letter-spacing: -0.02em; color: var(--gold-lit);
  font-size: 0.82em;
}

.hero__foot {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  opacity: 0; animation: fadeUp 900ms var(--ease) 700ms forwards;
}
.hero__sub { max-width: 40ch; color: var(--sand); font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero__scroll {
  position: absolute; right: var(--gut); bottom: clamp(5.5rem, 9vw, 7.5rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand-dim);
  writing-mode: vertical-rl;
  opacity: 0; animation: fadeUp 900ms var(--ease) 1100ms forwards;
}
.hero__scroll i {
  width: 1px; height: 62px; background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2200ms var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.5; transform-origin: top; }
  50%      { transform: scaleY(1); opacity: 1; transform-origin: top; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ===== 10. JOURNEY CATEGORIES ============================================ */
.cats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.75rem, 1.6vw, 1.4rem); }
.cat {
  position: relative; display: block; overflow: hidden;
  min-height: clamp(400px, 62vh, 660px);
  border: 1px solid var(--line);
  border-radius: 2px;
  isolation: isolate;
}
.cat img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 1400ms var(--ease), filter 900ms var(--ease);
  filter: saturate(0.8) brightness(0.72);
}
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,15,13,0.18) 0%, rgba(11,15,13,0.42) 45%, rgba(11,15,13,0.92) 100%);
  transition: opacity 700ms var(--ease);
}
.cat--umroh::after {
  background: linear-gradient(180deg, rgba(14,59,50,0.22) 0%, rgba(11,15,13,0.5) 45%, rgba(11,15,13,0.94) 100%);
}
.cat:hover img { transform: scale(1.12); filter: saturate(0.95) brightness(0.8); }
.cat__body {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 3vw, 2.8rem);
  min-height: inherit;
}
.cat__num {
  position: absolute; top: clamp(1.2rem, 3vw, 2.4rem); left: clamp(1.4rem, 3vw, 2.8rem);
  font-size: var(--t-label); letter-spacing: 0.3em; color: var(--gold); font-weight: 700;
}
.cat__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.9; text-transform: uppercase;
  transition: transform 700ms var(--ease);
}
.cat:hover .cat__title { transform: translateY(-6px); }
.cat__text { color: var(--sand); max-width: 34ch; margin-top: 0.9rem; font-size: 0.95rem; }
.cat__cta {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-lit);
}
.cat__cta i { transition: transform 500ms var(--ease); font-style: normal; }
.cat:hover .cat__cta i { transform: translateX(7px); }

/* ===== 11. PACKAGE CARDS ================================================= */
.pkg-grid {
  display: grid; gap: clamp(1rem, 2vw, 1.8rem);
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
}
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 2px; overflow: hidden;
  transition: transform 620ms var(--ease), border-color 620ms var(--ease), box-shadow 620ms var(--ease);
  will-change: transform;
}
.section--light .pkg, .section--paper .pkg {
  background: #fff; border-color: rgba(11,15,13,0.10);
  box-shadow: 0 1px 2px rgba(11,15,13,0.04);
}
.pkg:hover {
  transform: translateY(-7px);
  border-color: rgba(194,161,92,0.5);
  box-shadow: 0 34px 60px -34px rgba(0,0,0,0.85);
}
.section--light .pkg:hover { box-shadow: 0 34px 60px -38px rgba(14,59,50,0.5); }
.pkg__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pkg__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1300ms var(--ease), filter 800ms var(--ease);
  filter: saturate(0.85);
}
.pkg:hover .pkg__media img { transform: scale(1.11); filter: saturate(1); }
.pkg__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,15,13,0.72) 100%);
}
.pkg__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  padding: 0.42rem 0.7rem;
  background: rgba(11,15,13,0.62); color: var(--gold-lit);
  border: 1px solid rgba(194,161,92,0.42);
  backdrop-filter: blur(8px); border-radius: 2px;
}
.pkg__type {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
  color: var(--ivory); opacity: 0.86;
}
.pkg__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.3rem 1.3rem; gap: 0.75rem; }
.pkg__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand-dim); font-weight: 600;
}
.section--light .pkg__meta, .section--paper .pkg__meta { color: #7B7361; }
.pkg__title {
  font-family: var(--f-serif); font-size: 1.5rem; line-height: 1.15; font-weight: 500;
  letter-spacing: -0.01em;
}
.pkg__sub { font-size: 0.86rem; color: var(--sand-dim); line-height: 1.55; }
.section--light .pkg__sub, .section--paper .pkg__sub { color: #6C6455; }
.pkg__hl { display: grid; gap: 0.38rem; margin-top: 0.2rem; }
.pkg__hl li {
  position: relative; padding-left: 1.05rem; font-size: 0.8rem; line-height: 1.5;
  color: var(--sand);
}
.section--light .pkg__hl li, .section--paper .pkg__hl li { color: #4A4437; }
.pkg__hl li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg);
}
.pkg__foot {
  margin-top: auto; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.section--light .pkg__foot, .section--paper .pkg__foot { border-top-color: rgba(11,15,13,0.10); }
.pkg__price small {
  display: block; font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand-dim); margin-bottom: 3px;
}
.section--light .pkg__price small, .section--paper .pkg__price small { color: #7B7361; }
.pkg__price strong {
  font-family: var(--f-display); font-size: 1.6rem; letter-spacing: 0.03em;
  color: var(--gold); font-weight: 400;
}
.section--light .pkg__price strong, .section--paper .pkg__price strong { color: var(--emerald); }
.pkg__price em { display: block; font-style: normal; font-size: 0.62rem; color: var(--sand-dim); }
.section--light .pkg__price em, .section--paper .pkg__price em { color: #7B7361; }

.pkg-more { margin-top: clamp(2rem, 4vw, 3.2rem); display: flex; justify-content: center; }

/* ===== 12. WHY US ======================================================== */
.reasons {
  display: grid; gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.reason {
  background: var(--ivory); padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: background 520ms var(--ease);
}
.reason:hover { background: #fff; }
.reason__no {
  font-family: var(--f-display); font-size: 1.5rem; color: var(--gold);
  letter-spacing: 0.1em;
}
.reason h3 { font-family: var(--f-serif); font-size: 1.35rem; font-weight: 600; line-height: 1.2; }
.reason p { font-size: 0.88rem; color: #5A5346; line-height: 1.65; }

/* ===== 13. DESTINATION RAIL ============================================== */
.rail-wrap { position: relative; }
.rail-scroll {
  display: flex; gap: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gut) 1.6rem;
  margin: 0 calc(var(--gut) * -1);
  scrollbar-width: none; cursor: grab;
}
.rail-scroll::-webkit-scrollbar { display: none; }
.rail-scroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.dest {
  position: relative; flex: 0 0 auto;
  width: clamp(228px, 27vw, 366px);
  aspect-ratio: 3 / 4.2;
  scroll-snap-align: start;
  overflow: hidden; border-radius: 2px;
  border: 1px solid var(--line);
  isolation: isolate;
}
.dest img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8) brightness(0.76);
  transform: scale(1.03);
  transition: transform 1300ms var(--ease), filter 800ms var(--ease);
}
.dest:hover img { transform: scale(1.12); filter: saturate(1) brightness(0.86); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,15,13,0.9) 100%);
}
.dest__body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(1rem, 2vw, 1.5rem);
}
.dest__region {
  font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; display: block; margin-bottom: 0.45rem;
}
.dest__name {
  font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase; line-height: 0.95;
}
.dest__blurb {
  font-size: 0.8rem; color: var(--sand); line-height: 1.5; margin-top: 0.5rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 620ms var(--ease), opacity 480ms var(--ease), margin 620ms var(--ease);
}
.dest:hover .dest__blurb, .dest:focus-within .dest__blurb { max-height: 6rem; opacity: 1; }
.rail-hint {
  display: flex; align-items: center; gap: 0.8rem; margin-top: 0.4rem;
  font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sand-dim);
}
.rail-hint i { flex: 1; height: 1px; background: var(--line); font-style: normal; }

/* ===== 14. PROMO ========================================================= */
.promo { position: relative; overflow: hidden; }
.promo__media { position: absolute; inset: 0; z-index: 0; }
.promo__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.5); }
.promo__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, rgba(11,15,13,0.94) 8%, rgba(14,59,50,0.72) 55%, rgba(11,15,13,0.5) 100%);
}
.promo__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.promo__card {
  background: rgba(11,15,13,0.55);
  border: 1px solid rgba(194,161,92,0.32);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: clamp(1.5rem, 3vw, 2.4rem); border-radius: 2px;
  display: grid; gap: 1rem;
}
.promo__card h3 { font-family: var(--f-serif); font-size: 1.75rem; font-weight: 500; }
.promo__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0; border-bottom: 1px dashed rgba(247,242,232,0.16);
  font-size: 0.84rem;
}
.promo__row span { color: var(--sand-dim); }
.promo__row b { font-weight: 600; }

/* ===== 15. GALLERY ======================================================= */
.gal {
  columns: 4;
  column-gap: clamp(0.5rem, 1vw, 0.85rem);
}
.gal figure {
  position: relative; overflow: hidden; border-radius: 2px;
  border: 1px solid var(--line);
  break-inside: avoid; -webkit-column-break-inside: avoid;
  margin: 0 0 clamp(0.5rem, 1vw, 0.85rem);
}
/* Varied ratios give the column flow an editorial rhythm without gaps */
.gal figure:nth-child(8n+1) { aspect-ratio: 3 / 4; }
.gal figure:nth-child(8n+2) { aspect-ratio: 1 / 1; }
.gal figure:nth-child(8n+3) { aspect-ratio: 4 / 3; }
.gal figure:nth-child(8n+4) { aspect-ratio: 4 / 5; }
.gal figure:nth-child(8n+5) { aspect-ratio: 4 / 3; }
.gal figure:nth-child(8n+6) { aspect-ratio: 3 / 4; }
.gal figure:nth-child(8n+7) { aspect-ratio: 1 / 1; }
.gal figure:nth-child(8n+8) { aspect-ratio: 4 / 5; }
.gal img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.78) brightness(0.82);
  transform: scale(1.02);
  transition: transform 1200ms var(--ease), filter 700ms var(--ease);
}
.gal figure:hover img { transform: scale(1.1); filter: saturate(1) brightness(0.95); }
.gal figcaption {
  position: absolute; inset: auto 0 0 0; padding: 0.9rem;
  background: linear-gradient(transparent, rgba(11,15,13,0.88));
  display: flex; flex-direction: column; gap: 2px;
}
.gal figcaption b {
  font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
}
.gal figcaption span {
  font-family: var(--f-serif); font-size: 1rem; font-style: italic; color: var(--ivory);
  opacity: 0; transform: translateY(8px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.gal figure:hover figcaption span { opacity: 1; transform: none; }

/* ===== 16. TESTIMONIALS ================================================== */
.quotes {
  display: flex; gap: clamp(0.75rem, 1.6vw, 1.4rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gut) 1.4rem; margin: 0 calc(var(--gut) * -1);
  scrollbar-width: none; cursor: grab;
}
.quotes::-webkit-scrollbar { display: none; }
.quotes.dragging { cursor: grabbing; scroll-snap-type: none; }
.quote {
  flex: 0 0 auto; width: min(430px, 82vw);
  scroll-snap-align: start;
  background: var(--ink-2); border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.2rem); border-radius: 2px;
  display: flex; flex-direction: column; gap: 1.3rem;
  transition: border-color 520ms var(--ease), transform 520ms var(--ease);
}
.quote:hover { border-color: rgba(194,161,92,0.42); transform: translateY(-4px); }
.quote__mark { font-family: var(--f-serif); font-size: 3.4rem; line-height: 0.6; color: var(--gold); opacity: 0.5; }
.quote p { font-family: var(--f-serif); font-size: 1.22rem; line-height: 1.45; font-weight: 300; }
.quote__who {
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.9rem;
}
.quote__av {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(140deg, var(--emerald-lit), var(--charcoal));
  border: 1px solid rgba(194,161,92,0.4);
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 0.9rem; color: var(--gold-lit);
}
.quote__who b { display: block; font-size: 0.86rem; font-weight: 600; }
.quote__who span {
  display: block; font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sand-dim);
}
.note-placeholder {
  margin-top: 1.4rem; font-size: 0.72rem; color: var(--sand-dim);
  border-left: 2px solid rgba(194,161,92,0.4); padding-left: 0.85rem; max-width: 62ch;
}

/* ===== 17. STATISTICS ==================================================== */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px; background: rgba(247,242,232,0.13);
  border: 1px solid rgba(247,242,232,0.13);
}
.stat {
  background: var(--emerald); padding: clamp(1.6rem, 3.4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.stat b {
  font-family: var(--f-display); font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.9; color: var(--gold-lit); font-weight: 400;
}
.stat span { font-size: 0.86rem; font-weight: 600; }
.stat small { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,242,232,0.5); }

/* ===== 18. FAQ =========================================================== */
.faq-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.faq-group > h3 {
  font-family: var(--f-display); font-size: 1.6rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--emerald); margin-bottom: 1rem;
  padding-bottom: 0.7rem; border-bottom: 1px solid var(--line-dark);
}
.acc { border-bottom: 1px solid var(--line-dark); }
.acc__btn {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; gap: 1rem; justify-content: space-between;
  padding: 1.1rem 0; text-align: left;
  font-family: var(--f-body); font-size: 0.98rem; font-weight: 600; line-height: 1.45;
  color: var(--ink);
  transition: color 320ms var(--ease);
}
.acc__btn:hover { color: var(--emerald); }
.acc__ico {
  flex: 0 0 auto; position: relative; width: 16px; height: 16px; margin-top: 5px;
}
.acc__ico::before, .acc__ico::after {
  content: ""; position: absolute; background: var(--gold);
  transition: transform 460ms var(--ease), opacity 300ms;
}
.acc__ico::before { left: 0; top: 7.5px; width: 16px; height: 1.5px; }
.acc__ico::after  { left: 7.5px; top: 0; width: 1.5px; height: 16px; }
.acc[open] .acc__ico::after { transform: rotate(90deg); opacity: 0; }
.acc__panel {
  overflow: hidden; max-height: 0;
  transition: max-height 560ms var(--ease);
}
.acc[open] .acc__panel { max-height: 46rem; }
.acc__panel p {
  padding: 0 2rem 1.35rem 0; font-size: 0.9rem; color: #5A5346; line-height: 1.72;
}

/* ===== 19. FINAL CTA ===================================================== */
.final { position: relative; overflow: hidden; text-align: center; }
.final__media { position: absolute; inset: 0; z-index: 0; }
.final__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.36) saturate(0.7); }
.final__inner { position: relative; z-index: 2; display: grid; gap: 1.6rem; justify-items: center; }
.final__title {
  font-family: var(--f-display); font-size: var(--t-mega); line-height: 0.86; text-transform: uppercase;
}
.final__title em {
  font-family: var(--f-serif); font-style: italic; text-transform: none;
  color: var(--gold-lit); font-weight: 300;
}
.final__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ===== 20. FOOTER ======================================================== */
.foot { background: var(--ink-2); border-top: 1px solid var(--line); padding-top: clamp(3rem, 7vw, 5.5rem); }
.foot__grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 1.1fr);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.foot__mark { font-family: var(--f-display); font-size: 2.2rem; letter-spacing: 0.16em; }
.foot p { color: var(--sand-dim); font-size: 0.88rem; max-width: 42ch; margin-top: 0.9rem; }
.foot h4 {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem; font-weight: 700;
}
.foot__links { display: grid; gap: 0.6rem; }
.foot__links a { font-size: 0.88rem; color: var(--sand); transition: color 300ms, padding-left 400ms var(--ease); }
.foot__links a:hover { color: var(--gold-lit); padding-left: 6px; }
.foot__contact { display: grid; gap: 0.85rem; font-size: 0.88rem; color: var(--sand); }
.foot__contact a:hover { color: var(--gold-lit); }
.foot__addr { color: var(--sand-dim); line-height: 1.6; font-size: 0.82rem; }
.foot__social { display: flex; gap: 0.6rem; margin-top: 0.4rem; flex-wrap: wrap; }
.foot__social a, .foot__social span {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 0.55rem 0.85rem; border-radius: 2px;
  transition: border-color 340ms, color 340ms;
}
.foot__social a:hover { border-color: var(--gold); color: var(--gold-lit); }
.foot__social span { opacity: 0.4; }
.foot__bar {
  border-top: 1px solid var(--line); padding: 1.5rem 0 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.72rem; color: var(--sand-dim);
}

/* ===== 21. INNER PAGES =================================================== */
.page-head {
  position: relative; padding: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)) 0 clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden; border-bottom: 1px solid var(--line);
}
.page-head__media { position: absolute; inset: 0; z-index: 0; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.34) saturate(0.72); }
.page-head__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,15,13,0.86), rgba(11,15,13,0.6) 55%, var(--ink) 100%);
}
.page-head__inner { position: relative; z-index: 2; }
.page-head__title {
  font-family: var(--f-display); font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.88; text-transform: uppercase; margin: 0.8rem 0 0.6rem;
}
.page-head__sub { color: var(--sand); max-width: 56ch; }

/* Step meter — a real sequence, so numbering is meaningful here */
.steps {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.1rem;
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
  color: var(--sand-dim);
}
.steps li { display: flex; align-items: center; gap: 0.6rem; }
.steps li::after { content: ""; width: 22px; height: 1px; background: var(--line); }
.steps li:last-child::after { display: none; }
.steps li b {
  display: grid; place-items: center; width: 22px; height: 22px;
  border: 1px solid var(--line); border-radius: 50%; font-size: 0.6rem;
}
.steps li.done { color: var(--sand); }
.steps li.done b { border-color: var(--gold); color: var(--gold); }
.steps li.now { color: var(--gold-lit); }
.steps li.now b { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.layout-2 {
  display: grid; gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  align-items: start;
}

.panel {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 2px; padding: clamp(1.35rem, 3vw, 2.2rem);
}
.panel + .panel { margin-top: clamp(1rem, 2vw, 1.5rem); }
.panel__title {
  font-family: var(--f-display); font-size: 1.5rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.2rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--line);
}
.sticky { position: sticky; top: calc(var(--nav-h) + 16px); }

/* Package summary aside */
.sumcard { overflow: hidden; }
.sumcard__media { position: relative; aspect-ratio: 16 / 10; margin: calc(-1 * clamp(1.35rem, 3vw, 2.2rem)); margin-bottom: 1.3rem; }
.sumcard__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.8); }
.sumcard__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,23,20,0.96) 100%);
}
.sumcard__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  padding: 0.4rem 0.65rem; background: rgba(11,15,13,0.66);
  border: 1px solid rgba(194,161,92,0.4); color: var(--gold-lit); border-radius: 2px;
}
.sumcard h2 { font-family: var(--f-serif); font-size: 1.7rem; font-weight: 500; line-height: 1.16; }
.sumcard__sub { color: var(--sand-dim); font-size: 0.88rem; margin-top: 0.35rem; }

.dl { display: grid; gap: 0; margin-top: 1.2rem; }
.dl div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.72rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.dl div:last-child { border-bottom: 0; }
.dl dt { color: var(--sand-dim); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }
.dl dd { margin: 0; text-align: right; font-weight: 600; }

.total {
  margin-top: 1.2rem; padding: 1.15rem 1.25rem;
  background: var(--emerald); border: 1px solid rgba(194,161,92,0.34); border-radius: 2px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.total span { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(247,242,232,0.66); }
.total b { font-family: var(--f-display); font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--gold-lit); font-weight: 400; line-height: 1; }
.total small { display: block; font-size: 0.62rem; color: rgba(247,242,232,0.5); margin-top: 4px; }

/* Itinerary timeline */
.tl { position: relative; padding-left: clamp(1.6rem, 4vw, 2.6rem); }
.tl::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(var(--gold), rgba(194,161,92,0.08));
}
.tl__item { position: relative; padding-bottom: clamp(1.8rem, 4vw, 3rem); }
.tl__item:last-child { padding-bottom: 0; }
.tl__dot {
  position: absolute; left: calc(-1 * clamp(1.6rem, 4vw, 2.6rem)); top: 6px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--ink); border: 1px solid var(--gold);
  display: grid; place-items: center;
}
.tl__dot::after { content: ""; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.tl__day {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.tl__title { font-family: var(--f-serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 500; margin: 0.35rem 0 0.15rem; }
.tl__loc {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand-dim);
  margin-bottom: 0.7rem;
}
.tl__loc::before { content: ""; width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); }
.tl__grid { display: grid; grid-template-columns: minmax(0, 1fr) 152px; gap: 1.3rem; align-items: start; }
.tl__thumb { overflow: hidden; border-radius: 2px; border: 1px solid var(--line); aspect-ratio: 4/3; }
.tl__thumb img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) brightness(0.86);
  transition: transform 1100ms var(--ease), filter 700ms var(--ease);
}
.tl__item:hover .tl__thumb img { transform: scale(1.09); filter: saturate(1) brightness(1); }
.tl__desc { color: var(--sand); font-size: 0.92rem; line-height: 1.72; }

/* Inclusion / exclusion lists */
.chips { display: grid; gap: 0.55rem; }
.chips li { position: relative; padding-left: 1.5rem; font-size: 0.88rem; color: var(--sand); line-height: 1.6; }
.chips li::before {
  position: absolute; left: 0; top: 0; font-weight: 700;
}
.chips--in li::before { content: "+"; color: var(--gold); }
.chips--out li::before { content: "–"; color: var(--sand-dim); }

/* Terms */
.terms-block { padding: clamp(1.4rem, 3vw, 2rem) 0; border-bottom: 1px solid var(--line); }
.terms-block:last-of-type { border-bottom: 0; }
.terms-block h3 {
  font-family: var(--f-display); font-size: 1.45rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-lit); margin-bottom: 0.9rem;
  display: flex; align-items: baseline; gap: 0.9rem;
}
.terms-block h3 b { font-size: 0.72rem; color: var(--sand-dim); font-weight: 600; letter-spacing: 0.2em; }
.terms-block ol { counter-reset: ti; display: grid; gap: 0.75rem; }
.terms-block li {
  position: relative; counter-increment: ti; padding-left: 2.1rem;
  font-size: 0.9rem; color: var(--sand); line-height: 1.72;
}
.terms-block li::before {
  content: counter(ti, decimal-leading-zero);
  position: absolute; left: 0; top: 0.15em;
  font-size: 0.66rem; letter-spacing: 0.1em; color: var(--gold); font-weight: 700;
}
.toc { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.toc a {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--line); padding: 0.55rem 0.9rem; border-radius: 2px; color: var(--sand);
  transition: border-color 340ms, color 340ms, background 340ms;
}
.toc a:hover { border-color: var(--gold); color: var(--gold-lit); }

/* Consent gate */
.gate {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--ink-2); border: 1px solid rgba(194,161,92,0.34);
  border-radius: 2px; padding: clamp(1.3rem, 3vw, 2rem);
  display: grid; gap: 1.2rem;
}
.check { position: relative; display: flex; gap: 0.95rem; align-items: flex-start; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box {
  flex: 0 0 auto; width: 26px; height: 26px; margin-top: 1px;
  border: 1px solid var(--sand-dim); border-radius: 2px;
  display: grid; place-items: center;
  transition: border-color 320ms, background 320ms;
}
.check__box::after {
  content: ""; width: 12px; height: 6px;
  border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg) scale(0.4); opacity: 0;
  transition: transform 320ms var(--ease), opacity 240ms;
}
.check input:checked + .check__box { background: var(--gold); border-color: var(--gold); }
.check input:checked + .check__box::after { transform: rotate(-45deg) scale(1); opacity: 1; }
.check input:focus-visible + .check__box { outline: 2px solid var(--gold-lit); outline-offset: 3px; }
.check__label { font-size: 0.95rem; line-height: 1.6; font-weight: 500; }
.check__label small { display: block; font-size: 0.78rem; color: var(--sand-dim); font-weight: 400; margin-top: 3px; }
.gate__hint { font-size: 0.74rem; color: var(--sand-dim); }

/* Alerts */
.alert {
  border-left: 2px solid var(--gold); background: rgba(194,161,92,0.09);
  padding: 0.95rem 1.15rem; border-radius: 2px; font-size: 0.88rem;
  margin-bottom: 1.4rem; color: var(--sand);
}
.alert--bad { border-left-color: #D2705C; background: rgba(210,112,92,0.11); }
.alert b { color: var(--ivory); }

.notice-empty { display: grid; gap: 1.4rem; justify-items: start; padding: clamp(3rem, 10vw, 7rem) 0; }

/* Summary specifics */
.ref-chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px dashed rgba(194,161,92,0.5); color: var(--gold-lit);
  padding: 0.55rem 0.9rem; border-radius: 2px;
}
.paybox {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(194,161,92,0.34); border-radius: 2px;
  background: linear-gradient(150deg, rgba(14,59,50,0.55), var(--ink-2));
  padding: clamp(1.4rem, 3.4vw, 2.4rem);
  display: grid; gap: 1.2rem;
}
.paybox h3 { font-family: var(--f-serif); font-size: 1.6rem; font-weight: 500; }
.paybox p { color: var(--sand); font-size: 0.9rem; max-width: 60ch; }

.print-only { display: none; }

/* ===== 22. FORMS ========================================================= */
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand-dim); font-weight: 700;
}
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(247,242,232,0.03);
  border: 1px solid var(--line); border-radius: 2px;
  padding: 0.95rem 1rem; color: var(--ivory);
  font-size: 0.95rem;
  transition: border-color 340ms var(--ease), background 340ms var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247,242,232,0.28); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(247,242,232,0.06);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #D2705C; }
.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.field select option { background: var(--ink-2); color: var(--ivory); }
.field__err { font-size: 0.74rem; color: #E8917D; }
.field__hint { font-size: 0.72rem; color: var(--sand-dim); }

.stepper { display: flex; align-items: stretch; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.stepper button {
  width: 52px; background: rgba(247,242,232,0.04); border: 0; cursor: pointer;
  font-size: 1.15rem; color: var(--gold); transition: background 300ms;
}
.stepper button:hover { background: rgba(194,161,92,0.18); }
.stepper input {
  border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  text-align: center; border-radius: 0; background: transparent;
  flex: 1 1 auto; min-width: 0;
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.form-foot { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }

/* Floating WhatsApp */
.wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--emerald-lit); color: var(--ivory);
  border: 1px solid rgba(247,242,232,0.2);
  padding: 0.85rem 1.15rem; border-radius: 100px;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  box-shadow: 0 18px 36px -18px rgba(0,0,0,0.9);
  transition: transform 400ms var(--ease), background 400ms;
}
.wa:hover { transform: translateY(-3px); background: var(--gold); color: var(--ink); }
.wa svg { width: 17px; height: 17px; fill: currentColor; }

/* ===== 23. REVEAL SYSTEM ================================================= */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-1 { transition-delay: 90ms; }
.rv-2 { transition-delay: 180ms; }
.rv-3 { transition-delay: 270ms; }
.rv-4 { transition-delay: 360ms; }
.rv-5 { transition-delay: 450ms; }

.rv-mask { clip-path: inset(0 0 100% 0); transition: clip-path 1100ms var(--ease); }
.rv-mask.in { clip-path: inset(0 0 0 0); }

.page-fade { animation: pageIn 620ms var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rv, .rv-mask { opacity: 1; transform: none; clip-path: none; }
  .hero__title .ln > span { transform: none; }
  .hero__foot, .hero__scroll { opacity: 1; }
  .grain { display: none; }
  .cursor-glow { display: none; }
}

/* ===== 24. RESPONSIVE ==================================================== */
@media (max-width: 1080px) {
  .layout-2 { grid-template-columns: 1fr; }
  .sticky { position: static; }
  .promo__grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .section__head--split { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .cats { grid-template-columns: 1fr; }
  .cat { min-height: 62vh; }
  .gal { columns: 3; }
  .gal figcaption span { opacity: 1; transform: none; }
  .dest__blurb { max-height: 6rem; opacity: 1; }
  .tl__grid { grid-template-columns: 1fr; }
  .tl__thumb { aspect-ratio: 16/9; max-width: 320px; }
  .foot__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 92svh; }
  .hero__scroll { display: none; }
  .cursor-glow { display: none; }
}

@media (max-width: 560px) {
  :root { --sec-y: clamp(3.5rem, 14vw, 5rem); }
  .btn { padding: 1rem 1.5rem; font-size: 0.68rem; letter-spacing: 0.16em; }
  .btn--lg { padding: 1.1rem 1.7rem; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .pkg-grid { grid-template-columns: 1fr; }
  .gal { columns: 2; }
  .stack__ghost { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .quote { width: 84vw; }
  .dest { width: 74vw; }
  .wa { padding: 0.8rem 1rem; font-size: 0.62rem; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { justify-content: center; }
  .total { flex-direction: column; align-items: flex-start; }
  .steps { font-size: 0.55rem; letter-spacing: 0.18em; }
  .steps li::after { width: 12px; }
}

@media print {
  .nav, .menu, .wa, .grain, .cursor-glow, .preloader, .hero__scroll, .btn, .foot { display: none !important; }
  body { background: #fff; color: #000; }
  .panel, .section { background: #fff !important; color: #000 !important; border-color: #ccc; }
  .print-only { display: block; }
}

/* --- native <details> accordion resets (appended) ------------------------ */
.acc summary { list-style: none; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::marker { content: ""; }

/* --- No-JavaScript fallbacks -------------------------------------------- */
.no-js .rv, .no-js .rv-mask { opacity: 1; transform: none; clip-path: none; }
.no-js .preloader { display: none; }
.gate noscript { display: block; }
.gate noscript p { font-size: 0.82rem; color: var(--sand-dim); margin-bottom: 0.9rem; }
