/* ============================================================
   Dudhsagar Trek — Design System
   Palette: milky waterfall cream + wet basalt black + jungle green
            + a signature waterfall-spray teal for the accent
   ============================================================ */

:root {
  /* Basalt (deep charcoal-teal — evokes wet Ghats rock) */
  --basalt-950: #0a1519;
  --basalt-900: #0f2027;
  --basalt-800: #182f38;
  --basalt-700: #23414c;

  /* Jungle greens (Western Ghats canopy) */
  --jungle-900: #0f2b1f;
  --jungle-800: #163a28;
  --jungle-700: #205038;
  --jungle-600: #2c6a4a;

  /* Waterfall spray — signature accent, silver-teal turquoise */
  --spray-700:  #0d7089;
  --spray-600:  #128aa4;
  --spray-500:  #23a1bd;   /* primary accent */
  --spray-400:  #5abfd4;
  --spray-100:  #dff2f5;

  /* Milk (the "sea of milk") — creamy off-whites */
  --milk-50:    #fbfaf6;
  --milk-100:   #f4f1e8;
  --milk-200:   #eae5d4;
  --milk-300:   #d8d1bb;

  /* Neutrals */
  --stone-500:  #6b7770;
  --stone-700:  #3c463f;

  /* Warm gold accent (sunlit canopy, price highlights) */
  --gold:       #d4a24a;
  --gold-dark:  #a97b26;

  --white:      #ffffff;
  --black:      #000000;

  /* Semantic */
  --bg:         var(--milk-50);
  --bg-alt:     var(--milk-100);
  --ink:        var(--basalt-950);
  --ink-soft:   #2a3438;
  --muted:      #6c7770;
  --line:       rgba(10,21,25,0.09);
  --accent:     var(--spray-500);
  --accent-dark: var(--spray-700);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter:    clamp(20px, 4vw, 40px);
  --section-y: clamp(64px, 9vw, 120px);
  --radius:    6px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* Typography scale */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); line-height: 1.7; }

/* Kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--spray-700);
  margin-bottom: 20px;
}
.kicker::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--spray-500);
}

/* Container / section */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--basalt-950);
  color: var(--milk-50);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--milk-50); }
.section--dark p { color: rgba(251,250,246,0.78); }
.section--dark .kicker { color: var(--spray-400); }
.section--dark .kicker::before { background: var(--spray-400); }
.section--jungle {
  background: linear-gradient(160deg, var(--jungle-900), var(--basalt-950));
  color: var(--milk-50);
}
.section--jungle h1, .section--jungle h2, .section--jungle h3 { color: var(--milk-50); }
.section--jungle p { color: rgba(251,250,246,0.78); }
.section--jungle .kicker { color: var(--spray-400); }
.section--jungle .kicker::before { background: var(--spray-400); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--spray-500);
  color: var(--white);
  box-shadow: 0 8px 24px -10px rgba(35,161,189,0.7);
}
.btn--primary:hover { background: var(--spray-600); transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(35,161,189,0.8); }
.btn--gold {
  background: var(--gold);
  color: var(--basalt-950);
  box-shadow: 0 8px 24px -10px rgba(212,162,74,0.55);
}
.btn--gold:hover { background: var(--gold-dark); color: var(--milk-50); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}
.btn--ghost:hover { background: var(--ink); color: var(--milk-50); border-color: var(--ink); }
.section--dark .btn--ghost:hover,
.section--jungle .btn--ghost:hover { background: var(--milk-50); color: var(--basalt-950); border-color: var(--milk-50); }
.btn--dark { background: var(--basalt-900); color: var(--milk-50); }
.btn--dark:hover { background: var(--basalt-800); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav__inner { display: flex; align-items: center; gap: 32px; }
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--milk-50);
  letter-spacing: 0.01em;
}
.nav__brand-img {
  height: 62px;
  width: auto;
  display: block;
  transition: filter .35s var(--ease);
}
@media (max-width: 700px) { .nav__brand-img { height: 44px; } }
@media (max-width: 480px) { .nav__brand-img { height: 38px; } }
/* Legacy mark (fallback if the image ever fails to load) */
.nav__brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--spray-400), var(--spray-700));
  display: grid; place-items: center;
  color: var(--milk-50);
  font-size: 1rem;
  box-shadow: inset 0 -6px 12px rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.nav__brand-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.7), transparent 55%);
}
.nav__brand-mark svg { position: relative; z-index: 1; width: 20px; height: 20px; flex-shrink: 0; }
.nav__menu { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__link {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--milk-50);
  padding: 8px 0;
  position: relative;
  transition: color .3s var(--ease);
}
.nav__link:hover { color: var(--spray-400); }
.nav__item { position: relative; }
.nav__item--has-menu > .nav__link::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.7em;
  opacity: 0.7;
}
.nav__submenu {
  position: absolute;
  top: 100%; left: -14px;
  min-width: 250px;
  padding: 12px;
  background: var(--milk-50);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
}
.nav__item--has-menu:hover .nav__submenu,
.nav__item--has-menu:focus-within .nav__submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s 0s;
}
.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--basalt-900);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__submenu a:hover { background: var(--milk-100); color: var(--spray-700); }
.nav__cta { margin-left: 8px; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 6px;
  align-items: center; justify-content: center;
  margin-left: auto;
  color: var(--milk-50);
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor;
  position: relative;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top:  7px; }

