/* =========================================================
   KAZUMA TRAILS — Shared Stylesheet
   Aesthetic: Modern · Fun · Luxury · Authentic
   ========================================================= */

:root {
  --ochre:        #b8541a;
  --ochre-deep:   #8a3d11;
  --ochre-soft:   #d97a40;
  --cream:        #f7efde;
  --cream-warm:   #ede1c5;
  --parchment:    #fbf7ee;
  --forest:       #2e4a2e;
  --forest-deep:  #1c2e1c;
  --charcoal:     #1f1b16;
  --charcoal-50:  rgba(31, 27, 22, 0.5);
  --brass:        #c9a961;
  --brass-soft:   #e0c98b;
  --rust:         #6b2e1a;
  --ink:          #15110d;

  --serif:  'Fraunces', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:   'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --hand:   'Caveat', 'Brush Script MT', cursive;

  --maxw: 1320px;
  --pad: clamp(1.25rem, 3vw, 2.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,169,97,0.10), transparent 45%),
    radial-gradient(ellipse at 100% 12%, rgba(217,122,64,0.08), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(46,74,46,0.06), transparent 55%),
    var(--parchment);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle film grain across whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h2 em, h1 em {
  font-style: italic;
  color: var(--ochre);
  position: relative;
}
h2 em::after, h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: var(--brass-soft);
  z-index: -1;
  opacity: 0.5;
  transform: skewX(-8deg);
}
.display {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 400;
  font-style: italic;
}
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ochre);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: none;
}
.scribble {
  font-family: var(--hand);
  font-size: 1.8rem;
  color: var(--ochre);
  font-weight: 600;
  display: inline-block;
  transform: rotate(-3deg);
}

/* Funky sticker badge */
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ochre);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 6px 14px -6px rgba(184,84,26,0.5);
}
.sticker:hover { transform: rotate(0); }
.sticker--brass { background: var(--brass); color: var(--ink); }
.sticker--forest { background: var(--forest); color: var(--cream); }

/* Underline scribble */
.under-scribble {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 8 Q 30 2, 60 7 T 120 6 T 198 7' stroke='%23b8541a' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.4em;
  padding-bottom: 0.25em;
}

