/* ============================================================
   LIMITLESS EXPEDITIONS — Uganda
   Dark, image-driven, Apple-style scroll choreography
   ============================================================ */

:root {
  /* Core neutrals */
  --k:  #0F0F0F;
  --k2: #111318;
  --k3: #161620;
  --k4: #1c1c25;
  --w:  #FCFBF6;
  --gx: #E3E3E3;
  --gl: #C7C7C7;
  --g:  #737373;
  --gd: #454545;

  /* Ember accent */
  --ember:        #E2683A;
  --ember-soft:   #F2A06B;
  --ember-deep:   #B14A22;
  --gold:         #E8B65E;

  --font: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1200px;
  --border: 1px solid rgba(252, 251, 246, 0.08);
  --border-strong: 1px solid rgba(252, 251, 246, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset fixed nav */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font);
  background: var(--k);
  color: var(--w);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { -webkit-user-drag: none; user-select: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--ember); color: var(--k); }

/* ICONS ------------------------------------------------------ */
.icon {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.icon--inverse { color: var(--k); width: 1rem; height: 1rem; }

/* PRIMITIVES ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.section__head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-soft);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(226, 104, 58, 0.3);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  background: rgba(226, 104, 58, 0.06);
}
.section__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--w);
}
.section__lede {
  font-size: 1.1rem;
  color: var(--gl);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.grad {
  background: linear-gradient(90deg, #FCFBF6 0%, var(--ember-soft) 45%, var(--gold) 80%, #FCFBF6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
}
@keyframes shine { from { background-position: 0% center; } to { background-position: 200% center; } }

/* BUTTONS ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--primary { background: var(--w); color: var(--k); }
.btn--primary:hover { background: var(--ember); color: var(--w); }
.btn--ghost {
  background: rgba(252, 251, 246, 0.04);
  color: var(--w);
  border-color: rgba(252, 251, 246, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(252, 251, 246, 0.10);
  border-color: rgba(252, 251, 246, 0.28);
}
.btn--lg { padding: 1.15rem 2rem; font-size: 1rem; }

/* Magnetic cursor target — JS sets --mx, --my offsets */
.magnetic {
  transition: transform 0.35s var(--ease-emphasis), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.magnetic > * { display: inline-flex; align-items: center; gap: 0.4rem; transition: transform 0.35s var(--ease-emphasis); }

/* NAV -------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(15, 15, 15, 0.55);
  border-bottom: 1px solid rgba(252, 251, 246, 0);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(15, 15, 15, 0.85);
  border-bottom-color: rgba(252, 251, 246, 0.08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
}
@media (min-width: 768px) { .nav__inner { padding: 0.95rem 2.5rem; } }

/* LOGO ------------------------------------------------------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--w);
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.85; }
.logo__name { display: inline-flex; flex-direction: column; line-height: 1; gap: 0.18rem; }
.logo__word {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--w);
}
.logo__cat {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g);
}

.nav__links { display: none; gap: 1.75rem; }
@media (min-width: 900px) { .nav__links { display: inline-flex; } }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gl);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--w); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border-radius: 6px;
  background: var(--w);
  color: var(--k);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--ember); color: var(--w); }

/* HERO ------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--k);
}
.hero__media {
  position: absolute;
  inset: -25% 0;
  z-index: -1;
  will-change: transform;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.55) saturate(1.18) contrast(1.22);
  transform: scale(1.04);
  animation: hero-breathe 16s var(--ease) 0.4s infinite alternate;
}

/* Iris glow — subtle pulsing radial highlight near the pupil */
.hero__iris {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(226, 104, 58, 0.22) 0%, transparent 18%),
    radial-gradient(circle at 50% 48%, rgba(232, 182, 94, 0.10) 18%, transparent 36%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: iris-pulse 12s ease-in-out 3.5s infinite;
}

/* Eyelids — initial slow open, then realistic blink loop forever */
.hero__lid {
  position: absolute;
  left: -6%;
  right: -6%;
  height: 58%;
  background:
    radial-gradient(ellipse 100% 40% at 50% 50%, rgba(20, 12, 8, 0.95) 0%, var(--k) 70%),
    var(--k);
  z-index: 3;
  pointer-events: none;
  box-shadow:
    0 0 140px 50px var(--k),
    inset 0 0 80px 10px rgba(20, 10, 5, 0.9);
  will-change: transform;
}
.hero__lid--top {
  top: 0;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  animation:
    lid-init-top 2.6s var(--ease-emphasis) 0.4s both,
    blink-top 5.5s ease-in-out 4s infinite;
}
.hero__lid--bot {
  bottom: 0;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  animation:
    lid-init-bot 2.6s var(--ease-emphasis) 0.4s both,
    blink-bot 5.5s ease-in-out 4s infinite;
}

/* Initial dramatic open — once on load */
@keyframes lid-init-top {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-108%); }
}
@keyframes lid-init-bot {
  0%   { transform: translateY(0); }
  100% { transform: translateY(108%); }
}