.nav.is-solid,
.nav--solid {
  background: rgba(251,250,246,0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  padding: 6px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-solid .nav__brand,
.nav.is-solid .nav__link,
.nav.is-solid .nav__toggle,
.nav--solid .nav__brand,
.nav--solid .nav__link,
.nav--solid .nav__toggle { color: var(--basalt-900); }
.nav.is-solid .nav__link:hover,
.nav--solid .nav__link:hover { color: var(--spray-700); }

.nav__toggle[aria-expanded="true"] { position: relative; z-index: 210; color: var(--milk-50); }
.nav__toggle[aria-expanded="true"] span { background: transparent !important; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); background: var(--milk-50); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); background: var(--milk-50); }

.nav__backdrop {
  position: fixed; inset: 0;
  background: rgba(3,9,10,0.55);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
  z-index: 190;
}
body.menu-open .nav__backdrop { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 100px 32px 40px;
    background: var(--basalt-950);
    color: var(--milk-50);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
    z-index: 200;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { color: var(--milk-50) !important; padding: 16px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; }
  .nav__submenu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 12px 12px;
    min-width: 0;
  }
  .nav__submenu a { color: rgba(251,250,246,0.75); padding: 8px 0; }
  .nav__submenu a:hover { background: transparent; color: var(--spray-400); }
  .nav__cta { margin-top: 20px; }
  body.menu-open { overflow: hidden; }
}

/* ============================================================
   HERO — cascading milk over basalt
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--milk-50);
  overflow: hidden;
  padding: 130px 0 90px;
  isolation: isolate;
  background: var(--basalt-950);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}
/* Basalt gradient wash — dark enough for white text over a busy monsoon image */
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,14,17,0.92) 0%, rgba(6,14,17,0.78) 55%, rgba(6,14,17,0.62) 100%),
    linear-gradient(180deg, rgba(6,14,17,0.55) 0%, rgba(6,14,17,0.35) 40%, rgba(6,14,17,0.96) 100%);
  z-index: -1;
}
/* A hairline "waterfall" streak — a diagonal silver band on the right */
.hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 8%;
  width: 3px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255,255,255,0.05) 10%,
    rgba(90,191,212,0.55) 40%,
    rgba(255,255,255,0.7) 60%,
    rgba(90,191,212,0.25) 85%,
    transparent 100%);
  filter: blur(1px);
  pointer-events: none;
  z-index: -1;
  animation: cascade 4.5s var(--ease) infinite;
}
@keyframes cascade {
  0%   { opacity: 0.35; transform: translateY(-6%) scaleY(1); }
  50%  { opacity: 0.85; transform: translateY(0) scaleY(1.04); }
  100% { opacity: 0.35; transform: translateY(6%) scaleY(1); }
}
.hero__content {
  max-width: 820px;
  position: relative;
  padding: 38px 42px 42px;
  background: linear-gradient(135deg, rgba(6,14,17,0.78), rgba(6,14,17,0.55));
  border-left: 3px solid var(--spray-500);
  backdrop-filter: blur(6px) saturate(1.1);
  border-radius: 6px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.hero__kicker { color: var(--spray-400); text-shadow: 0 1px 12px rgba(0,0,0,0.7); }
.hero__kicker::before { background: var(--spray-400); }
.hero__title {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.6);
}
.hero__title em { font-style: italic; color: var(--spray-400); font-weight: 400; }
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(251,250,246,0.9);
  max-width: 650px;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__price {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: var(--milk-50);
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}
.hero__price b { font-family: var(--serif); font-size: 1.35rem; color: var(--spray-400); }
.hero__price s { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(48px, 8vw, 80px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--milk-50);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero__stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(251,250,246,0.7);
}
.hero__scroll {
  position: absolute;
  bottom: 30px; right: var(--gutter);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 14px;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 60px;
  background: currentColor;
  animation: scroll-cue 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scroll-cue { 0%{transform:scaleY(0);opacity:0} 40%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(0);opacity:0;transform-origin:bottom} }