/* ---------- Layout ---------- */
.wrap   { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section{ padding: clamp(1.8rem, 3.5vw, 3rem) 0; position: relative; }
.section--lg{ padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

/* ---------- Luxe section variants ---------- */
.section--cream-warm {
  background:
    radial-gradient(circle at 18% 20%, rgba(201,169,97,0.16), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(184,84,26,0.10), transparent 60%),
    var(--cream-warm);
}
.section--ochre {
  background:
    radial-gradient(circle at 80% 10%, rgba(247,239,222,0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(107,46,26,0.35), transparent 60%),
    linear-gradient(135deg, var(--ochre-deep) 0%, var(--ochre) 60%, var(--rust) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--ochre h2,
.section--ochre h3 { color: var(--cream); }
.section--ochre .eyebrow { color: var(--brass-soft); }
.section--forest {
  background:
    radial-gradient(circle at 80% 15%, rgba(201,169,97,0.20), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(184,84,26,0.18), transparent 60%),
    linear-gradient(160deg, #1c2e1c 0%, #2e4a2e 55%, #3a5c3a 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--forest h2,
.section--forest h3 { color: var(--cream); }
.section--forest .eyebrow { color: var(--brass-soft); }
.section--ochre::before,
.section--forest::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.section--ochre > *,
.section--forest > * { position: relative; }

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(247, 239, 222, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 0.1rem var(--pad);
  box-shadow: 0 1px 0 rgba(31,27,22,0.06);
}
.brand {
  display: inline-flex; align-items: center;
  height: 110px;
}
.brand img {
  height: 100%; width: auto;
  transition: filter 0.3s var(--ease);
  filter: invert(1) brightness(1.6);
}
.nav.scrolled .brand img { filter: none; }
.brand .dot { color: var(--ochre); }
.nav { padding-top: 0; padding-bottom: 0; align-items: center; min-height: 0; }
.nav.scrolled { padding-top: 0; padding-bottom: 0; }
.nav.scrolled .brand { height: 80px; }
@media (max-width: 880px) {
  .brand { height: 70px; }
  .nav.scrolled .brand { height: 60px; }
}
.nav-links {
  display: flex; gap: 2rem; align-items: center;
  font-size: 1.08rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--ink);
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ochre);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ochre); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.menu-btn { display: none; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.4rem;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .menu-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--cream);
    z-index: 101;
    position: relative;
  }
  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    display: block;
    width: 18px; height: 1.5px;
    background: var(--cream);
    position: relative;
    transition: transform 0.3s var(--ease), top 0.3s, opacity 0.2s;
  }
  .menu-btn span::before { position: absolute; top: -6px; }
  .menu-btn span::after  { position: absolute; top:  6px; }
  .menu-btn.open span { background: transparent; }
  .menu-btn.open span::before { top: 0; transform: rotate(45deg); }
  .menu-btn.open span::after  { top: 0; transform: rotate(-45deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.9rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.btn:hover {
  background: var(--ochre); transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 12px 24px -10px rgba(184,84,26,0.5);
}
.btn .arrow {
  display: inline-block; width: 18px; height: 18px;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ochre { background: var(--ochre); color: var(--cream); }
.btn--ochre:hover { background: var(--ochre-deep); }

/* ---------- FULL-BLEED EDITORIAL HERO ---------- */
.hero-cover {
  position: relative;
  min-height: 100svh;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: clamp(7rem, 9vw, 9rem) 0 3rem;
}
.hero-cover__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.04);
  filter: saturate(1.05);
  animation: heroBreathe 18s ease-in-out infinite alternate;
}
@keyframes heroBreathe {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero-cover__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,8,0.55) 0%, rgba(15,11,8,0.05) 22%, rgba(15,11,8,0.0) 45%, rgba(15,11,8,0.55) 100%),
    linear-gradient(90deg, rgba(15,11,8,0.55) 0%, rgba(15,11,8,0.0) 55%);
  z-index: -1;
}
/* Top masthead strip */
.hero-cover__masthead {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-soft);
  padding: 0 var(--pad) 1.5rem;
  border-bottom: 1px solid rgba(224,201,139,0.22);
  margin-bottom: 0;
}
.hero-cover__masthead .dot {
  color: var(--ochre-soft);
  letter-spacing: 0;
}
/* Two-column body */
.hero-cover__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
  align-self: end;
  padding-top: clamp(14rem, 38vh, 32rem);
  padding-bottom: clamp(2rem, 4vh, 3rem);
}
.hero-cover__lede { grid-column: 2; }
@media (max-width: 980px) {
  .hero-cover__inner { grid-template-columns: 1fr; gap: 2.2rem; align-items: start; padding-top: clamp(10rem, 30vh, 18rem); }
  .hero-cover__lede { grid-column: 1; }
}
.hero-cover .scroll-cue { display: none; }

/* LEDE — left editorial cluster */
.hero-cover__kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 1.2rem;
  padding-left: 1.4rem;
  position: relative;
}
.hero-cover__kicker::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 1rem; height: 1px;
  background: var(--brass-soft);
}
.hero-cover__kicker em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--cream);
  font-size: 1.05rem;
  margin-right: 0.5rem;
}
.hero-cover__lede h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 1rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero-cover__lede h1 em {
  font-style: italic;
  color: var(--brass-soft);
  position: relative;
}
.hero-cover__lede h1 em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.16em;
  background: var(--ochre);
  opacity: 0.65;
  z-index: -1;
}
.hero-cover__lead {
  font-size: clamp(0.9rem, 1vw, 1rem);
  max-width: 480px;
  color: rgba(247,239,222,0.9);
  line-height: 1.5;
}
.hero-cover__signature {
  margin-top: 0.9rem;
}
.hero-cover__signature .scribble {
  font-family: var(--hand);
  font-size: 1.15rem;
  color: var(--brass-soft);
  display: inline-block;
  transform: rotate(-2deg);
}