/* Realistic blink loop:
   open (most of cycle) → fast close → tiny pause → fast open
   Total: 5.5s; blink itself ≈ 0.42s
*/
@keyframes blink-top {
  0%, 88%  { transform: translateY(-108%); }   /* open */
  92%      { transform: translateY(0); }       /* shut */
  94%      { transform: translateY(0); }       /* held */
  98%, 100% { transform: translateY(-108%); }  /* open */
}
@keyframes blink-bot {
  0%, 88%  { transform: translateY(108%); }
  92%      { transform: translateY(0); }
  94%      { transform: translateY(0); }
  98%, 100% { transform: translateY(108%); }
}

/* Image breathes — slow alternating zoom for "alive" feel */
@keyframes hero-breathe {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.0); }
}

/* Iris glow pulses — subtle, syncs roughly to blink rhythm */
@keyframes iris-pulse {
  0%, 30% { opacity: 0; }
  50%     { opacity: 1; }
  70%     { opacity: 0.6; }
  100%    { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__lid, .hero__iris { display: none; }
  .hero__media img { animation: none; transform: scale(1); }
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    /* Center readability scrim — darkens behind the text */
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.25) 50%, transparent 80%),
    /* Edge vignette */
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 30%, rgba(15,15,15,0.6) 70%, rgba(15,15,15,0.98) 100%),
    /* Top + bottom darkening for nav + scroll cue */
    linear-gradient(180deg, rgba(15,15,15,0.7) 0%, transparent 25%, transparent 55%, rgba(15,15,15,1) 100%),
    /* Warm ember highlight in upper right corner */
    radial-gradient(circle at 75% 25%, rgba(226,104,58,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .hero__inner { padding: 0 2.5rem; } }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(252, 251, 246, 0.16);
  background: rgba(15, 15, 15, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gl);
  margin-bottom: 2rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 10px var(--ember);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(2.5rem, 7.5vw, 5.75rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 auto;
  max-width: 18ch;
  text-wrap: balance;
}

.hero__sub {
  margin: 1.75rem auto 0;
  max-width: 620px;
  font-size: 1.08rem;
  color: var(--gl);
  line-height: 1.55;
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero__meta {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) { .hero__meta { grid-template-columns: repeat(4, 1fr); } }
.hero__meta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.hero__meta span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--w);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__meta label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* NOTICE BANNER --------------------------------------------- */
.notice-wrap {
  background: var(--k);
  padding: 2.5rem 0;
}
.notice {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(226, 104, 58, 0.08) 0%, rgba(226, 104, 58, 0.04) 100%),
    rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(226, 104, 58, 0.3);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 700px) { .notice { padding: 1.1rem 1.5rem; gap: 1.1rem; } }

.notice__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ember);
  color: var(--k);
  border-radius: 50%;
}
.notice__icon .icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}
.notice__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gl);
  margin: 0;
}
.notice__text strong {
  color: var(--w);
  font-weight: 600;
  margin-right: 0.25rem;
}