@media (max-width: 700px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { display: none; }
}

.hero--compact { min-height: 58vh; padding: 140px 0 60px; }
.hero--compact .hero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ============================================================
   Trust bar (below hero)
   ============================================================ */
.trust-bar {
  background: var(--milk-50);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px 0;
  align-items: center;
}
@media (max-width: 700px) { .trust-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 28px 0; } }
.trust-bar__cell {
  display: flex; align-items: center; gap: 14px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  min-height: 52px;
}
.trust-bar__cell:last-child { border-right: 0; }
@media (max-width: 700px) {
  .trust-bar__cell { border-right: 0; padding: 0 16px; }
  .trust-bar__cell:nth-child(odd) { border-right: 1px solid var(--line); }
}
.trust-bar__icon {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--spray-100);
  color: var(--spray-700);
  display: grid; place-items: center;
  overflow: hidden;
}
.trust-bar__icon svg { width: 20px !important; height: 20px !important; flex-shrink: 0; }
.trust-bar__value { font-family: var(--serif); font-size: 1.4rem; line-height: 1; color: var(--ink); }
.trust-bar__label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ============================================================
   Sticky book bar (appears after hero)
   ============================================================ */
.stickybook {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 120%);
  z-index: 95;
  background: var(--basalt-950);
  color: var(--milk-50);
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform .45s var(--ease), opacity .45s var(--ease);
  opacity: 0;
  pointer-events: none;
  max-width: calc(100vw - 40px);
}
.stickybook.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.stickybook__price { display: flex; flex-direction: column; line-height: 1; }
.stickybook__price b { font-family: var(--serif); font-size: 1.3rem; color: var(--spray-400); }
.stickybook__price span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }
.stickybook__cta { background: var(--spray-500); color: #fff; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 8px; transition: background .3s var(--ease); }
.stickybook__cta:hover { background: var(--spray-600); }
@media (max-width: 500px) {
  .stickybook { padding: 10px 12px 10px 18px; gap: 12px; }
  .stickybook__price b { font-size: 1.15rem; }
  .stickybook__cta { padding: 10px 16px; font-size: 0.82rem; }
}

/* ============================================================
   Cards
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) {
  .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid var(--line);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -30px rgba(0,0,0,0.28); }
.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--milk-200);
  position: relative;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 24px 26px 28px; }
.card__eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--spray-700); margin-bottom: 10px; font-weight: 600; }
.card__title { font-size: 1.3rem; margin-bottom: 10px; }
.card__excerpt { font-size: 0.94rem; color: var(--muted); margin-bottom: 16px; }
.card__more {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--spray-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.card__more::after { content: '→'; transition: transform .3s var(--ease); }
.card:hover .card__more::after { transform: translateX(4px); }

/* Feature card (icon + label) — used for inclusions grid */
.feature {
  padding: 22px 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: 0 14px 40px -20px rgba(0,0,0,0.2); border-color: var(--spray-500); }
.feature__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--spray-100);
  color: var(--spray-700);
  display: grid; place-items: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.feature__icon svg { width: 22px !important; height: 22px !important; flex-shrink: 0; }
.feature h4 { font-family: var(--sans); font-size: 0.98rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: 0; }
.feature p { font-size: 0.86rem; color: var(--muted); margin: 0; }

/* ============================================================
   Packages — two-variant pill toggle + panel
   ============================================================ */
.packages { color: var(--milk-50); position: relative; }
.packages h1, .packages h2, .packages h3, .packages h4 { color: var(--milk-50); }
.packages p { color: rgba(251,250,246,0.78); }
.packages .kicker { color: var(--spray-400); }
.packages .kicker::before { background: var(--spray-400); }
.packages__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: end;
}
.packages__intro p { color: rgba(251,250,246,0.78); max-width: 520px; }
@media (max-width: 800px) { .packages__intro { grid-template-columns: 1fr; gap: 24px; } }