/* RAIL — right destination cards */
.hero-cover__rail {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.hero-rail-card {
  position: relative;
  display: block;
  padding: 0.95rem 1.15rem 1.05rem;
  background: rgba(247,239,222,0.93);
  color: var(--ink);
  border-radius: 12px;
  border: 1px solid rgba(201,169,97,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.55);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hero-rail-card:hover {
  transform: translateX(-4px);
  box-shadow: 0 24px 50px -22px rgba(0,0,0,0.6);
}
.hero-rail-card__country {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.hero-rail-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 0.3rem;
  color: var(--ink);
}
.hero-rail-card p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}
.hero-rail-card .arrow-cta {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  font-weight: 600;
}
.hero-rail-card--combo {
  background: linear-gradient(135deg, var(--ochre) 0%, var(--rust) 100%);
  border-color: rgba(224,201,139,0.5);
  color: var(--cream);
}
.hero-rail-card--combo .hero-rail-card__country { color: var(--brass-soft); }
.hero-rail-card--combo h3 { color: var(--cream); }
.hero-rail-card--combo p { color: rgba(247,239,222,0.88); }
.hero-rail-card--combo .arrow-cta { color: var(--brass-soft); }

/* ---------- EDITORIAL BENTO HERO ---------- */
.hero-editorial {
  position: relative;
  padding: clamp(7rem, 10vw, 9rem) 0 clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 8% 18%, rgba(201,169,97,0.22), transparent 55%),
    radial-gradient(circle at 92% 78%, rgba(184,84,26,0.16), transparent 60%),
    var(--parchment);
  overflow: hidden;
  isolation: isolate;
}
.hero-editorial::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}
.hero-editorial__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-editorial__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* TEXT side */
.hero-editorial__text h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1rem 0 1.4rem;
  font-weight: 500;
}
.hero-editorial__text h1 em {
  font-style: italic;
  color: var(--ochre);
  position: relative;
}
.hero-editorial__text h1 em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.18em;
  background: var(--brass-soft);
  z-index: -1;
  opacity: 0.55;
}
.hero-editorial__text .lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  max-width: 560px;
  color: var(--charcoal);
}
.hero-editorial__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(1rem, 2.5vw, 2.4rem);
  margin: 2rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(31,27,22,0.12);
  border-bottom: 1px solid rgba(31,27,22,0.12);
  max-width: 560px;
}
.hero-editorial__stats > div { display: flex; flex-direction: column; }
.hero-editorial__stats strong {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
  color: var(--ochre-deep);
  line-height: 1;
}
.hero-editorial__stats span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-50);
  margin-top: 0.3rem;
}
@media (max-width: 520px) {
  .hero-editorial__stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
.hero-editorial__ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.hero-editorial__signature {
  margin-top: 0.4rem;
}
.hero-editorial__signature .scribble {
  font-family: var(--hand);
  font-size: 1.4rem;
  color: var(--ochre);
  transform: rotate(-2deg);
  display: inline-block;
}

/* BENTO side */
.hero-editorial__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 0.8fr;
  gap: 0.9rem;
  height: clamp(420px, 56vw, 620px);
}
.hero-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  background: var(--cream-warm);
  box-shadow: 0 24px 50px -28px rgba(31,27,22,0.45);
  border: 1px solid rgba(201,169,97,0.30);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hero-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -28px rgba(31,27,22,0.55);
}
.hero-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.hero-tile:hover img { transform: scale(1.04); }
.hero-tile--tall { grid-row: span 2; }
.hero-tile__chip {
  position: absolute;
  left: 0.9rem; bottom: 0.9rem;
  background: rgba(247,239,222,0.92);
  color: var(--ink);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,169,97,0.45);
  font-weight: 500;
}
.hero-tile__chip em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ochre);
  font-size: 0.92rem;
  margin-right: 0.3rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--cream);
  padding: 8rem var(--pad) 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,8,0.15) 0%, rgba(15,11,8,0.0) 30%, rgba(15,11,8,0.6) 100%);
  z-index: -1;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: kenburns 18s ease-out forwards;
}
@keyframes kenburns {
  to { transform: scale(1); }
}
.hero-inner { max-width: 920px; }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 400;
  font-style: italic;
  margin-top: 1.25rem;
}
.hero h1 em { font-style: normal; color: var(--brass-soft); }
.hero p.lead {
  margin-top: 1.5rem;
  max-width: 620px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(247,239,222,0.92);
}
.hero .eyebrow { color: var(--brass-soft); }
.hero .eyebrow::before { background: var(--brass-soft); }
.hero-actions { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn { background: var(--cream); color: var(--ink); }
.hero-actions .btn:hover { background: var(--ochre); color: var(--cream); }
.hero-actions .btn--ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.hero-actions .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,239,222,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 38px;
  background: rgba(247,239,222,0.7);
  animation: drop 2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes drop {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ochre);
  color: var(--cream);
  padding: 0.45rem 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(-1.2deg);
  margin: -0.5rem -2vw;
  width: 104vw;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  white-space: nowrap;
  animation: marquee 75s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  font-weight: 500;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track .star { color: var(--ink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Generic content sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}
.section h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  margin: 0.3rem 0 0.8rem;
  line-height: 1;
}
.section .lead { font-size: clamp(0.95rem, 1.2vw, 1.05rem); }
.section p { font-size: 0.95rem; }
.section p + p { margin-top: 1rem; }
.section .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--charcoal);
}