/* PARALLAX BAND --------------------------------------------- */
.band {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--k);
}
.band__media {
  position: absolute;
  inset: -30% 0;
  z-index: -2;
  will-change: transform;
  overflow: hidden;
}
.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.1) contrast(1.05);
}
.band__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(15,15,15,0.6) 80%),
    linear-gradient(180deg,
      rgba(15,15,15,1) 0%,
      rgba(15,15,15,0.4) 18%,
      transparent 35%,
      transparent 65%,
      rgba(15,15,15,0.4) 82%,
      rgba(15,15,15,1) 100%);
}
.band__inner {
  text-align: center;
  padding: 6rem 1.5rem;
}
.band__quote {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 auto;
  text-wrap: balance;
}

/* OVERVIEW + HIGHLIGHTS ------------------------------------- */
.overview {
  padding: 7rem 0;
  background: linear-gradient(180deg, #0F0F0F 0%, #111318 100%);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 700px) { .highlights { grid-template-columns: repeat(4, 1fr); } }

.highlight {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: var(--border);
  transform: translateZ(0);
  transition: transform 0.5s var(--ease-emphasis), border-color 0.3s var(--ease);
}
.highlight img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: brightness(0.85) saturate(1.05);
}
.highlight__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,15,15,0.85) 100%);
  transition: background 0.4s var(--ease);
}
.highlight__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--w);
  z-index: 1;
}
.highlight:hover { border-color: rgba(226, 104, 58, 0.6); }
.highlight:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.15); }
.highlight:hover .highlight__shade {
  background: linear-gradient(180deg, transparent 20%, rgba(226, 104, 58, 0.25) 60%, rgba(15,15,15,0.9) 100%);
}

/* ITINERARY -------------------------------------------------- */
.itinerary {
  padding: 7rem 0 0;
  background: linear-gradient(180deg, #111318 0%, #0F0F0F 100%);
}

.days {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.days--continued { padding-top: 0; }

.day {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(252,251,246,0.025), rgba(252,251,246,0.005));
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
@media (min-width: 800px) {
  .day { grid-template-columns: 0.85fr 1.15fr; }
}
.day:hover { border-color: rgba(252, 251, 246, 0.18); }

.day__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--k2);
}
@media (min-width: 800px) { .day__media { aspect-ratio: auto; min-height: 100%; } }

.day__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
  /* Apple-style clip reveal — JS adjusts --reveal as scroll-progress */
  clip-path: inset(var(--reveal-top, 0%) 0 var(--reveal-bot, 0%) 0);
}
.day:hover .day__media img { transform: scale(1.04); filter: brightness(1) saturate(1.12); }

.day__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 800px) { .day__body { padding: 2.5rem; } }

.day__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 600px) {
  .day__head { flex-direction: row; align-items: baseline; gap: 1.25rem; }
}
.day__num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-soft);
  flex-shrink: 0;
}
.day__title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--w);
}

.day__bullets { margin: 0 0 1.5rem; }
.day__bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--gl);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.day__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--ember);
}

.day__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .day__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

.panel {
  background: rgba(15, 15, 15, 0.5);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.panel--bordered { background: rgba(252, 251, 246, 0.025); padding: 1.5rem; }
.panel__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.panel__label .icon {
  color: var(--ember);
  width: 1rem;
  height: 1rem;
}
.panel__label--good { color: var(--ember-soft); }
.panel__label--bad { color: var(--g); }
.panel p { color: var(--gl); font-size: 0.94rem; line-height: 1.55; }

.tags { display: flex; flex-direction: column; gap: 0.4rem; }
.tags li {
  font-size: 0.94rem;
  color: var(--w);
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.45;
}
.tags li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-weight: 700;
}
.tags li em { color: var(--g); font-size: 0.84rem; font-style: italic; }

.day__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(252, 251, 246, 0.06);
  font-size: 0.86rem;
  color: var(--gl);
}
.day__foot .info,
.day__foot .lodge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.day__foot .info { color: var(--ember-soft); font-style: italic; }
.day__foot .info .icon { color: var(--ember); }
.day__foot .lodge { margin-left: auto; color: var(--w); font-weight: 500; }
.day__foot .lodge .icon { color: var(--gl); }