.pkg-switch {
  display: inline-flex;
  padding: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  margin-bottom: 40px;
  max-width: 100%;
}
.pkg-switch__btn {
  padding: 12px 22px;
  border-radius: 999px;
  color: rgba(251,250,246,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .3s var(--ease), color .3s var(--ease);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  white-space: nowrap;
  min-height: 44px;
}
.pkg-switch__btn svg { width: 18px !important; height: 18px !important; flex-shrink: 0; }
.pkg-switch__btn.is-active { background: var(--spray-500); color: var(--white); box-shadow: 0 8px 20px -8px rgba(35,161,189,0.6); }
.pkg-switch__btn:not(.is-active):hover { color: var(--milk-50); }
@media (max-width: 560px) {
  .pkg-switch { flex-direction: column; align-items: stretch; border-radius: 18px; padding: 6px; width: 100%; max-width: 360px; }
  .pkg-switch__btn { border-radius: 14px; padding: 14px 18px; font-size: 0.9rem; }
}

/* Panels: hidden until their toggle button activates them. No animation —
   this is a conversion widget, guaranteed visibility beats a fade. */
.pkg-panel { display: none; }
.pkg-panel.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.package {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 900px) { .package { grid-template-columns: 1fr; } }
/* Media: fills its grid cell exactly. No aspect-ratio (would fight
   align-items:stretch and bleed out over the body cell). Height is
   driven by the body cell's content on desktop, capped on mobile. */
.package__media {
  position: relative;
  overflow: hidden;
  background: var(--basalt-800);
  min-height: 320px;
}
.package__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .package__media { min-height: 0; aspect-ratio: 4/3; }
}
.package__badge {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 14px;
  background: var(--gold);
  color: var(--basalt-950);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}
.package__body { padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 40px); display: flex; flex-direction: column; }
.package__title { color: var(--milk-50); margin-bottom: 10px; }
.package__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(251,250,246,0.85);
  font-size: 0.85rem;
  align-self: flex-start;
}
.package__price b { font-family: var(--serif); font-size: 1.5rem; color: var(--spray-400); font-weight: 500; }
.package__price s { color: rgba(251,250,246,0.4); font-size: 0.85rem; }
.package__desc { color: rgba(251,250,246,0.8); margin-bottom: 24px; }
.package__lists { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 28px; }
@media (max-width: 640px) { .package__lists { grid-template-columns: 1fr; } }
.package__list h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spray-400);
  margin-bottom: 12px;
  font-weight: 600;
}
.package__list ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.package__list li { font-size: 0.9rem; color: rgba(251,250,246,0.82); padding-left: 24px; position: relative; line-height: 1.5; }
.package__list--incl li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--spray-400);
  border-bottom: 2px solid var(--spray-400);
  transform: rotate(-45deg);
}
.package__list--excl li::before {
  content: '×';
  position: absolute; left: 5px; top: -2px;
  color: rgba(251,250,246,0.4);
  font-size: 1.1rem;
  font-weight: 300;
}
.package__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }

/* ============================================================
   Booking section
   ============================================================ */
.booking { position: relative; isolation: isolate; }
.booking__inner {
  background: var(--milk-50);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 30px 90px -40px rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .booking__inner { grid-template-columns: 1fr; } }
.booking__intro h2 { color: var(--basalt-950); }
.booking__intro p { color: var(--muted); }
.booking__intro ul {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.booking__intro li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.booking__intro li::before {
  content: '';
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--spray-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6l3 3 5-6' fill='none' stroke='%230d7089' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  margin-top: 1px;
}
.booking__brief {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 18px;
  background: var(--spray-100);
  border-radius: 12px;
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--basalt-900);
}
.booking__brief b { color: var(--spray-700); font-weight: 700; }

/* Form */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--3 { grid-template-columns: 1.2fr 1fr 1fr; }
@media (max-width: 620px) { .form__row, .form__row--3 { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-500);
  font-weight: 600;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--muted); opacity: 1; }