.image-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(31,27,22,0.45);
  aspect-ratio: 16/11;
}
.image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.image-frame:hover img { transform: scale(1.04); }
.image-frame .badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Cards (offerings, regions, etc.) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31,27,22,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
  font-size: 0.92rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.card .num { font-size: 2rem; margin-bottom: 0.3rem; }
.card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 20px 40px -20px rgba(31,27,22,0.25);
  background: var(--cream-warm);
}
.card:nth-child(odd):hover { transform: translateY(-6px) rotate(0.6deg); }
.card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--ochre);
  display: block;
  margin-bottom: 0.6rem;
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.card p { color: var(--charcoal); font-size: 0.96rem; }

.card--image {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  display: flex; align-items: end;
  color: var(--cream);
  border: none;
}
.card--image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s var(--ease);
}
.card--image:hover img { transform: scale(1.06); }
.card--image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,11,8,0.85) 100%);
  z-index: 1;
}
.card--image .inner {
  position: relative; z-index: 2;
  padding: 1.8rem;
}
.card--image h3 { color: var(--cream); font-size: 1.6rem; }
.card--image p { color: rgba(247,239,222,0.85); }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(31,27,22,0.1);
  border-bottom: 1px solid rgba(31,27,22,0.1);
}
.stat .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--ochre);
  line-height: 1;
}
.stat .lbl {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  margin-top: 0.5rem;
}

/* ---------- Itinerary list ---------- */
.itin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.itin {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(31,27,22,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.itin .days { font-size: 1.7rem; }
.itin h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.itin p { font-size: 0.88rem; }
.itin:hover { background: var(--cream-warm); transform: translateY(-4px) rotate(-0.4deg); }
.itin:nth-child(even):hover { transform: translateY(-4px) rotate(0.4deg); }
.itin::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--ochre), var(--brass));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.itin:hover { transform: translateY(-4px); }
.itin:hover::before { transform: scaleX(1); }
.itin .days {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.itin h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.itin .tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: auto;
  align-self: flex-start;
  margin-top: 1.2rem;
}

/* ---------- Instagram section ---------- */
.ig {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.ig .eyebrow { color: var(--ochre-soft); }
.ig .eyebrow::before { background: var(--ochre-soft); }
.ig h2 { color: var(--cream); }
.ig-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) { .ig-head { grid-template-columns: 1fr; } }
.ig-cta { text-align: right; }
@media (max-width: 760px) { .ig-cta { text-align: left; } }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #2a241d;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s ease;
}
.ig-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-tile:hover img { transform: scale(1.06); }
.ig-tile:hover::after { opacity: 1; }
.ig-tile .ig-icon {
  position: absolute; top: 1rem; right: 1rem;
  width: 24px; height: 24px;
  fill: var(--cream);
  opacity: 0; z-index: 2;
  transition: opacity 0.3s ease;
}
.ig-tile:hover .ig-icon { opacity: 1; }