/* DAY 7 — PINNED FEATURE ------------------------------------ */
.feature {
  position: relative;
  margin: 4rem 0;
  /* 170vh = 70vh of pinned scroll — long enough to actually read the text */
  height: 170vh;
  background: var(--k);
  overflow: hidden;
  isolation: isolate;
}
.feature__media {
  position: absolute;
  inset: -10% 0;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
}
.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.6) saturate(1.05) contrast(1.05);
  transform: scale(1.0);
  animation: feature-breathe 14s var(--ease) infinite alternate;
}
@keyframes feature-breathe {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
  .feature__media img { animation: none; }
}
/* Always-on dark overlay across the entire feature (covers image bleed) */
.feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(15,15,15,1) 0%,
      rgba(15,15,15,0.65) 6%,
      rgba(15,15,15,0.35) 14%,
      rgba(15,15,15,0.35) 86%,
      rgba(15,15,15,0.65) 94%,
      rgba(15,15,15,1) 100%),
    radial-gradient(ellipse 70% 70% at 50% 50%, transparent 25%, rgba(15,15,15,0.45) 85%);
}
.feature__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(15,15,15,0.35) 0%, transparent 70%);
}
.feature__inner {
  max-width: 760px;
  text-align: center;
  padding: 0 1.5rem;
}
.feature__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(226, 104, 58, 0.4);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  background: rgba(15, 15, 15, 0.5);
  backdrop-filter: blur(8px);
}
.feature__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.feature__sub {
  margin: 1.5rem auto 2.5rem;
  max-width: 600px;
  color: var(--gl);
  font-size: 1.05rem;
  line-height: 1.55;
}
.feature__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.feature__stats > div {
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(252, 251, 246, 0.12);
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}
.feature__stats span {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--w);
  line-height: 1;
}
.feature__stats span small {
  font-size: 0.55em;
  color: var(--ember-soft);
  margin-left: 0.1em;
  font-weight: 600;
}
.feature__stats label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g);
  font-weight: 500;
  text-align: center;
}

/* PRICING ---------------------------------------------------- */
.pricing {
  padding: 7rem 0;
  background: linear-gradient(180deg, #0F0F0F 0%, #111318 100%);
}
.price-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(252, 251, 246, 0.14);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(226, 104, 58, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(232, 182, 94, 0.06) 0%, transparent 55%),
    rgba(252, 251, 246, 0.025);
  text-align: center;
}
@media (min-width: 768px) { .price-card { padding: 4rem; } }

.price-card__price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.price-card__currency {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-soft);
}
.price-card__amount {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--w);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card__unit { font-size: 0.95rem; color: var(--g); letter-spacing: 0.02em; }
.price-card__note { font-size: 0.92rem; color: var(--gl); margin-bottom: 2.5rem; }

.price-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) { .price-card__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.check, .cross { display: flex; flex-direction: column; gap: 0.65rem; }
.check li, .cross li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.96rem;
  color: var(--gl);
  line-height: 1.5;
}
.check li .icon { color: var(--ember-soft); width: 1.15rem; height: 1.15rem; }
.cross li .icon { color: var(--g); width: 1.15rem; height: 1.15rem; }
.check--muted li { color: var(--g); }
.check--muted li .icon { color: var(--g); }

/* PACKING ---------------------------------------------------- */
.packing {
  padding: 7rem 0;
  background: linear-gradient(180deg, #111318 0%, #0F0F0F 100%);
}
.packing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) { .packing__grid { grid-template-columns: 1fr 1fr; } }