.form__textarea { resize: vertical; min-height: 84px; }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--spray-500);
  box-shadow: 0 0 0 4px rgba(35,161,189,0.15);
}
.form__submit { margin-top: 4px; }
.form__note { font-size: 0.78rem; color: var(--muted); margin-top: 6px; }
.form__status { padding: 12px 16px; border-radius: 10px; font-size: 0.88rem; display: none; }
.form__status.is-error   { display: block; background: #fdecea; color: #8a2a1c; }
.form__status.is-loading { display: block; background: var(--milk-100); color: var(--stone-700); }
.form__status.is-success { display: block; background: #e6f4ea; color: #1b5e20; border: 1px solid #b7dfbf; }

/* Party-size stepper */
.stepper {
  display: inline-flex; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.stepper button {
  width: 42px; height: 44px;
  color: var(--basalt-900);
  font-size: 1.15rem;
  font-weight: 500;
  transition: background .2s var(--ease);
}
.stepper button:hover { background: var(--milk-100); }
.stepper input {
  width: 46px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 12px 0;
  font-weight: 600;
  background: transparent;
}
.stepper input:focus { outline: none; }

/* ============================================================
   Split section
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split--reverse .split__media { order: 0; } }
.split__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--milk-200);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Stats strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-strip b { display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--basalt-950); line-height: 1; margin-bottom: 8px; font-weight: 500; }
.stat-strip span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.section--dark .stat-strip { border-color: rgba(255,255,255,0.15); }
.section--dark .stat-strip b { color: var(--milk-50); }
.section--dark .stat-strip span { color: rgba(251,250,246,0.7); }

/* ============================================================
   Timeline (day plan)
   Layout: `.timeline` has padding-left: 48px so items begin at x=48.
   The vertical line sits at left:11px (2px wide, center at 12px).
   Each item's dot sits at left:-48px relative to its 48px starting offset,
   which lands the 24px dot at 0..24px, center at 12px — aligned with the line.
   ============================================================ */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 48px; }
.timeline::before {
  content: '';
  position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--spray-400) 0%, var(--spray-700) 70%, transparent 100%);
  border-radius: 2px;
}
.timeline__item { position: relative; padding: 0 0 40px 0; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -48px; top: 6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--spray-500);
  box-shadow: 0 0 0 4px var(--milk-50);
  z-index: 1;
}
.section--alt .timeline__item::before { box-shadow: 0 0 0 4px var(--milk-100); }
.timeline__time { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--spray-700); font-weight: 700; margin-bottom: 8px; }
.timeline__title { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin: 0 0 8px; line-height: 1.2; }
.timeline__body { font-size: 0.94rem; color: var(--ink-soft); margin: 0; line-height: 1.6; max-width: 640px; }
@media (max-width: 560px) {
  .timeline { padding-left: 36px; }
  .timeline::before { left: 7px; }
  .timeline__item::before { left: -36px; width: 20px; height: 20px; border-width: 2px; top: 4px; }
  .timeline__title { font-size: 1.2rem; }
}

/* ============================================================
   Season strip
   ============================================================ */
.season-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .season-strip { grid-template-columns: 1fr; } }
.season { padding: 32px 28px; border-radius: var(--radius-lg); color: var(--milk-50); min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; }
.season--peak    { background: linear-gradient(135deg, #0d7089, #23a1bd); }
.season--good    { background: linear-gradient(135deg, #205038, #3d8f5b); }
.season--summer  { background: linear-gradient(135deg, #a97b26, #d4a24a); }
.season__months { font-family: var(--serif); font-size: 2rem; margin: 0; color: var(--milk-50); }
.season__label  { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.85; margin-bottom: 10px; }
.season p { color: rgba(251,250,246,0.9); margin-bottom: 0; }

/* ============================================================
   Gallery strip
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--milk-200); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(2) { grid-column: span 2; }
.gallery figure:nth-child(3) { grid-column: span 2; }
.gallery figure:nth-child(4) { grid-column: span 2; }
.gallery figure:nth-child(5) { grid-column: span 2; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery figure:nth-child(n) { grid-column: span 1; grid-row: auto; }
  .gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

/* ============================================================
   Testimonial
   ============================================================ */
.tm-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .tm-strip { grid-template-columns: 1fr; } }
.tm {
  padding: 30px 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.tm::before {
  content: '"';
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--spray-500);
  line-height: 0.6;
  position: absolute;
  top: 24px; left: 22px;
  opacity: 0.35;
}
.tm p { font-size: 0.98rem; color: var(--ink-soft); margin-bottom: 22px; margin-top: 14px; line-height: 1.6; position: relative; }
.tm__by { display: flex; align-items: center; gap: 12px; }
.tm__av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--spray-400), var(--jungle-700)); color: var(--milk-50); display: grid; place-items: center; font-weight: 600; font-family: var(--serif); }
.tm__name { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.tm__meta { font-size: 0.78rem; color: var(--muted); }
.tm__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 6px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--basalt-950);
  cursor: pointer;
}
.faq__q::after {
  content: '';
  flex: 0 0 22px;
  width: 22px; height: 22px;
  background:
    linear-gradient(currentColor, currentColor) center/12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 12px no-repeat;
  color: var(--spray-500);
  transition: transform .3s var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 0 22px; color: var(--ink-soft); }
.faq__item.is-open .faq__a { max-height: 600px; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px);
  color: var(--milk-50);
  isolation: isolate;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--jungle-800) 0%, var(--basalt-950) 100%);
  z-index: -2;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(35,161,189,0.25), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(212,162,74,0.15), transparent 40%);
  z-index: -1;
}
.cta-banner h2 { color: var(--milk-50); max-width: 680px; margin: 0 auto 18px; }
.cta-banner p { color: rgba(251,250,246,0.85); max-width: 580px; margin: 0 auto 28px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--basalt-950);
  color: var(--milk-50);
  padding: 80px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 12px; color: var(--milk-50); display: inline-flex; align-items: center; gap: 12px; }