/* ---------- Quote ---------- */
.quote {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
}
.quote .mark {
  display: block;
  font-size: 4rem;
  color: var(--ochre);
  line-height: 0.8;
  margin-bottom: 1rem;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(31,27,22,0.15);
  padding: 1.1rem 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink);
  gap: 1rem;
}
.faq-q .plus {
  display: inline-block; width: 22px; height: 22px;
  position: relative; flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; top: 50%; left: 0;
  width: 100%; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .plus::after { transform: rotate(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  color: var(--charcoal);
  padding-top: 0;
}
.faq-item.open .faq-a { padding-top: 1rem; max-height: 400px; }

/* ---------- Feature blocks (podcast, newsletter, etc.) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.feature {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  display: flex; flex-direction: column;
  border: 1px solid rgba(31,27,22,0.05);
  transition: transform 0.3s var(--ease), background 0.3s ease;
  position: relative;
}
.feature h3 { font-size: 1.2rem; }
.feature .icon { width: 36px; height: 36px; margin-bottom: 0.7rem; }
.feature:hover { transform: translateY(-4px) rotate(-0.5deg); background: var(--cream-warm); }
.feature:nth-child(2n):hover { transform: translateY(-4px) rotate(0.5deg); }
.feature::after {
  content: "";
  position: absolute;
  top: -4px; right: 12px;
  width: 28px; height: 28px;
  background: var(--ochre);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}
.feature:hover::after { opacity: 1; transform: scale(1.4); }
.feature .icon {
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  color: var(--ochre);
}
.feature h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.feature p { color: var(--charcoal); font-size: 0.95rem; flex-grow: 1; margin-bottom: 1.2rem; }
.feature .btn { align-self: flex-start; padding: 0.6rem 1.2rem; font-size: 0.82rem; }

/* ---------- Lists with checkmarks ---------- */
.checklist { list-style: none; }
.checklist li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  border-bottom: 1px dashed rgba(31,27,22,0.15);
}
.checklist li::before {
  content: "•";
  position: absolute; left: 0;
  color: var(--ochre);
  font-size: 1rem;
  top: 0.7rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 1.5rem var(--pad) 1rem;
  font-size: 0.88rem;
}
.footer .wrap { padding: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  color: var(--brass-soft);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.85rem; }
.footer a { opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.footer a:hover { opacity: 1; color: var(--brass-soft); }
.footer .brand-blob {
  margin-bottom: 1rem;
  display: inline-block;
}
.footer .brand-blob img {
  height: 110px; width: auto; max-width: 100%;
  filter: invert(1) brightness(1.4);
}
@media (max-width: 880px) {
  .footer .brand-blob img { height: 70px; }
}
.footer .brand-blob { margin-bottom: 0.5rem; }
.footer p { font-size: 0.82rem; }
.footer-base {
  border-top: 1px solid rgba(247,239,222,0.15);
  padding-top: 0.7rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.72rem;
  opacity: 0.7;
}

/* ---------- Page-side scroll nav (auto built) ---------- */
.page-nav {
  position: fixed;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column;
  gap: 0.55rem;
  padding: 0.7rem 0.5rem;
  background: rgba(247,239,222,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(31,27,22,0.08);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.page-nav.ready { opacity: 1; }
.page-nav a {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
}
.page-nav a::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.25;
  transition: all 0.3s var(--ease);
}
.page-nav a:hover::before { opacity: 0.7; transform: scale(1.3); }
.page-nav a.active::before {
  width: 22px;
  border-radius: 999px;
  opacity: 1;
  background: var(--ochre);
}
.page-nav a .lbl {
  position: absolute;
  right: calc(100% + 0.6rem);
  top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: var(--cream);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
  font-weight: 600;
}
.page-nav a:hover .lbl, .page-nav a.active .lbl {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.page-nav a.active .lbl { background: var(--ochre); }
@media (max-width: 960px) { .page-nav { display: none; } }

/* "Up next" hint under hero */
.up-next {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,239,222,0.85);
  z-index: 5;
}
.up-next .arrow-down {
  width: 14px; height: 14px; display: inline-block;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.4rem;
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translate(0,0); }
  50%     { transform: rotate(45deg) translate(3px,3px); }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.75s; }

/* ---------- Page hero (centered editorial — matches home) ---------- */
.page-hero {
  position: relative;
  padding: 6rem var(--pad) 3rem;
  color: var(--cream);
  min-height: 92vh;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.page-hero .wrap {
  align-self: end;
  padding-bottom: 2rem;
  max-width: 920px;
  width: 100%;
}
.page-hero .crumbs { display: inline-flex; justify-content: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero .lead { margin-left: auto; margin-right: auto; }
.page-hero .sticker { display: inline-flex; }
.page-hero .hero-divider { justify-content: center; }
.page-hero h1 { margin-left: auto; margin-right: auto; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,11,8,0.4) 0%, rgba(15,11,8,0.7) 100%);
}
.page-hero .bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: kenburns 18s ease-out forwards;
}
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-style: italic;
  font-weight: 400;
  max-width: 900px;
  line-height: 1;
  margin: 0.6rem auto 0;
}
.page-hero .lead { color: rgba(247,239,222,0.92); margin-top: 1rem; max-width: 640px; }
.page-hero .eyebrow { color: var(--brass-soft); }
.page-hero .eyebrow::before { background: var(--brass-soft); }
.crumbs { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; margin-bottom: 1rem; }