/* FAQ -------------------------------------------------------- */
.faq {
  padding: 7rem 0;
  background: linear-gradient(180deg, #111318 0%, #0F0F0F 100%);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(252, 251, 246, 0.08);
}
.faq__item {
  border-bottom: 1px solid rgba(252, 251, 246, 0.08);
  transition: background 0.3s var(--ease);
}
.faq__item:hover { background: rgba(252, 251, 246, 0.015); }
.faq__item[open] { background: rgba(252, 251, 246, 0.02); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--w);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { display: none; }
.faq__item summary:hover { color: var(--ember-soft); }

.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.35s var(--ease-emphasis), opacity 0.3s var(--ease);
}
.faq__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}
.faq__item[open] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq__item[open] summary { color: var(--ember); }

.faq__answer {
  padding: 0 0.5rem 1.75rem;
  color: var(--gl);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 90%;
  animation: faq-in 0.4s var(--ease-emphasis) both;
}
.faq__answer a {
  color: var(--ember-soft);
  border-bottom: 1px solid rgba(242, 160, 107, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.faq__answer a:hover {
  color: var(--ember);
  border-bottom-color: var(--ember);
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FINAL ------------------------------------------------------ */
.final {
  padding: 9rem 0 6rem;
  text-align: center;
  background: var(--k);
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 90%, rgba(226, 104, 58, 0.18) 0%, rgba(226, 104, 58, 0.05) 55%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(232, 182, 94, 0.04) 0%, transparent 100%);
  pointer-events: none;
}
.final .container { position: relative; }
.final .section__label { margin-bottom: 1.75rem; }
.final__title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  max-width: 16ch;
  margin: 0 auto;
  text-wrap: balance;
}
.final__sub {
  margin: 1.5rem auto 2.5rem;
  max-width: 540px;
  color: var(--gl);
  font-size: 1.05rem;
}
.final__series {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
}

/* FOOTER ----------------------------------------------------- */
.footer {
  padding: 1rem 0 2.5rem;
  background: var(--k);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 700px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--g);
  max-width: 460px;
}
@media (min-width: 700px) { .footer__meta { flex-direction: row; gap: 1.5rem; align-items: center; text-align: right; } }
.footer__meta a { color: var(--ember-soft); transition: color 0.2s; }
.footer__meta a:hover { color: var(--ember); }

/* CHAPTER RAIL ----------------------------------------------- */
.rail {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
.rail.is-active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 900px) { .rail { display: none; } }

.rail__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
}

.rail__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.2rem 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  font-family: var(--font);
  color: var(--g);
  transition: color 0.4s var(--ease);
}

.rail__num {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.4;
  color: var(--gl);
  min-width: 1.5em;
  text-align: right;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
}

.rail__line {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--g);
  transition:
    width 0.55s var(--ease-emphasis),
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.rail__item:hover .rail__num { opacity: 0.85; color: var(--w); }
.rail__item:hover .rail__line { width: 28px; background: var(--gl); }

.rail__item.is-passed .rail__num { color: var(--ember-soft); opacity: 0.55; }
.rail__item.is-passed .rail__line { background: var(--ember-deep); width: 14px; opacity: 0.7; }

.rail__item.is-current .rail__num {
  color: var(--ember);
  opacity: 1;
}
.rail__item.is-current .rail__line {
  width: 38px;
  background: var(--ember);
  box-shadow: 0 0 14px rgba(226, 104, 58, 0.55);
}

.rail__item--feature.is-current .rail__line {
  width: 48px;
  box-shadow: 0 0 18px rgba(226, 104, 58, 0.85);
}
.rail__item--feature .rail__num::before {
  content: "★";
  margin-right: 0.3em;
  color: var(--ember);
  opacity: 0.5;
  font-size: 0.7em;
  transition: opacity 0.4s var(--ease);
}
.rail__item--feature.is-current .rail__num::before { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* On-enter reveal (intersection observer) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease-emphasis),
    transform 0.85s var(--ease-emphasis);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hero fade-down (staggered via data-delay) */
[data-fade-down] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s var(--ease-emphasis),
    transform 1s var(--ease-emphasis);
}
[data-fade-down].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-fade-down] { opacity: 1; transform: none; transition: none; }
  .grad, .dot, .hero__scroll { animation: none; }
  [data-parallax] { transform: none !important; }
}
