/* ============================================================================
   Himalayan Highs — site theme
   Rebuilt 2026-08-30 in the Kamper visual language:
   Marcellus display serif + Jost sans, coral #F45D56 on cream, photo-led
   sections banded light / dark, generous rhythm, shape dividers.
   ========================================================================== */

/* ---------- fonts (self-hosted; CSP font-src is 'self') ---------- */
@font-face {
  font-family: 'Marcellus'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(/assets/fonts/marcellus-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Marcellus'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(/assets/fonts/marcellus-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Jost'; font-style: normal; font-weight: 300 600; font-display: swap;
  src: url(/assets/fonts/jost-var-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost'; font-style: normal; font-weight: 300 600; font-display: swap;
  src: url(/assets/fonts/jost-var-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- palette ---------- */
:root {
  --coral:      #F45D56;   /* Kamper primary */
  --coral-deep: #DC463F;
  --coral-soft: #FDEDEC;
  --ink:        #222222;   /* dark bands, headings */
  --paper:      #FFFFFF;
  --cream:      #F9F9F5;   /* Kamper section cream */
  --bone:       #E8E8DE;   /* headings on dark */
  --body:       #5F6058;   /* body copy on light */
  --body-dark:  #B9BAB1;   /* body copy on dark */
  --line:       #E3E3DA;
  --line-dark:  #3A3A38;
  --sand:       #B98B5E;   /* warm secondary */

  --surface:    var(--paper);
  --surface-2:  var(--cream);
  --text:       var(--ink);
  --muted:      var(--body);
  --border:     var(--line);
  --accent:     var(--coral);

  --shadow:     0 18px 50px rgba(34, 34, 34, 0.09);
  --shadow-lg:  0 30px 70px rgba(34, 34, 34, 0.14);
  --radius:     6px;
  --radius-lg:  10px;
  --gap:        clamp(3.5rem, 8vw, 6rem);
  --wrap:       1180px;
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* dark preference: same coral, inverted surfaces */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:   #191917;
    --cream:   #201F1D;
    --surface: #191917;
    --surface-2: #201F1D;
    --text:    var(--bone);
    --muted:   var(--body-dark);
    --border:  #34342F;
    --line:    #34342F;
    --shadow:    0 18px 50px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
  }
}
:root[data-theme="dark"] {
  --paper:   #191917;
  --cream:   #201F1D;
  --surface: #191917;
  --surface-2: #201F1D;
  --text:    var(--bone);
  --muted:   var(--body-dark);
  --border:  #34342F;
  --line:    #34342F;
  --shadow:    0 18px 50px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--surface);
  color: var(--muted);
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 {
  font-family: 'Marcellus', 'Times New Roman', serif;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
  letter-spacing: 0.005em;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); line-height: 1.14; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.25; }
p  { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 500; }

/* ---------- eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500; font-size: 0.875rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--coral); flex: none; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ""; width: 34px; height: 1px; background: var(--coral); flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500; font-size: 0.875rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  line-height: 1;
  transition: background-color 220ms var(--ease), color 220ms var(--ease),
              border-color 220ms var(--ease), transform 220ms var(--ease),
              box-shadow 220ms var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary {
  background: var(--coral); color: #fff; border-color: var(--coral);
  box-shadow: 0 12px 28px rgba(244, 93, 86, 0.28);
}
.btn-primary:hover {
  background: var(--coral-deep); border-color: var(--coral-deep);
  transform: translateY(-3px); box-shadow: 0 18px 36px rgba(244, 93, 86, 0.36);
}
.btn-ghost { color: var(--text); border-color: var(--border); background: transparent; }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-3px); }
.band--dark .btn-ghost, .band--photo .btn-ghost, .hero .btn-ghost {
  color: #fff; border-color: rgba(255, 255, 255, 0.4);
}
.band--dark .btn-ghost:hover, .band--photo .btn-ghost:hover, .hero .btn-ghost:hover {
  border-color: #fff; background: rgba(255, 255, 255, 0.1); color: #fff;
}
@media (prefers-reduced-motion: reduce) { .btn, .btn:hover { transition: none; transform: none; } }

/* ---------- photo slots ------------------------------------------------
   <div class="ph ph--16x9"><span class="ph-fallback ridge-a"></span>
     <img class="ph-img" src="/assets/img/x.jpg" alt=""></div>
   If the JPG is absent site.js removes the <img>, so the layered ridge
   fallback shows through and an empty slot never breaks a page.        */
/* isolate so .ph-img's z-index stays inside the slot — without this the photo
   paints over sibling overlays like the split-media stamp */
.ph { position: relative; overflow: hidden; background: var(--ink); isolation: isolate; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--4x3  { aspect-ratio: 4 / 3; }
.ph--3x2  { aspect-ratio: 3 / 2; }
.ph-img, .ph-fallback { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ph-img { object-fit: cover; z-index: 1; }
.ph--zoom .ph-img, .ph--zoom .ph-fallback { transition: transform 700ms var(--ease); }
a:hover .ph--zoom .ph-img, a:hover .ph--zoom .ph-fallback { transform: scale(1.07); }
@media (prefers-reduced-motion: reduce) {
  .ph--zoom .ph-img, .ph--zoom .ph-fallback { transition: none; }
  a:hover .ph--zoom .ph-img, a:hover .ph--zoom .ph-fallback { transform: none; }
}

/* Layered ridgeline fallbacks — deliberate artwork, not a grey box.
   The two silhouette layers are pinned to the bottom at a fixed fraction of
   the height rather than `cover`, so they stay ridges instead of stretching
   into spikes on a tall hero; only the sky gradient fills the whole box. */
.ridge-a, .ridge-b, .ridge-c, .ridge-d {
  background-repeat: no-repeat;
  background-size: 100% 34%, 100% 56%, cover;
  background-position: bottom, bottom, center;
}
/* first url = near ridge (lower, darker), second = far ridge (higher, hazier) */
.ridge-a {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180' preserveAspectRatio='none'%3E%3Cpath d='M0 180 L44 96 L112 142 L176 78 L240 130 L320 86 L320 180 Z' fill='%23100E12' opacity='.72'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180' preserveAspectRatio='none'%3E%3Cpath d='M0 180 L58 84 L104 126 L158 58 L204 108 L262 46 L320 104 L320 180 Z' fill='%23100E12' opacity='.34'/%3E%3C/svg%3E"),
    radial-gradient(120% 90% at 76% 16%, #E8945C 0%, #B65742 28%, #5A3548 58%, #211F29 100%);
}
.ridge-b {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180' preserveAspectRatio='none'%3E%3Cpath d='M0 180 L52 104 L124 146 L196 82 L268 134 L320 96 L320 180 Z' fill='%230D1116' opacity='.74'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180' preserveAspectRatio='none'%3E%3Cpath d='M0 180 L70 60 L128 118 L186 44 L246 100 L320 66 L320 180 Z' fill='%230D1116' opacity='.35'/%3E%3C/svg%3E"),
    radial-gradient(120% 90% at 22% 14%, #8FBBD0 0%, #4C7796 30%, #29415A 60%, #161D28 100%);
}
.ridge-c {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180' preserveAspectRatio='none'%3E%3Cpath d='M0 180 L64 112 L136 150 L204 88 L272 138 L320 108 L320 180 Z' fill='%23151810' opacity='.72'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180' preserveAspectRatio='none'%3E%3Cpath d='M0 180 L46 92 L110 132 L164 52 L228 110 L286 68 L320 96 L320 180 Z' fill='%23151810' opacity='.33'/%3E%3C/svg%3E"),
    radial-gradient(120% 90% at 60% 12%, #DCC48C 0%, #9C8253 28%, #495840 60%, #1A1F16 100%);
}
.ridge-d {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180' preserveAspectRatio='none'%3E%3Cpath d='M0 180 L60 108 L132 152 L206 86 L276 136 L320 104 L320 180 Z' fill='%23120F18' opacity='.74'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 180' preserveAspectRatio='none'%3E%3Cpath d='M0 180 L82 52 L142 114 L200 40 L258 98 L320 58 L320 180 Z' fill='%23120F18' opacity='.35'/%3E%3C/svg%3E"),
    radial-gradient(120% 90% at 40% 10%, #B9A6CC 0%, #6B5B85 28%, #383350 60%, #191722 100%);
}

/* ---------- bands ---------- */
.band { position: relative; padding: var(--gap) 0; background: var(--surface); }
.band--cream { background: var(--surface-2); }
.band--dark  { background: var(--ink); color: var(--body-dark); }
.band--dark h1, .band--dark h2, .band--dark h3, .band--dark h4 { color: var(--bone); }
.band--dark strong { color: #fff; }
.band--tight { padding: calc(var(--gap) * 0.62) 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.75rem; }
.wrap--narrow { max-width: 840px; }
@media (max-width: 640px) { .wrap { padding: 0 1.2rem; } }

/* parallax photo band */
.band--photo {
  background: var(--ink); color: var(--body-dark);
  position: relative; isolation: isolate; overflow: hidden;
}
.band--photo > .band-img, .band--photo > .ph-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.band--photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(20, 20, 20, 0.66);
}
.band--photo h2, .band--photo h3, .band--photo h4 { color: #fff; }
.band--photo strong { color: #fff; }
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .band--photo > .ph-fallback { background-attachment: fixed; }
}

/* shape divider — the Kamper slant break between bands.
   --from-* paints the band above it, --to-* fills the wedge with the band
   below, so the two colours meet on a diagonal instead of a hard edge. */
.divider { position: relative; line-height: 0; background: var(--surface); }
.divider svg { display: block; width: 100%; height: 70px; }
.divider svg path { fill: var(--surface); }
.divider--from-paper { background: var(--surface); }
.divider--from-cream { background: var(--surface-2); }
.divider--from-dark  { background: var(--ink); }
.divider--to-paper svg path { fill: var(--surface); }
.divider--to-cream svg path { fill: var(--surface-2); }
.divider--to-dark  svg path { fill: var(--ink); }
@media (max-width: 640px) { .divider svg { height: 34px; } }

/* ---------- section heads ---------- */
.section-head { max-width: 760px; margin: 0 0 3rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede { font-size: 1.08rem; margin: 1.15rem 0 0; }
.band--dark .section-head .lede, .band--photo .section-head .lede { color: var(--body-dark); }

/* ---------- site nav ---------- */
.sitenav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; gap: 1.6rem;
  padding: 1.15rem 2rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 300ms var(--ease), padding 300ms var(--ease),
              border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.sitenav .brand {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Marcellus', serif; font-weight: 400;
  letter-spacing: 0.06em; font-size: 1.15rem;
  color: #fff; text-decoration: none; margin-right: auto;
}
.sitenav .brand img { display: block; border-radius: 50%; }
.sitenav a.nl {
  font-family: 'Jost', sans-serif; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82); text-decoration: none;
  padding: 0.35rem 0; position: relative; white-space: nowrap;
}
.sitenav a.nl::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--coral); transition: right 260ms var(--ease);
}
.sitenav a.nl:hover, .sitenav a.nl[aria-current="page"] { color: #fff; }
.sitenav a.nl:hover::after, .sitenav a.nl[aria-current="page"]::after { right: 0; }
.sitenav .btn { padding: 0.72rem 1.4rem; font-size: 0.78rem; }

/* solid state — on scroll, and on every page that is not the homepage */
.sitenav.stuck, .sitenav--solid {
  background: var(--surface);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(34, 34, 34, 0.07);
  padding-top: 0.8rem; padding-bottom: 0.8rem;
}
.sitenav.stuck .brand, .sitenav--solid .brand { color: var(--text); }
.sitenav.stuck a.nl, .sitenav--solid a.nl { color: var(--muted); }
.sitenav.stuck a.nl:hover, .sitenav--solid a.nl:hover,
.sitenav.stuck a.nl[aria-current="page"], .sitenav--solid a.nl[aria-current="page"] { color: var(--coral); }
.sitenav--solid { position: sticky; }

@media (max-width: 880px) {
  .sitenav { gap: 1rem; padding: 0.85rem 1.1rem; overflow-x: auto; scrollbar-width: none; }
  .sitenav::-webkit-scrollbar { display: none; }
  .sitenav .brand span { display: none; }
  .sitenav a.nl { font-size: 0.72rem; }
  .sitenav .btn { display: none; }
}
@media (prefers-reduced-motion: reduce) { .sitenav { transition: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--ink); isolation: isolate;
}
.hero .ph-fallback, .hero .hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -3;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0) 46%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(0,0,0,0.84) 4%, rgba(0,0,0,0.32) 44%, rgba(0,0,0,0) 74%);
}
.hero-inner {
  position: relative; max-width: var(--wrap); width: 100%; margin: 0 auto;
  padding: 9rem 1.75rem 5rem; color: #fff;
}
.hero .eyebrow { color: #fff; }
.hero-badge {
  width: clamp(84px, 9vw, 112px); height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: #fff; font-size: clamp(3rem, 9.5vw, 7.2rem);
  line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase;
}
.hero h1 .highs { color: var(--coral); display: block; }
.hero .tagline {
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
  color: rgba(255, 255, 255, 0.88); font-weight: 400;
  max-width: 50ch; margin: 1.4rem 0 0;
}
.hero .tagline strong { color: #fff; font-weight: 400; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
@media (max-width: 640px) { .hero-inner { padding: 7rem 1.2rem 3.4rem; } }
@media (max-width: 460px) {
  /* long letterspaced strings and side-by-side buttons are the two things
     that would force a horizontal scrollbar on a small phone */
  .eyebrow { font-size: 0.74rem; letter-spacing: 0.16em; gap: 0.5rem; }
  .eyebrow::before, .eyebrow.centered::after { width: 20px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { justify-content: center; }
  .btn { padding: 0.95rem 1.4rem; letter-spacing: 0.12em; }
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; z-index: 2;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 14px;
}
.scroll-cue::after {
  content: ""; position: absolute; left: 50%; top: 8px;
  width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px;
  background: #fff; animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue::after { animation: none; } }
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* ---------- stats band (overlaps the hero — Kamper's black strip) ---------- */
.statband { position: relative; z-index: 5; margin-top: -68px; padding: 0 1.75rem; }
.statband .inner {
  max-width: var(--wrap); margin: 0 auto;
  background: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden;
}
.statband .stat { padding: 2.2rem 1.8rem; text-align: center; }
.statband .stat + .stat { border-left: 1px solid var(--line-dark); }
.stat .num {
  font-family: 'Marcellus', serif; font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1.05;
  color: var(--coral); font-variant-numeric: tabular-nums;
}
.stat .lbl {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--body-dark); margin-top: 0.5rem;
}
@media (max-width: 760px) {
  .statband { margin-top: -40px; padding: 0 1.2rem; }
  .statband .inner { grid-template-columns: 1fr; }
  .statband .stat + .stat { border-left: 0; border-top: 1px solid var(--line-dark); }
  .statband .stat { padding: 1.5rem 1.2rem; }
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.6rem;
  margin-top: 2.4rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-stats .stat { text-align: left; }

/* ---------- altimeter chip ---------- */
#altimeter {
  position: fixed; left: 1.1rem; bottom: 1.1rem; z-index: 30;
  font-family: 'Jost', sans-serif;
  font-weight: 500; font-size: 0.72rem; letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
  color: #fff; background: rgba(34, 34, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 2px solid var(--coral);
  border-radius: var(--radius); padding: 0.45rem 0.85rem;
  box-shadow: var(--shadow); pointer-events: none;
}
@media (max-width: 880px) { #altimeter { display: none; } }

/* ---------- split (text + media) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split--media-first .split-media { order: -1; }
.split-media { position: relative; }
.split-media .ph { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media .stamp {
  position: absolute; right: -14px; bottom: -22px;
  z-index: 2;
  background: var(--coral); color: #fff;
  padding: 1.1rem 1.3rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); text-align: center; max-width: 200px;
}
.split-media .stamp .n {
  display: block; font-family: 'Marcellus', serif; font-size: 2rem; line-height: 1;
}
.split-media .stamp .t {
  display: block; font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 0.35rem; line-height: 1.4;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--media-first .split-media { order: 0; }
  .split-media .stamp { right: 12px; bottom: -18px; }
}

/* ---------- feature grid (large coral icons, Kamper scale) ---------- */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.feature {
  background: var(--surface); padding: 2.4rem 1.9rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: background-color 280ms var(--ease);
}
.feature:hover { background: var(--surface-2); }
.band--cream .feature { background: var(--surface-2); }
.band--cream .feature:hover { background: var(--surface); }
.feature svg { width: 52px; height: 52px; stroke: var(--coral); fill: none; stroke-width: 1.25; }
.feature h3 { font-size: 1.35rem; }
.feature p { margin: 0; font-size: 0.96rem; }
@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- film cards ---------- */
.films { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .films { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .films { grid-template-columns: 1fr; } }
.film {
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.band--dark .film { background: #2A2A28; }
.film:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.film .thumb { position: relative; }
.film .play {
  position: absolute; inset: 0; margin: auto; z-index: 2;
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  background: var(--coral); color: #fff; border-radius: 50%;
  font-size: 1rem; padding-left: 4px;
  transition: transform 320ms var(--ease), background-color 320ms var(--ease);
}
.film:hover .play { transform: scale(1.12); background: var(--coral-deep); }
.film .meta { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.45rem; }
.film .meta .kind {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral);
}
.film .meta .title {
  font-family: 'Marcellus', serif; font-weight: 400;
  font-size: 1.3rem; line-height: 1.25; color: var(--text);
}
.band--dark .film .meta .title { color: var(--bone); }
@media (prefers-reduced-motion: reduce) {
  .film, .film:hover, .film .play, .film:hover .play { transition: none; transform: none; }
}

/* ---------- video ripple button (Kamper) ---------- */
.videocta { display: flex; flex-direction: column; align-items: center; gap: 1.7rem; text-align: center; }
.video-button {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--coral); color: #fff; text-decoration: none;
  font-size: 1.4rem; padding-left: 6px; flex: none;
  transition: background-color 300ms var(--ease);
}
.video-button:hover { background: var(--coral-deep); }
.video-button::before, .video-button::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(244, 93, 86, 0.55);
  animation: ripple 2.6s var(--ease) infinite;
}
.video-button::after { animation-delay: 1.3s; }
@keyframes ripple {
  0%   { box-shadow: 0 0 0 0 rgba(244, 93, 86, 0.55); }
  100% { box-shadow: 0 0 0 42px rgba(244, 93, 86, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .video-button::before, .video-button::after { animation: none; }
}

/* ---------- itinerary cards ---------- */
.itin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.6rem; }
.itin-card {
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: var(--shadow);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.band--cream .itin-card { background: var(--paper); }
.itin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.itin-card .ph { aspect-ratio: 16 / 10; }
.itin-card .ph .row {
  position: absolute; z-index: 2; left: 1rem; bottom: 1rem;
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.itin-card .body {
  padding: 1.4rem 1.5rem 0.9rem;
  display: flex; flex-direction: column; gap: 0.55rem; flex: 1;
}
.itin-card h3 { font-size: 1.5rem; line-height: 1.2; transition: color 260ms var(--ease); }
.itin-card:hover h3 { color: var(--coral); }
.itin-card p { margin: 0; font-size: 0.97rem; }
.itin-card .specs {
  margin-top: auto; padding: 0.9rem 1.5rem 1.3rem;
  display: flex; flex-wrap: wrap; gap: 0.1rem 1.3rem;
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border-top: 1px solid var(--border);
}
.itin-card .specs b { color: var(--coral); font-weight: 500; font-variant-numeric: tabular-nums; }
@media (prefers-reduced-motion: reduce) { .itin-card, .itin-card:hover { transition: none; transform: none; } }

/* ---------- waypoints / gear cards ---------- */
.trail, .gear { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .trail, .gear { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .trail, .gear { grid-template-columns: 1fr; } }
.waypoint, .gear-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem 2.1rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: border-color 280ms var(--ease), transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.band--cream .waypoint, .band--cream .gear-card { background: var(--paper); }
.waypoint:hover, .gear-card:hover {
  border-color: var(--coral); transform: translateY(-4px); box-shadow: var(--shadow);
}
.waypoint h3, .gear-card h3 { font-size: 1.4rem; }
.waypoint p, .gear-card p { margin: 0; font-size: 0.96rem; flex: 1; }
.waypoint .chip, .gear-card .chip { align-self: flex-start; }
.gear-card .price {
  font-family: 'Marcellus', serif; font-size: 1.5rem; color: var(--coral);
  font-variant-numeric: tabular-nums; margin-top: 0.3rem;
}
.gear-card .price small { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }
.gear-card .deposit { font-size: 0.8rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
  .waypoint, .gear-card, .waypoint:hover, .gear-card:hover { transition: none; transform: none; }
}

/* ---------- chips ---------- */
.chip {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--coral);
  border: 1px solid var(--coral); border-radius: 3px;
  padding: 0.28rem 0.6rem; line-height: 1.4;
}
.chip.ice { color: #222; background: rgba(255, 255, 255, 0.92); border-color: rgba(255, 255, 255, 0.92); }
.chip.soon { color: #fff; background: var(--sand); border-color: var(--sand); }
.chip.outline { color: var(--coral); background: transparent; }

/* ---------- forms ---------- */
.summit-form { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.summit-form input {
  flex: 1 1 280px; font: inherit; font-weight: 400;
  color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
}
.summit-form input::placeholder { color: var(--muted); }
.band--photo .summit-form input, .band--dark .summit-form input {
  background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.24); color: #fff;
}
.band--photo .summit-form input::placeholder,
.band--dark .summit-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.summit-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
#form-note { font-size: 0.92rem; color: var(--coral); margin: 0.9rem 0 0; min-height: 1.4em; }
.consent { font-size: 0.8rem; margin-top: 0.9rem; }
.band--photo .consent, .band--dark .consent { color: rgba(255, 255, 255, 0.6); }

.rental-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; margin-top: 1.4rem; max-width: 660px; }
@media (max-width: 560px) { .rental-form { grid-template-columns: 1fr; } }
.rental-form .field { display: flex; flex-direction: column; }
.rental-form .full { grid-column: 1 / -1; }
.rental-form label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}
.rental-form input, .rental-form textarea {
  font: inherit; font-weight: 400; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1rem; width: 100%;
}
.rental-form textarea { resize: vertical; }
.rental-form input::placeholder, .rental-form textarea::placeholder { color: var(--muted); }
.rental-form .btn.full { justify-self: start; }
#rental-status { font-size: 0.92rem; color: var(--coral); margin: 0.7rem 0 0; min-height: 1.4em; }
.rental-note { font-size: 0.95rem; margin: 1.4rem 0 0; max-width: 64ch; }

/* ---------- interior page header ---------- */
.pagehead {
  position: relative; background: var(--ink); color: rgba(255, 255, 255, 0.82);
  overflow: hidden; isolation: isolate;
  padding: clamp(5.5rem, 12vw, 8.5rem) 0 clamp(3.4rem, 7vw, 5rem);
}
.pagehead > .ph-fallback, .pagehead > .ph-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.pagehead::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.42) 62%, rgba(0,0,0,0.58) 100%);
}
.pagehead .wrap { position: relative; }
.pagehead h1 { color: #fff; text-transform: uppercase; }
.pagehead .lede {
  margin: 1.2rem 0 0; max-width: 62ch; font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88); font-weight: 400;
}
.pagehead .where {
  margin: 0.9rem 0 0; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62);
}
.crumbs {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62); margin: 0 0 1.4rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.crumbs a { color: rgba(255, 255, 255, 0.62); text-decoration: none; }
.crumbs a:hover { color: var(--coral); }

/* ---------- fact strip ---------- */
.factwrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.75rem; }
.factbar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.factbar > div { background: var(--surface); padding: 1.3rem 1.35rem; }
.factbar .k {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); display: block;
}
.factbar .v {
  font-family: 'Marcellus', serif; font-size: 1.5rem; color: var(--text);
  display: block; margin-top: 0.3rem; line-height: 1.2; font-variant-numeric: tabular-nums;
}
.factstrip { position: relative; z-index: 4; margin-top: -2.8rem; }
.factstrip .factbar { box-shadow: var(--shadow-lg); }
@media (max-width: 640px) { .factwrap { padding: 0 1.2rem; } .factstrip { margin-top: -1.6rem; } }

/* ---------- interior section blocks ------------------------------------
   .camp is both the full-bleed band and the centred column: the grid
   track caps content at --wrap while the background runs edge to edge. */
section.camp {
  display: grid;
  grid-template-columns: minmax(0, var(--wrap));
  justify-content: center;
  padding: var(--gap) 1.75rem;
  background: var(--surface);
}
section.camp--cream { background: var(--surface-2); }
.camp-marker { margin-bottom: 1.1rem; display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap; }
.camp-marker .alt {
  font-family: 'Marcellus', serif; font-size: 1.45rem; color: var(--coral);
  font-variant-numeric: tabular-nums;
}
.camp-marker .name {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.camp-body { display: flex; flex-direction: column; gap: 1.2rem; }
.camp-body > h2 { margin-bottom: 0.2rem; }
.camp-body p { max-width: 68ch; margin: 0; }
.camp-body h4 {
  margin: 0 0 0.6rem; font-family: 'Jost', sans-serif; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; color: var(--coral);
}
.camp--cream .kv-row, .camp--cream .waypoint, .camp--cream .gear-card,
.camp--cream .factbar > div, .camp--cream .itin-card { background: var(--paper); }
@media (max-width: 640px) { section.camp { padding: var(--gap) 1.2rem; } }

/* ---------- day-by-day ---------- */
.days { display: flex; flex-direction: column; margin-top: 0.4rem; }
.day {
  display: grid; grid-template-columns: 125px 1fr; gap: 1.8rem;
  padding: 1.7rem 0; border-top: 1px solid var(--border);
}
.day:last-child { border-bottom: 1px solid var(--border); }
.day .mark .n {
  display: block; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral); font-weight: 500;
}
.day .mark .alt {
  display: block; font-family: 'Marcellus', serif; font-size: 1.4rem;
  color: var(--text); font-variant-numeric: tabular-nums; margin-top: 0.25rem;
}
.day h3 { margin: 0 0 0.5rem; font-size: 1.4rem; }
.day p { margin: 0; max-width: 70ch; }
.day .legs {
  margin: 0.7rem 0 0; display: flex; flex-wrap: wrap; gap: 0.1rem 1.4rem;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--coral);
}
@media (max-width: 620px) {
  .day { grid-template-columns: 1fr; gap: 0.6rem; }
  .day .mark { display: flex; gap: 1rem; align-items: baseline; }
  .day .mark .alt { margin-top: 0; }
}

/* ---------- key/value blocks ---------- */
.kv { display: flex; flex-direction: column; gap: 1rem; }
.kv-row {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--coral); border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.band--cream .kv-row { background: var(--paper); }
.kv-row .t {
  font-family: 'Marcellus', serif; font-size: 1.25rem; color: var(--text);
  display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: baseline;
}
.kv-row .t .fee {
  font-family: 'Jost', sans-serif; font-size: 0.76rem; color: var(--coral);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.kv-row p { margin: 0.45rem 0 0; font-size: 0.96rem; max-width: 70ch; }
.kv-row .sub {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.4rem;
}

/* ---------- two-column lists + checklists ---------- */
.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 2rem; }
.cols h4 {
  margin: 0 0 0.7rem; font-family: 'Jost', sans-serif; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; color: var(--coral);
}
ul.checks-list, ul.plain {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
ul.checks-list li, ul.plain li { position: relative; padding-left: 1.7rem; font-size: 0.97rem; }
ul.checks-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--coral); font-weight: 500;
}
ul.plain li::before {
  content: ""; position: absolute; left: 0.4rem; top: 0.78rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
}

/* ---------- callout ---------- */
.callout {
  background: var(--coral-soft); border: 1px solid rgba(244, 93, 86, 0.22);
  border-left: 3px solid var(--coral); border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
:root[data-theme="dark"] .callout { background: rgba(244, 93, 86, 0.09); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .callout { background: rgba(244, 93, 86, 0.09); }
}
.callout p { margin: 0; font-size: 0.97rem; max-width: 70ch; }
.callout p + p { margin-top: 0.6rem; }
.callout a { color: var(--coral); }
.callout .hd {
  font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 0.74rem; color: var(--coral); margin-bottom: 0.5rem;
}
.callout ul.plain { margin-top: 0.3rem; }

/* ---------- coming-soon band ---------- */
.soon-band {
  background: var(--ink); color: var(--body-dark);
  border-radius: var(--radius-lg); padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow);
}
.soon-band .chip { align-self: flex-start; }
.soon-band h3 { color: var(--bone); margin: 1rem 0 0.7rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.soon-band p { margin: 0; max-width: 64ch; }
.soon-band p + p { margin-top: 0.8rem; }
.soon-band a { color: var(--coral); }
.soon-band .kitlist {
  margin: 1.4rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; list-style: none;
}
.soon-band .kitlist li {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--body-dark); border: 1px solid var(--line-dark);
  border-radius: 3px; padding: 0.35rem 0.7rem;
}
@media (max-width: 560px) { .soon-band { padding: 1.7rem 1.4rem; } }

/* ---------- sources + updated stamp ---------- */
.srcs ul { list-style: none; margin: 0.4rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.srcs a { color: var(--coral); font-size: 0.9rem; word-break: break-word; }
/* .updated carries both timestamps and full running sentences, so it stays
   sentence case — letterspaced caps are unreadable at paragraph length. */
.updated { font-size: 0.88rem; color: var(--muted); margin: 0; max-width: 68ch; }

/* ---------- footer ---------- */
footer { background: var(--ink); color: var(--body-dark); }
.foot-top {
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) 1.75rem clamp(2rem, 4vw, 2.8rem);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.6rem;
}
.foot-col h4 {
  color: var(--bone); font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin: 0 0 1.1rem;
}
.foot-col p { font-size: 0.95rem; max-width: 42ch; }
.foot-col nav { display: flex; flex-direction: column; gap: 0.6rem; }
.foot-col a { color: var(--body-dark); text-decoration: none; font-size: 0.95rem; }
.foot-col a:hover { color: var(--coral); }
.foot-mark {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: 'Marcellus', serif; font-size: 1.3rem;
  color: var(--bone); margin-bottom: 1rem;
}
.foot-logo { width: 40px; height: 40px; border-radius: 50%; }
.foot-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease);
}
.foot-social a:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.foot-social svg { width: 17px; height: 17px; }
.foot-bottom { border-top: 1px solid var(--line-dark); }
.foot-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 1.5rem 1.75rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem;
  justify-content: space-between; font-size: 0.85rem;
}
.foot-inner nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.foot-inner a { text-decoration: none; color: var(--body-dark); }
.foot-inner a:hover { color: var(--coral); }
@media (max-width: 860px) {
  .foot-top { grid-template-columns: 1fr; gap: 2rem; padding-left: 1.2rem; padding-right: 1.2rem; }
  .foot-inner { padding: 1.4rem 1.2rem; }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