/* ---------- Decorative SVG dividers ---------- */
.divider-leaf {
  text-align: center;
  margin: 3rem auto;
  color: var(--ochre);
  font-size: 1.4rem;
  letter-spacing: 1.5rem;
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border: 1px solid rgba(31,27,22,0.15);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--ochre);
  box-shadow: 0 0 0 4px rgba(184,84,26,0.12);
}
textarea { min-height: 160px; resize: vertical; }
label { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); display: block; margin-bottom: 0.5rem; }

/* ---------- New rooms feature block ---------- */
.new-ribbon {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--ochre);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 24px -10px rgba(184,84,26,0.6);
}
.new-ribbon::before { content: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.rooms {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.rooms::before {
  content: "NEW";
  position: absolute;
  top: -2rem; right: -1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(8rem, 20vw, 18rem);
  color: var(--ochre);
  opacity: 0.06;
  font-weight: 600;
  pointer-events: none;
  line-height: 1;
}
.rooms-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .rooms-hero { grid-template-columns: 1fr; } }
.rooms-hero .image-frame { aspect-ratio: 16/11; }

.room-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) {
  .room-features { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .room-features { grid-template-columns: repeat(2, 1fr); }
}
.room-feat {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.1rem;
  border: 1px solid rgba(31,27,22,0.06);
  transition: transform 0.3s var(--ease);
}
.room-feat:hover { transform: translateY(-4px); }
.room-feat .icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ochre);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.room-feat h4 {
  font-family: var(--serif);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  line-height: 1.15;
}
.room-feat p { font-size: 0.82rem; line-height: 1.45; color: var(--charcoal); }

/* ---------- Instagram live embed ---------- */
.ig-embed {
  background: var(--cream);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(247,239,222,0.15);
  position: relative;
  min-height: 540px;
}
.ig-embed iframe {
  width: 100%;
  border: 0;
  display: block;
}
.ig-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--charcoal);
  background: var(--cream);
  z-index: 0;
}
.ig-fallback .ig-mark {
  width: 64px; height: 64px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: white;
  font-size: 1.8rem;
}

/* ---------- Rates page ---------- */
.rate-tabs {
  display: inline-flex;
  background: var(--cream);
  border-radius: 999px;
  padding: 0.4rem;
  border: 1px solid rgba(31,27,22,0.08);
  margin-bottom: 2rem;
}
.rate-tab {
  padding: 0.7rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.rate-tab.active {
  background: var(--ink);
  color: var(--cream);
}
.rate-tab:not(.active):hover { color: var(--ochre); }

.year-content { display: none; }
.year-content.active { display: block; animation: fade-in 0.4s var(--ease); }
.camp-content { display: none; }
.camp-content.active { display: block; animation: fade-in 0.4s var(--ease); }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.rate-card {
  background: var(--cream);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 1.6rem;
  border: 1px solid rgba(31,27,22,0.06);
  overflow: hidden;
}
.rate-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--ochre);
  margin-bottom: 1.5rem;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.rate-table thead th {
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 0.7rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rate-table thead th:first-child { text-align: left; }
.rate-table thead th.season { background: var(--rust); border-left: 2px solid var(--ink); }
.rate-table thead th.season-alt { background: var(--ochre-deep); border-left: 2px solid var(--ink); }
.rate-table tbody td {
  padding: 0.75rem 0.7rem;
  border-bottom: 1px solid rgba(31,27,22,0.07);
  text-align: center;
  color: var(--charcoal);
}
.rate-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}
.rate-table tbody tr:nth-child(even) { background: rgba(31,27,22,0.025); }
.rate-table tbody tr:hover { background: rgba(184,84,26,0.06); }
.rate-table .total {
  font-weight: 600;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ochre-deep);
}
.rate-table .note {
  font-size: 0.72rem;
  color: var(--charcoal-50);
  text-align: left;
  font-style: italic;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 720px) { .included-grid { grid-template-columns: 1fr; } }
.incl-box {
  padding: 1.4rem 1.5rem;
  border-radius: 10px;
  background: var(--parchment);
}
.incl-box h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.incl-box.included h4 { color: var(--forest); }
.incl-box.excluded h4 { color: var(--rust); }
.incl-box ul { list-style: none; }
.incl-box ul li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.incl-box ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.85rem;
  width: 7px; height: 7px;
  border-radius: 50%;
}
.incl-box.included li::before { background: var(--forest); }
.incl-box.excluded li::before { background: var(--rust); }