.footer p, .footer a { color: rgba(251,250,246,0.7); }
.footer a:hover { color: var(--spray-400); }
.footer h5 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--milk-50);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.9rem; }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(251,250,246,0.5);
  flex-wrap: wrap;
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  z-index: 90;
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
@media (max-width: 640px) {
  /* keep whatsapp above sticky bar */
  .whatsapp-float { bottom: 88px; }
}

/* ============================================================
   Utility
   ============================================================ */
/* Scroll reveal — fades content in as it enters the viewport.
   `will-change` promotes the element to its own layer so the transition
   actually paints; without it some Chromium versions cache the opacity:0
   state and leave content invisible even after `.is-visible` is added. */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin: 0 0 60px; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p,
.section--jungle .section-head p { color: rgba(251,250,246,0.75); }

/* Breadcrumb */
.crumb { padding: 110px 0 20px; font-size: 0.85rem; color: var(--muted); }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--spray-700); }
.crumb__sep { margin: 0 8px; opacity: 0.5; }

/* Article layout (blog + inner pages) */
.article { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 60px; align-items: start; }
@media (max-width: 900px) { .article { grid-template-columns: 1fr; } }
.article__body h2 { margin-top: 2em; }
.article__body h3 { margin-top: 1.6em; font-size: 1.4rem; }
.article__body p { font-size: 1.05rem; line-height: 1.75; }
.article__body img { border-radius: var(--radius); margin: 2em 0; }
.article__body ul, .article__body ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.article__body ul li, .article__body ol li { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.article__body ul li::marker { color: var(--spray-500); }
.article__body p b, .article__body p strong { color: var(--basalt-900); font-weight: 600; }
.article__body .table-wrap { overflow-x: auto; margin: 1.8em 0 2em; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.article__body table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.95rem; }
.article__body table th, .article__body table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.55;
}
.article__body table th {
  background: var(--basalt-950); color: var(--milk-50);
  font-family: var(--sans); font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.article__body table tr:last-child td { border-bottom: 0; }
.article__body table tr:nth-child(even) td { background: var(--milk-50); }
.article__body table td:first-child { font-weight: 600; color: var(--basalt-900); width: 34%; }
.article__body blockquote, .article__body .tip {
  margin: 1.6em 0;
  padding: 18px 22px;
  background: var(--milk-100);
  border-left: 3px solid var(--spray-500);
  border-radius: 4px;
  font-style: italic;
  color: var(--basalt-900);
}
.article__body .tip::before {
  content: 'Tip · ';
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--spray-700);
  display: block; margin-bottom: 4px;
}
.article__meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.82rem; color: var(--muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.article__meta b { color: var(--basalt-900); font-weight: 600; }
.article__hero { aspect-ratio: 21/9; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; background: var(--milk-200); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }

.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar__card { padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); }
.sidebar__card--dark { background: var(--basalt-950); color: var(--milk-50); border-color: var(--basalt-800); }
.sidebar__card--dark h4 { color: var(--milk-50); }
.sidebar__card--dark p  { color: rgba(251,250,246,0.75); }
.sidebar__card h4 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-500); margin-bottom: 16px; font-weight: 600; }
.sidebar__card--dark h4 { color: var(--spray-400); }
.toc { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.toc a { font-size: 0.9rem; color: var(--ink-soft); border-left: 2px solid transparent; padding-left: 12px; transition: all .2s var(--ease); display: block; }
.toc a:hover, .toc a.is-active { color: var(--spray-700); border-color: var(--spray-500); }

.related-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.related-list a { font-size: 0.92rem; color: var(--ink-soft); display: block; line-height: 1.4; }
.related-list a:hover { color: var(--spray-700); }

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