.simple-table {
  width: 100%; border-collapse: collapse; font-size: 0.92rem;
}
.simple-table th {
  background: var(--parchment);
  padding: 0.7rem 0.9rem;
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-50);
  font-weight: 600;
}
.simple-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(31,27,22,0.06);
  color: var(--charcoal);
}
.simple-table td.price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ochre-deep);
  white-space: nowrap;
}

.policy-chips {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
}
.policy-chip {
  background: var(--parchment);
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--charcoal);
  border-left: 3px solid var(--ochre);
}

.print-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none; cursor: pointer;
}
.print-btn:hover { background: var(--ochre); }

@media print {
  .nav, .footer, .rate-tabs, .print-btn, .scroll-cue, .marquee, .page-hero { display: none !important; }
  body { background: white; }
  .rate-card { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; page-break-inside: avoid; }
  .rate-table thead th { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ---------- Editorial home hero ---------- */
.hero-edit {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center; justify-items: center;
  text-align: center;
  color: var(--cream);
  padding: 6rem var(--pad) 3rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-edit::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,11,8,0.35) 0%, rgba(15,11,8,0.1) 30%, rgba(15,11,8,0.55) 100%);
}
.hero-edit .bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: kenburns 22s ease-out forwards;
}
.hero-edit .logo-mark {
  width: clamp(280px, 45vw, 600px);
  height: auto;
  filter: invert(1) brightness(1.6);
  margin-bottom: 1.5rem;
}
.hero-edit .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--brass-soft);
  letter-spacing: 0.02em;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
}
.hero-edit .hero-divider {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 1rem 0 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(247,239,222,0.85);
}
.hero-edit .hero-divider::before,
.hero-edit .hero-divider::after {
  content: ""; width: 50px; height: 1px;
  background: rgba(247,239,222,0.5);
}

/* ---------- Bento destinations ---------- */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 760px) { .bento { grid-template-columns: 1fr; } }
.bento-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex; align-items: end;
  color: var(--cream);
  isolation: isolate;
  text-decoration: none;
  transition: transform 0.4s var(--ease);
}
.bento-card:hover { transform: translateY(-6px); }
.bento-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: -2;
  transition: transform 0.8s var(--ease);
}
.bento-card:hover img { transform: scale(1.06); }
.bento-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,11,8,0.1) 30%, rgba(15,11,8,0.85) 100%);
}
.bento-card .inner {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}
.bento-card .country {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass-soft); margin-bottom: 0.6rem; display: block;
}
.bento-card h3 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.bento-card .country {
  display: inline-block;
  background: var(--ochre);
  color: var(--cream);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  transform: rotate(-3deg);
  transform-origin: left;
  margin-bottom: 0.8rem !important;
}
.bento-card p {
  color: rgba(247,239,222,0.85);
  max-width: 380px;
  margin-bottom: 1.2rem;
}
.bento-card .arrow-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.18em;
  border-bottom: 1px solid var(--brass-soft);
  padding-bottom: 0.3rem;
  color: var(--brass-soft);
}

/* Combo bar across the bottom of bento */
.combo-strip {
  background:
    radial-gradient(circle at 12% 50%, rgba(201,169,97,0.18), transparent 55%),
    radial-gradient(circle at 92% 50%, rgba(184,84,26,0.22), transparent 60%),
    linear-gradient(135deg, #3a2614 0%, #4a2e18 45%, #5a3a1f 100%);
  color: var(--cream);
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 14px;
  padding: 1.6rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.2rem;
  box-shadow: 0 14px 40px -18px rgba(58,38,20,0.55), inset 0 1px 0 rgba(224,201,139,0.18);
  position: relative;
  overflow: hidden;
}
.combo-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.combo-strip > * { position: relative; }
.combo-strip .left {
  display: flex; align-items: center; gap: 1.2rem;
}
.combo-strip .plus {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--brass-soft);
}
.combo-strip strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
}
.combo-strip span.label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-soft);
  display: block; margin-bottom: 0.2rem;
}

/* ---------- Editorial split ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .editorial { grid-template-columns: 1fr; } }
.editorial .col-meta {
  position: sticky; top: 8rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ochre);
}
.editorial .col-meta--image {
  position: relative;
  top: auto;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-warm);
  box-shadow: 0 24px 50px -28px rgba(31,27,22,0.4);
  border: 1px solid rgba(201,169,97,0.25);
}
.editorial .col-meta--image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.editorial .col-meta .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4rem;
  color: var(--ink);
  display: block;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.editorial h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 1rem;
}
.editorial p { font-size: clamp(0.95rem, 1.2vw, 1.05rem); margin-bottom: 0.8rem; }

/* ---------- Hero logo stamp ---------- */
.hero-stamp {
  position: absolute;
  top: 50%; right: var(--pad);
  transform: translateY(-50%) rotate(-2deg);
  width: clamp(180px, 22vw, 320px);
  opacity: 0.18;
  filter: invert(1) brightness(2);
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 880px) { .hero-stamp { display: none; } }

/* ---------- Wildlife gallery ---------- */
.wildlife {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 0.8rem;
}
.wildlife a, .wildlife .tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  background: var(--cream-warm);
}
.wildlife img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.wildlife a:hover img, .wildlife .tile:hover img { transform: scale(1.05); }
.wildlife .w-1 { grid-column: span 7; grid-row: span 2; }
.wildlife .w-2 { grid-column: span 5; grid-row: span 1; }
.wildlife .w-3 { grid-column: span 5; grid-row: span 1; }
.wildlife .w-4 { grid-column: span 12; grid-row: span 2; }
@media (max-width: 760px) {
  .wildlife { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .wildlife .w-1, .wildlife .w-2, .wildlife .w-3, .wildlife .w-4 {
    grid-column: span 1; grid-row: span 1;
  }
}
.wildlife .cap { display: none; }
/* Three equal, taller tiles (Fly Camp gallery) */
.wildlife--trio { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 360px; }
.wildlife--trio .tile { grid-column: span 1; grid-row: span 1; }
@media (max-width: 760px) {
  .wildlife--trio { grid-template-columns: 1fr; grid-auto-rows: 280px; }
}
/* Equal tiles that show the whole image (no cropping) */
.wildlife--fit { grid-template-columns: 1fr 1fr; grid-auto-rows: 320px; }
.wildlife--fit .tile { grid-column: span 1; grid-row: span 1; }
.wildlife--fit img { object-fit: contain; background: var(--cream-warm); }
@media (max-width: 760px) {
  .wildlife--fit { grid-template-columns: 1fr; grid-auto-rows: 260px; }
}
.image-frame .badge { display: none; }

/* Rates: center the camp toggle, keep Print pinned right (desktop) */
.rate-bar { position: relative; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.rate-bar .print-btn { position: absolute; right: 0; }
@media (max-width: 760px) {
  .rate-bar { justify-content: space-between; }
  .rate-bar .print-btn { position: static; }
}

/* Two images side by side (Bush Camp section) */
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; align-self: center; }
.two-up img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 14px 30px -18px rgba(31,27,22,0.25);
}

/* ---------- Rooms / Camp full-image gallery (no cropping) ---------- */
/* Horizontally-scrolling photo strip (no captions) */
.photo-scroll {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.photo-scroll__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(1.5rem, calc((100vw - 1200px) / 2));
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.photo-scroll__track::-webkit-scrollbar { display: none; }
.photo-scroll__track img {
  flex: 0 0 auto;
  height: clamp(280px, 48vw, 520px);
  width: auto;
  max-width: none;
  border-radius: 10px;
  object-fit: cover;
  scroll-snap-align: start;
  box-shadow: 0 14px 30px -18px rgba(31,27,22,0.25);
  display: block;
}

.gallery-full {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 880px) {
  .gallery-full { columns: 3; }
}
@media (min-width: 1200px) {
  .gallery-full { columns: 4; }
}
.gallery-full figure {
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: 0 14px 30px -18px rgba(31,27,22,0.25);
}
.gallery-full img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-full figcaption {
  padding: 0.55rem 0.8rem 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-50);
  background: var(--cream);
}

/* ---------- Helpful Docs ---------- */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.doc {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.6rem;
  display: flex; align-items: center; gap: 1rem;
  border: 1px solid rgba(31,27,22,0.06);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.doc:hover { transform: translateY(-3px); background: var(--cream-warm); }
.doc .doc-icon {
  width: 44px; height: 44px;
  background: var(--ochre);
  color: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 1.4rem;
  flex-shrink: 0;
}
.doc h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.doc p { font-size: 0.82rem; color: var(--charcoal); }
