/* ===========================================================================
   ALPINE ACE — Homepage layout
   Built on colors_and_type.css tokens. Responsive: desktop / tablet / mobile.
   =========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
main { background: #FFFFFF; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:root {
  --gut: clamp(20px, 5vw, 56px);   /* page gutter */
  --maxw: 1240px;
}

.wrap { width: 100%; max-width: calc(var(--maxw) + 2 * var(--gut)); margin: 0 auto; padding-inline: var(--gut); }

/* ---------- shared marks ---------- */
.aa-logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.aa-logo svg { flex: none; }
.aa-wm { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em; line-height: 1; font-weight: 700; white-space: nowrap; }

.eyebrow {
  font-family: var(--font-mono); font-weight: 700;
  font-size: var(--text-xs); letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--signal); margin: 0;
}
.coord {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  color: var(--ink-3); text-transform: uppercase;
}
.note { font-family: var(--font-script); color: var(--signal-deep); line-height: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 15px 24px; border: 1.5px solid transparent; cursor: pointer;
  border-radius: 50px;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .15s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--signal); color: #fff; }
.btn-primary:hover { background: var(--signal-deep); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-onphoto { background: var(--paper); color: var(--ink); }
.btn-onphoto:hover { background: #fff; }
.btn-ghost { background: transparent; color: var(--signal); padding: 0; }
.btn-ghost:hover { color: var(--signal-deep); }
.btn-outline { background: transparent; color: var(--signal); border-color: var(--signal); }
.btn-outline:hover { background: var(--signal); color: #fff; }
.btn-lg { padding: 18px 30px; font-size: 14px; }

/* link with mono arrow, used inline */
.linkarr {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-weight: 700; font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--signal);
  cursor: pointer; transition: color .18s ease;
}
.linkarr .arr { transition: transform .2s ease; }
.linkarr:hover { color: var(--signal-deep); }
.linkarr:hover .arr { transform: translateX(4px); }

/* =========================================================================
   HEADER — floating pill nav
   ========================================================================= */
.navwrap {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 50;
  padding: 0 var(--gut); pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.navwrap.nav-hidden { transform: translateY(calc(-100% - 40px)); }
.navbox { pointer-events: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }

/* Logo */
.nav-logo { display: inline-flex; align-items: center; gap: 11px; color: #fff; transition: color .3s ease; }
.nav-logo .aa-wm { font-size: 19px; }
.navbox.scrolled .nav-logo { color: var(--ink); }
.navbox.over-dark .nav-logo { color: #fff !important; }

/* Center pill */
.nav-pill {
  display: flex; align-items: center; gap: 24px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50px;
  padding: 11.5px 24px;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav-pill a {
  font-family: var(--font-mono); font-weight: 400; font-size: 12px;
  letter-spacing: .09em; text-transform: uppercase;
  color: #fff; white-space: nowrap;
  transition: color .2s ease;
}
.nav-pill a:hover { color: var(--signal); font-weight: 700; }
.navbox.scrolled .nav-pill {
  background: #ffffff;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-color: rgba(28, 25, 22, 0.1);
  box-shadow: 0 1px 6px rgba(28, 25, 22, 0.07);
}
.navbox.scrolled .nav-pill a { color: #000; }
.navbox.scrolled .nav-pill a:hover { color: var(--signal); font-weight: 700; }
.navbox.over-dark .nav-pill { background: rgba(255, 255, 255, 0.14) !important; border-color: rgba(255, 255, 255, 0.28) !important; box-shadow: none !important; }
.navbox.over-dark .nav-pill a { color: #fff !important; }

/* Right: CTA + hamburger */
.nav-right { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .09em; text-transform: uppercase;
  color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.5); border-radius: 50px;
  padding: 10px 22px; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.nav-cta .arr { transition: transform .2s ease; }
.nav-cta:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.nav-cta:hover .arr { transform: translateX(4px); }
.navbox.scrolled .nav-cta { color: var(--ink); border-color: var(--line-strong); }
.navbox.scrolled .nav-cta:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.navbox.over-dark .nav-cta { color: #fff !important; border-color: rgba(255, 255, 255, 0.5) !important; }

/* Hamburger — hidden desktop, shown mobile */
.nav-hamb { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: #fff; transition: color .3s ease; }
.navbox.scrolled .nav-hamb { color: var(--ink); }
.navbox.over-dark .nav-hamb { color: #fff !important; }
.hamb-icon-menu { display: block; }
.hamb-icon-menu rect { fill: currentColor; }
.hamb-icon-close { display: none; }
.hamb-icon-close path { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }
.nav-hamb.open .hamb-icon-menu { display: none; }
.nav-hamb.open .hamb-icon-close { display: block; }

@media (max-width: 768px) {
  .nav-pill { display: none; }
  .nav-cta { display: none; }
  .navbox { grid-template-columns: 1fr auto; }
  /* Transparent floating nav — hamburger gets the desktop pill treatment */
  .navwrap { top: 32px; }
  .nav-hamb {
    display: flex;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    padding: 11px 16px;
    color: #fff;
  }
  /* Scrolled state — opaque pill, dark icon */
  .navbox.scrolled .nav-hamb {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(28, 25, 22, 0.1);
    box-shadow: 0 1px 6px rgba(28, 25, 22, 0.07);
    color: var(--ink);
  }
  /* Over dark sections — reset pill to glass, keep icon white */
  .navbox.over-dark .nav-hamb {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    box-shadow: none !important;
    color: #fff !important;
  }
}

/* dim overlay behind the right-panel drawer */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 51;
  background: rgba(28, 25, 22, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* right-slide full-height drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 52;
  width: 100%;
  background: var(--paper);
  border-left: 1px solid var(--line);
  padding: 24px 28px 32px;
  transform: translateX(100%); pointer-events: none;
  transition: transform .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -6px 0 32px rgba(28, 25, 22, 0.14);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); pointer-events: auto; }

/* Header row: MENU title + close button */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-faint);
  margin-bottom: 4px;
}
.drawer-menu-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
}

/* close (×) button inside the drawer header */
.drawer-close {
  background: none; border: none; cursor: pointer;
  padding: 4px;
  color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  transition: color .16s ease;
}
.drawer-close:hover { color: var(--signal); }

/* Section label inside drawer */
.drawer-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--line-faint);
}

/* Pass links */
.drawer > a {
  display: block; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--line-faint);
  transition: color .16s ease;
}
.drawer > a:hover { color: var(--signal); }

/* Talk to Us — pill CTA at panel bottom (higher specificity to override .drawer > a) */
.drawer a.drawer-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--signal);
  color: #fff;
  border-bottom: none;
  border-radius: 50px;
  padding: 15px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease;
}
.drawer a.drawer-cta:hover { background: var(--signal-deep); color: #fff; }
.drawer a.drawer-cta .arr { transition: transform .2s ease; }
.drawer a.drawer-cta:hover .arr { transform: translateX(4px); }

/* Hide WhatsApp float when the drawer is open */
.drawer.open ~ .wa-float { display: none; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 100vh; color: #fff; overflow: hidden; display: flex; }
.hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .scrim-t { display: none; }
.hero .scrim-b { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,21,27,.82) 0%, rgba(15,21,27,.35) 35%, rgba(15,21,27,0) 60%); }
.hero .hero-sentinel { position: absolute; left: 0; bottom: 72px; width: 1px; height: 1px; pointer-events: none; }
.hero .inner {
  position: relative; z-index: 2; width: 100%; max-width: calc(var(--maxw) + 2 * var(--gut));
  margin: 0 auto; padding: clamp(88px, 10vw, 104px) var(--gut) clamp(40px, 6vw, 72px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero .hero-content { display: flex; flex-direction: column; }
.hero .metarow {
  display: flex; width: 100%; margin: 0 0 auto;
  border: 1px solid rgba(255,255,255,.32);
}
.hero .metarow .cell { flex: 1; padding: 12px 18px; border-right: 1px solid rgba(255,255,255,.22); }
.hero .metarow .cell:last-child { border-right: none; }
.hero .metarow .k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.68); }
.hero .metarow .v { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; margin-top: 5px; }

.hero h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(32px, 6.3vw, 84px); line-height: 0.86; letter-spacing: -0.025em;
  margin: 14px 0 0; max-width: 16ch;
}
.hero h1 em { color: var(--signal-bright); font-style: normal; }
.hero .lead {
  font-family: var(--font-sans); font-size: clamp(16px, 2vw, 20px); line-height: 1.55;
  max-width: 44ch; color: rgba(255,255,255,.92); margin: 22px 0 0;
}
.hero .lead .passes { font-family: var(--font-mono); font-size: .82em; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); display: block; margin-top: 8px; }
.hero .cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }

/* social proof */
.proof { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars .av {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(241,245,248,.92);
  margin-left: -12px; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: #fff;
  box-shadow: var(--shadow-sm);
}
.avatars .av:first-child { margin-left: 0; }
.proof .pt { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.88); text-transform: uppercase; line-height: 1.4; }
.proof .pt b { color: #fff; }


/* =========================================================================
   HERO V2 — cinematic looping video + scroll pan-zoom
   ========================================================================= */
.hero-v2 {
  position: relative;
  z-index: 5;
  height: 100vh;
  overflow: hidden;
  background: #080c12;
}

.hero-v2__scene {
  position: absolute;
  inset: 0;
}

.hero-v2__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  z-index: 1;
}

.hero-v2__layer--fg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(-6px -10px 32px rgba(0,0,0,0.18));
}
.hero-v2__layer--fg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-v2__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(8,12,18,0.15) 0%,
    rgba(8,12,18,0.0) 30%,
    rgba(8,12,18,0.65) 100%
  );
  pointer-events: none;
}

.hero-v2__text {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 5.5vw, 72px);
  pointer-events: none;
}

.hero-v2__headline {
  font-family: var(--font-display);
  font-size: clamp(2.52rem, 7vw, 9.1rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.hero-v2__line {
  display: block;
}

.hero-v2__word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.22em;
}
.hero-v2__word-wrap:last-child { margin-right: 0; }

.hero-v2__word-wrap--accent {
  overflow: visible;
}

.hero-v2__word {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-v2__word--accent {
  font-family: 'Shadows Into Light', cursive;
  font-size: 0.88em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--signal);
}

.hero-v2__cta-group {
  margin-top: clamp(20px, 3vw, 36px);
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: auto;
}

.hero-v2__scroll-hint {
  position: absolute;
  bottom: clamp(24px, 4vh, 44px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.hero-v2__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.55);
  transform-origin: top;
  animation: heroScrollPulse 2s ease-in-out infinite;
}
.hero-v2__scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@keyframes heroScrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

.hero-sentinel {
  position: absolute;
  left: 0; bottom: 80px;
  width: 1px; height: 1px;
  pointer-events: none;
}

@media (max-width: 640px) {
  .hero-v2__headline { font-size: clamp(2.8rem, 13vw, 5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2__word { opacity: 1 !important; transform: none !important; }
  .hero-v2__cta-group { opacity: 1 !important; transform: none !important; }
  .hero-v2__scroll-hint { opacity: 0.55 !important; }
  .hero-v2__scroll-line { animation: none; }
}

/* =========================================================================
   HOME ROUTE — transparent overlay sitting above the parallax hero
   ========================================================================= */
.home-route {
  background: transparent;
  position: relative;
  z-index: 3;
  padding: 0;
}

.route-bleed-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: clamp(480px, 68vh, 800px);
  align-items: center;
}

.route-bleed-img {
  height: 100%;
  min-height: clamp(480px, 68vh, 800px);
  overflow: hidden;
}

.route-bleed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-bleed-text {
  padding: clamp(48px, 6vw, 80px) var(--gut) clamp(48px, 6vw, 80px) clamp(44px, 6.5vw, 88px);
}

.route-bleed-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 28px;
}

.route-bleed-text > p {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.68;
  color: var(--ink-2);
  max-width: 40ch;
  margin: 0 0 32px;
}

@media (max-width: 768px) {
  .route-bleed-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .route-bleed-img {
    height: 58vw;
    min-height: 0;
  }
  .route-bleed-text {
    padding: clamp(32px, 6vw, 48px) var(--gut);
  }
}

/* =========================================================================
   SECTION SCAFFOLD
   ========================================================================= */
.sec { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.sec.pine { background: var(--pine); color: var(--paper); }
.sec.pine .eyebrow { color: var(--signal-bright); }
.contour-bg { position: absolute; inset: 0; pointer-events: none; color: var(--pine-3); opacity: .3; overflow: hidden; }
.contour-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; border-bottom: none; padding-bottom: 0; margin-bottom: clamp(36px, 5vw, 60px); }
.sec.pine .sechead { border-color: var(--line-ondark); }
.sechead h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 5.6vw, 64px); line-height: .9; letter-spacing: -0.015em;
  margin: 12px 0 0;
}
.sechead .coord { white-space: nowrap; padding-bottom: 4px; }

/* =========================================================================
   02 · OUR PHILOSOPHY
   ========================================================================= */
.shift { position: relative; padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.shift .wrap { padding-inline: clamp(var(--gut), 17vw, 220px); }
.philosophy-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(29px, 3.6vw, 48px);
  align-items: center;
}
.philosophy-text { text-align: center; }
.philosophy-headline {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(22px, 2.8vw, 38px); line-height: 1.0; letter-spacing: -0.015em;
  color: var(--paper); margin: 0 0 clamp(20px, 2.5vw, 32px);
}
.philosophy-body {
  font-family: var(--font-sans); font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65; color: #fff; margin: 0;
}

/* =========================================================================
   EDITORIAL CAROUSEL — 3-up with peek cards + testimonial hover
   ========================================================================= */
.editorial {
  background: #FFFFFF;
  padding-top: clamp(56px, 10vw, 160px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.trust .wrap,
.editorial .wrap {
  max-width: none;
  margin: 0;
  padding-inline: calc(clamp(12px, 1.5vw, 20px) + var(--gut));
}

.trust-head,
.ed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 80px);
  padding-bottom: clamp(48px, 7vw, 88px);
}

.ed-headline {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: .9;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  flex: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.6,.2,1);
}
.ed-headline.in { opacity: 1; transform: none; }

.ed-sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.68;
  color: var(--ink-2);
  width: clamp(280px, 34vw, 460px);
  flex: 0 0 auto;
  margin: 0;
  padding-bottom: 4px;
  text-align: right;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s .12s ease, transform .6s .12s cubic-bezier(.2,.6,.2,1);
}
.ed-sub.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .ed-headline, .ed-sub { opacity: 1; transform: none; transition: none; }
}

/* Stage */
.ed-stage {
  width: 100%;
  overflow: hidden;
}

/* Scrolling track */
.ed-track {
  display: flex;
  gap: 8px;
  width: max-content;
  align-items: stretch;
  animation: ed-scroll 55s linear infinite;
  will-change: transform;
}


@keyframes ed-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Card base */
.ed-card {
  flex: 0 0 clamp(300px, 30vw, 452px);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 22, 0.1);
}

/* Image wrapper — 70% of original stage height */
.ed-img-wrap {
  position: relative;
  height: clamp(298px, 42vw, 497px);
  overflow: hidden;
  flex-shrink: 0;
}

.ed-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  pointer-events: none;
  z-index: 1;
}

.ed-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.65s ease;
}

.ed-card:hover .ed-img-wrap img {
  transform: scale(1.04);
}

/* Caption below image — quote, handle */
.ed-caption {
  background: #fff;
  padding: clamp(10px, 1.2vw, 14px) clamp(16px, 2vw, 22px) clamp(16px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ed-quote {
  font-family: 'Shadows Into Light', cursive;
  font-weight: 400;
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  text-align: left;
  margin: 0;
}

.ed-handle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.76vw, 10px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--signal);
  text-decoration: none;
  transition: text-decoration 0.15s ease;
  cursor: pointer;
}
.ed-handle:hover {
  text-decoration: underline;
}

/* Chips — overlaid at bottom of image */
.ed-chips {
  position: absolute;
  bottom: clamp(14px, 2vw, 22px);
  left: clamp(14px, 2vw, 22px);
  right: clamp(14px, 2vw, 22px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.ed-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: clamp(8px, 0.78vw, 10px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

.ed-chip--handle {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--signal);
  border-color: #fff;
  font-size: clamp(9px, 0.86vw, 11px);
}

.ed-ig-icon {
  width: 10.5px;
  height: 10.5px;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ed-track { animation: none; }
  .ed-img-wrap img { transition: none; }
}


/* Mobile */
@media (max-width: 768px) {
  .trust .wrap,
  .editorial .wrap { padding-inline: clamp(12px, 1.5vw, 20px); }
  .trust-head,
  .ed-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-body,
  .ed-sub { width: 100%; text-align: left; }
}

@media (max-width: 640px) {
  .ed-card { flex: 0 0 80vw; }
  .ed-img-wrap { height: clamp(200px, 40vw, 260px); }
}

/* =========================================================================
   04 · MEMORIES — editorial layered collage, text right of Memory 2
   ========================================================================= */
.memories { padding-top: 70px; padding-bottom: 70px; }
.mem-layout {
  position: relative;
  min-height: 800px;
}
.mem-card { position: absolute; }
.mem-card img { width: 100%; display: block; }

/* Memory 1 — back left, top: 0 */
.mem-card--1 {
  width: 370px;
  top: 0; left: 0;
  z-index: 1;
}
/* Memory 3 — back right large landscape, top: 0, top-aligned with Memory 1 */
.mem-card--3 {
  width: 560px;
  top: 0; left: 517px;
  z-index: 2;
}
/* Memory 2 — front centre, top starts at ~halfway of Memory 3 (~180px) */
.mem-card--2 {
  width: 370px;
  top: 180px; left: 270px;
  z-index: 3;
}
/* Text — right of Memory 2, 48px gap, top starts 48px below Memory 3 bottom (314px + 48 = 362px) */
.mem-text {
  position: absolute;
  top: 376px;
  left: 702px;
  max-width: 520px;
  z-index: 4;
  background: var(--paper);
}

/* Mountain illustration — overlaps bottom of Memory 2, topmost layer */
.mem-mountain {
  position: absolute;
  width: 210px;
  top: 500px;
  left: 108px;
  z-index: 10;
  display: block;
}

.mem-headline {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(26px, 3vw, 44px); line-height: .95; letter-spacing: -0.02em;
  color: var(--ink); margin: 12px 0 clamp(18px, 2vw, 26px);
}
.mem-body {
  font-family: var(--font-sans); font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65; color: var(--ink-2); margin: 0;
}

@media (max-width: 1100px) {
  .mem-layout { min-height: 520px; }
  .mem-card--1 { width: 280px; }
  .mem-card--3 { width: 420px; left: 390px; }
  .mem-card--2 { width: 280px; top: 140px; left: 205px; }
  .mem-text { top: 140px; left: 533px; max-width: 280px; }
}

@media (max-width: 760px) {
  .mem-layout { min-height: 680px; }
  .mem-card--1 { width: 190px; }
  .mem-card--3 { width: 300px; left: 0; top: 350px; }
  .mem-card--2 { width: 200px; top: 120px; left: 140px; }
  .mem-text { position: static; margin-top: 32px; max-width: 100%; background: none; }
}

/* =========================================================================
   03 · THE PASSES — full-screen scroll reel (GSAP pin)
   ========================================================================= */
.passes {
  padding: clamp(12px, 1.5vw, 20px);
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  box-sizing: border-box;
  z-index: 10;
}

.passes-card {
  width: 100%;
  height: 100%;
  border-radius: clamp(10px, 1.2vw, 16px);
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.passes-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 56px 10px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  z-index: 5;
}

.passes-reel {
  display: flex;
  height: 100%;
  will-change: transform;
}

.preel-panel {
  width: 100%;
  height: 100%;
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
}

.preel-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.05);
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.preel-panel.is-active .preel-bg { transform: scale(1); }

.preel-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,14,18,.82) 0%, rgba(10,14,18,.22) 52%, rgba(10,14,18,.06) 100%);
}

.preel-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 var(--gut) clamp(32px, 4vw, 54px);
  color: #fff;
  display: flex; flex-direction: column; gap: 16px;
  z-index: 2;
}

.preel-name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(56px, 9.5vw, 128px); line-height: .88;
  letter-spacing: -0.025em; color: #fff; margin: 0;
}

.preel-mood {
  font-family: 'Shadows Into Light', cursive; font-size: clamp(24px, 3vw, 38px);
  color: var(--signal-bright); margin: 0; line-height: 1.2;
}

.preel-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.preel-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preel-metrics {
  display: flex;
  align-items: center;
  padding-top: clamp(14px, 2vh, 24px);
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.preel-metric {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.preel-metric:not(:last-child) {
  padding-right: clamp(12px, 2.2vw, 28px);
}
.preel-metric + .preel-metric {
  padding-left: clamp(12px, 2.2vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}
.preel-metric:last-child { padding-right: 0; }
.preel-metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.preel-metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1;
}

/* counter + progress bar overlay */
.preel-ui {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 var(--gut) 22px; gap: 18px;
}

.preel-counter {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  color: rgba(255,255,255,.48); display: flex; gap: 6px;
}
.preel-counter span:first-child { color: #fff; }

.preel-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,.15);
}
.preel-bar-fill {
  height: 100%; background: var(--signal); width: 0%;
  transition: width .35s cubic-bezier(.2,.6,.2,1);
}

/* =========================================================================
   04 · OUR WAY — 3 columns, no icons
   ========================================================================= */
.way {
  padding-top: clamp(120px, 15vw, 200px);
  padding-bottom: clamp(120px, 15vw, 200px);
  position: relative;
  background: #fff;
  z-index: 3;
  margin-top: -80px;
}
.way .cols {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.6,.2,1);
}
.way.way--visible .cols {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .way .cols { opacity: 1; transform: none; transition: none; }
  .way .col-img img { transition: none; }
}
.way .cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(48px, 7vw, 96px);
}
.way .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.way .col-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.way .col-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.way .col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: .98;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 clamp(10px, 1.2vw, 16px);
  text-align: center;
  text-wrap: balance;
}

.way-script {
  font-family: 'Shadows Into Light', cursive;
  font-size: inherit;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--signal);
}
.way .col p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  text-align: center;
}

/* =========================================================================
   05 · A STORY — split, pine dark, immersive
   ========================================================================= */
.story { background: var(--pine); color: var(--paper); position: relative; overflow: hidden; }
.story .grid { display: grid; grid-template-columns: 0.95fr 1.05fr; min-height: clamp(560px, 70vw, 720px); }
.story .figure { position: relative; overflow: hidden; }
.story .figure img { width: 100%; height: 100%; object-fit: cover; }
.story .figure .scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34,46,55,0) 55%, var(--pine) 100%); }
.story .panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 88px) clamp(28px, 6vw, 96px); }
.story .panel .label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--signal-bright); }
.story .panel .label::before { content: ""; width: 28px; height: 1.5px; background: var(--signal-bright); }
.story .panel .prose { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; max-width: 50ch; }
.story .panel .prose p { font-family: var(--font-sans); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.62; color: rgba(241,245,248,.9); margin: 0; }
.story .panel .prose p.turn { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(24px, 2.8vw, 38px); line-height: 1.02; letter-spacing: -0.01em; color: var(--paper); }
.story .panel .prose p.turn em { color: var(--signal-bright); font-style: normal; }

/* =========================================================================
   06 · VOICES
   ========================================================================= */
.voices .vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.voices .v { display: flex; flex-direction: column; }
.voices .v .quote { font-family: var(--font-sans); font-weight: 500; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4; color: var(--ink); letter-spacing: -0.01em; margin: 0; text-wrap: pretty; }
.voices .v .quote .mk { color: var(--signal); font-family: var(--font-display); }
.voices .v .by { margin-top: auto; padding-top: 22px; }
.voices .v .by .name { font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }
.voices .v .by .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }
.voices .v .rule { height: 1px; background: var(--line); margin: 26px 0 0; }

/* =========================================================================
   07 · CTA
   ========================================================================= */
.cta { position: relative; color: #fff; overflow: hidden; min-height: clamp(540px, 68vw, 760px); display: flex; align-items: flex-end; padding-bottom: 520px; }
.cta .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.cta .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,20,.06) 0%, rgba(10,15,20,.48) 44%, rgba(10,15,20,.92) 100%); }
.cta .inner { position: relative; z-index: 2; width: 100%; max-width: calc(var(--maxw) + 2 * var(--gut)); margin: 0 auto; padding: clamp(56px,8vw,96px) var(--gut); display: flex; flex-direction: column; align-items: flex-start; }
.cta h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(44px, 7.8vw, 108px); line-height: .88; letter-spacing: -0.025em; margin: 0; max-width: 14ch; }
.cta-rule { width: 100%; height: 1px; background: rgba(255,255,255,.24); margin: clamp(24px, 3.2vw, 38px) 0; }
.cta-foot { display: flex; align-items: center; justify-content: space-between; gap: clamp(24px, 5vw, 64px); width: 100%; }
.cta-foot p { font-family: var(--font-sans); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.62; color: rgba(255,255,255,.84); max-width: 42ch; margin: 0; }
.cta .cta-rule.reveal { transition-delay: .12s; }
.cta .cta-foot.reveal { transition-delay: .22s; }


/* =========================================================================
   HERO PASS SLIDER
   ========================================================================= */
.hero-slider-wrap {
  position: absolute; right: 48px; bottom: clamp(40px, 6vw, 72px);
  width: clamp(280px, 30vw, 436px); z-index: 3;
}

.hs-nav { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; width: 40%; }
.hs-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  color: rgba(255,255,255,.65); white-space: nowrap; min-width: 18px;
}
.hs-track { flex: 1; height: 1px; background: rgba(255,255,255,.25); position: relative; }
.hs-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  background: #fff; width: 20%;
  transition: width .45s cubic-bezier(.2,.6,.2,1);
}
.hs-arrows { display: flex; gap: 6px; }
.hs-arrow {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; cursor: pointer; border-radius: var(--radius-xs);
  display: grid; place-items: center; font-size: 15px; line-height: 1;
  transition: background .2s, border-color .2s;
}
.hs-arrow:hover { background: var(--signal); border-color: var(--signal); }
.hs-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }

.hs-viewport { overflow: hidden; width: calc(100% + 48px); }
.hs-cards {
  display: flex; gap: 10px;
  transition: transform .45s cubic-bezier(.2,.6,.2,1);
  will-change: transform;
}

/* frosted glass pass card */
.pass-card {
  flex: 0 0 200px;
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-sm); overflow: hidden;
  text-decoration: none; color: #fff;
  transition: border-color .22s, background .22s;
}
.pass-card:hover { border-color: rgba(255,255,255,.68); background: rgba(255,255,255,.13); }
.pc-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.pass-card:hover .pc-img img { transform: scale(1.06); }
.pc-body { padding: 11px 13px 14px; }
.pc-label { display: none; }
.pc-name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 18px; line-height: .96; letter-spacing: -0.01em; color: #fff; margin: 6px 0 0;
}
.pc-elev {
  display: block; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: 7px;
}

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   TRUST & CREDIBILITY
   ========================================================================= */
.trust {
  background: #FFFFFF;
  padding-top: clamp(67px, 8.4vw, 112px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.trust-inner {
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gut));
  margin: 0 auto;
  padding-inline: var(--gut);
}



/* ---- Headline ---- */
.trust-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  flex: 1;
}

.trust-title-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: .9;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: block;
  text-wrap: balance;
}

.trust-title-script {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: .9;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: block;
}

/* Stagger script line 0.28s behind display line */
.trust-title-script.reveal { transition-delay: 0.28s; }

/* ---- Mountain + sun cluster above title ---- */
.trust-prelude {
  position: relative;
  width: clamp(240px, 34vw, 460px);
  margin-bottom: clamp(28px, 3.5vw, 48px);
  overflow: visible;
}
.trust-prelude .trust-photo-a {
  width: 67%;
  opacity: 1;
}
.trust-prelude .trust-sun {
  left: 74%;
  top: 20%;
  transform: translateX(-65%);
}

/* ---- Two-image grid (mountain moved to prelude above) ---- */
.trust-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin: 0;
  align-items: end;
  position: relative;
}

.trust-photo-a,
.trust-photo-b,
.trust-photo-c {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  opacity: 0;
}

.trust-photo-a { transition: opacity 0.9s ease 0.35s; }
.trust-photo-b { transition: opacity 0.9s ease 0.5s; }
.trust-photo-c { transition: opacity 0.9s ease 0.65s; }

.trust-photo-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 12px 16px;
  text-align: center;
  font-family: 'Shadows Into Light', cursive;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--signal);
  background: linear-gradient(to top, rgba(8, 6, 4, 0.72) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.trust-photo-a.in,
.trust-photo-b.in,
.trust-photo-c.in { opacity: 1; }

.trust-photo-a img,
.trust-photo-b img,
.trust-photo-c img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.trust-photo-a img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 94%;
  height: auto;
  object-fit: initial;
  object-position: initial;
  background: transparent;
}

/* Sun overlapping mountain → second photo: 70% left, 30% right */
.trust-sun {
  position: absolute;
  left: calc((100% - 16px) / 3 + 4px);
  top: 33%;
  transform: translateX(-70%);
  width: clamp(118px, 16vw, 218px);
  height: auto;
  z-index: 10;
  pointer-events: none;
  display: block;
}


/* ---- Body paragraph: mirrors .ed-sub ---- */
.trust-body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.68;
  color: var(--ink-2);
  margin: 0;
  padding-bottom: 4px;
  width: clamp(280px, 34vw, 460px);
  flex: 0 0 auto;
  text-align: right;
  text-wrap: balance;
}

.trust-body.reveal { transition-delay: 0.28s; }


/* ---- Trust: desktop/tablet — prelude left, photos right ---- */
@media (min-width: 769px) {
  .trust-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .trust-title { flex: 0 0 auto; }
  .trust-body { flex: 0 0 auto; width: clamp(280px, 34vw, 460px); max-width: none; }
  .trust-prelude {
    flex: 0 0 auto;
    width: clamp(220px, 28vw, 400px);
    margin-bottom: 0;
    align-self: flex-end;
    z-index: 2;
  }
  .trust-prelude .trust-photo-a { width: 100%; }
  .trust-prelude .trust-sun {
    left: 95%;
    top: 35%;
    transform: translateX(-40%);
  }
  .trust-media {
    flex: 0 0 auto;
    width: clamp(450px, 55vw, 780px);
  }
  .trust-photo-b,
  .trust-photo-c {
    aspect-ratio: 3 / 4;
    height: auto;
  }
}

/* ---- Trust: responsive ---- */
@media (max-width: 768px) {
  .trust-inner { padding-inline: clamp(12px, 1.5vw, 20px); }
  .trust-prelude { width: clamp(180px, 48vw, 280px); }
  .trust-media { grid-template-columns: 1fr 1fr; }
}

/* ---- Trust: mobile — mountain above title ---- */
@media (max-width: 768px) {
  .trust {
    display: flex;
    flex-direction: column;
  }
  /* Flatten trust-inner so its children become direct flex items of .trust */
  .trust-inner { display: contents; }
  /* 1 — mountain + sun: before the title wrap */
  .trust-prelude {
    order: 1;
    width: auto;
    padding-inline: var(--gut);
    margin-bottom: clamp(20px, 4vw, 28px);
  }
  /* 2 — title + description block */
  .trust .wrap { order: 2; }
  /* 3 — guide photos: after the text */
  .trust-media {
    order: 3;
    padding-inline: var(--gut);
  }
  /* Explicit left-align for title and body */
  .trust-title,
  .trust-title-display,
  .trust-title-script { text-align: left; }
  .trust-body { text-align: left; }
}

@media (max-width: 540px) {
  .trust-title-display,
  .trust-title-script  { font-size: clamp(28px, 9vw, 48px); }
  .trust-prelude { width: clamp(160px, 52vw, 240px); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-title-display,
  .trust-title-script,
  .trust-photo-a,
  .trust-photo-b,
  .trust-photo-c,
  .trust-body { opacity: 1; transform: none; transition: none; }
  .trust-photo-a img,
  .trust-photo-b img,
  .trust-photo-c img { transition: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
.way .cols { grid-template-columns: 1fr; gap: clamp(36px, 8vw, 56px); }
  .way .col-img { aspect-ratio: 4 / 3; }
  .story .grid { grid-template-columns: 1fr; min-height: 0; }
  .story .figure { aspect-ratio: 16/10; }
  .story .figure .scrim { background: linear-gradient(0deg, var(--pine), rgba(34,46,55,0) 60%); }
  .voices .vgrid { grid-template-columns: 1fr; gap: 0; }
  .voices .v { padding: 28px 0; }
  .voices .v .rule { display: none; }
  .voices .v + .v { border-top: 1px solid var(--line); }
  .voices .v .by { padding-top: 16px; }
}

@media (max-width: 860px) {
  .hero-slider-wrap { display: none; }
  .navbox .menu-cell, .navbox .talk-cell { display: none; }
  .navbox .hamb-cell { display: flex; padding-inline: 18px; }
  /* logo fills remaining space so hamb stays pinned to the right */
  .navbox .logo-cell { flex: 1 1 auto; }
  .hero .metarow .cell:nth-child(3), .hero .metarow .cell:nth-child(4) { display: none; }

  .sechead { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 768px) {
  /* Edge-to-edge card */
  .passes { padding: 0; }
  .passes-card { border-radius: 0; }

  .passes-reel { flex-direction: column; }
  .preel-ui { display: none; }

  /* Mobile card layout: title → metrics (2×2 grid) → CTA */
  .preel-title-row { display: contents; }
  .preel-title-group { order: 1; }

  .preel-metrics {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0;
    margin-top: 12px;
    border-top: none;
    padding-top: clamp(12px, 2vh, 18px);
  }
  /* Hide Group Size — matches Rupin hero 4-metric layout */
  .preel-metric:nth-child(5) { display: none; }

  .preel-metric {
    flex: none;
    padding: 10px 0;
    padding-left: 0;
    padding-right: 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
  /* Kill the desktop adjacent-sibling border-left that bleeds into grid items */
  .preel-metric + .preel-metric { border-left: none; padding-left: 0; }
  /* Single horizontal divider between row 1 and row 2 */
  .preel-metric:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  /* CTA: centred, full-width button */
  .rp-cta-group {
    order: 3;
    align-items: center;
    margin-top: 16px;
  }
  .rp-cta-group .btn { width: 100%; justify-content: center; }

  /* ---- Mobile CTA size: -25% padding, -15% font ---- */
  .btn {
    padding: 11px 18px;
    font-size: 11px;
  }
  .btn-lg {
    padding: 14px 22px;
    font-size: 12px;
  }

  /* ---- Mobile font sizes: -15% on key display elements ---- */
  .preel-name { font-size: clamp(48px, 9.5vw, 108px); }
  .preel-mood { font-size: clamp(20px, 3vw, 32px); }
  .ed-headline { font-size: clamp(29px, 5.6vw, 54px); }
  .sftr-headline { font-size: clamp(29px, 5.6vw, 54px); }
  .sechead h2 { font-size: clamp(29px, 5.6vw, 54px); }
}

@media (max-width: 560px) {
  .hero .metarow { display: none; }
  .hero h1 { margin-top: 0; }
  .cta-row .btn, .hero .cta-row .btn { width: 100%; justify-content: center; }
  .hero .cta-row { gap: 14px; }
  .proof .pt { font-size: 11px; }
  .ftr .top { gap: 32px; }
  .cta-foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-foot .btn { width: 100%; justify-content: center; }
}

/* =========================================================================
   SITE FOOTER — mountain illustration + floating content
   ========================================================================= */
.site-footer {
  background: #FFFFFF;
}

/* ---- Talk section: headline + CTA, above the illustration ---- */
.sftr-talk {
  background: #FFFFFF;
  padding: clamp(32px, 4vw, 56px) var(--gut) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Illustration container — clipped to just the mountain peaks, no sky */
.sftr-illus {
  position: relative;
  margin: 0;
  padding: 0;
  height: clamp(328px, 45.4vw, 630px);
  overflow: hidden;
}

.sftr-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  margin: 0;
}

.sftr-headline {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  text-wrap: balance;
}

.sftr-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ---- Copyright — overlaid at absolute bottom of illustration ---- */
.sftr-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 10px var(--gut);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 251, 246, 0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- Base bar: brand + links, sits above copyright ---- */
.sftr-base {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  padding: 0 var(--gut) clamp(18px, 2.5vw, 32px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(10px, 1.4vw, 16px);
}

/* Brand: text only, no SVG */
.sftr-brand-block {
  background: var(--paper);
  padding: clamp(12px, 1.4vw, 18px) clamp(16px, 1.8vw, 22px);
}

.sftr-brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.16s ease;
}
.sftr-brand-name:hover { color: var(--signal); }

.sftr-since {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 7px;
}

/* Links + Passes grouped on the right */
.sftr-nav-boxes {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-left: auto;
}

/* Separate box for each column */
.sftr-col-box {
  background: var(--paper);
  padding: clamp(12px, 1.4vw, 18px) clamp(16px, 1.8vw, 22px);
}

.sftr-col-box h5 {
  font-family: 'Shadows Into Light', cursive;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink-2);
  margin: 0 0 10px;
}

.sftr-col-box a {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(12px, 0.95vw, 14px);
  color: var(--ink-2);
  margin-bottom: 5px;
  transition: color 0.16s ease;
}
.sftr-col-box a:last-child { margin-bottom: 0; }
.sftr-col-box a:hover { color: var(--signal); }

/* ---- Copyright strip ---- */
.sftr-copy {
  background: var(--paper);
  border-top: none;
  padding: 13px var(--gut);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- Footer responsive ---- */
@media (max-width: 768px) {
  /* CTA section: small bottom gap before the mountain */
  .sftr-talk { padding-top: clamp(32px, 8vw, 48px); padding-bottom: clamp(20px, 5vw, 28px); }

  /* Mountain fills this section; tall enough for stacked nav boxes */
  .sftr-illus { height: 440px; margin-top: 0; overflow: hidden; }

  /* Nav boxes: stacked column, pinned above copyright */
  .sftr-base {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    bottom: 52px;
    padding: 0 var(--gut);
  }

  /* Logo first (top) */
  .sftr-brand-block {
    order: 1;
    padding: 10px 24px;
    text-align: center;
  }

  /* Nav boxes below logo, full width, centered */
  .sftr-nav-boxes {
    order: 2;
    flex-direction: column;
    gap: 8px;
    width: calc(100% - 2 * var(--gut));
    margin-left: 0;
  }

  /* Passes box first (above Links) within nav */
  .sftr-nav-boxes .sftr-col-box:last-child { order: -1; }

  /* Each box: heading full-width, links wrap horizontally */
  .sftr-col-box {
    padding: 10px 14px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px 12px;
  }

  .sftr-col-box h5 {
    flex: 0 0 100%;
    font-size: 13px;
    margin-bottom: 2px;
  }

  .sftr-col-box a {
    display: inline;
    font-size: 11px;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .sftr-headline { font-size: clamp(26px, 8vw, 40px); }
}

@media (max-width: 640px) {
  /* Talk section floats above mountain in z-axis — no white panel */
  .sftr-talk {
    position: relative;
    z-index: 2;
    background: transparent;
    padding-bottom: 20px;
  }

  /* Mountain pulls up behind talk section, fills to bottom edge */
  .sftr-illus {
    position: relative;
    z-index: 1;
    margin-top: -80px;
    height: 500px;
  }

  /* Copyright strip: transparent so mountain shows through at the bottom */
  .sftr-copy {
    background: transparent;
    color: rgba(253, 251, 246, 0.55);
  }
}

/* =========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================= */
.wa-float {
  position: fixed;
  bottom: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 13px 20px 13px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.52);
}
.wa-float svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .wa-float { display: none; }
}


/* =========================================================================
   BATCH AVAILABILITY — pass cards + rupin hero
   ========================================================================= */
.preel-batch {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  padding-top: clamp(10px, 1.2vw, 14px);
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: clamp(10px, 1.2vw, 14px);
}
.preel-batch-date {
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.8vw, 11px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.preel-batch-date strong {
  color: #fff;
  font-weight: 600;
}
.preel-batch-spots {
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.8vw, 11px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 600;
}

/* White pill chip — used on rupin detail hero under mood quote */
.preel-batch--chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 100px;
  padding: 7px 16px;
  margin-top: 14px;
  border-top: none;
  border: none;
  width: fit-content;
}
.preel-batch--chip .preel-batch-date,
.preel-batch--chip .preel-batch-spots {
  font-family: var(--font-body);
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}
.preel-batch--chip .preel-batch-date {
  color: var(--ink-2, #443D33);
}
.preel-batch--chip .preel-batch-date strong {
  color: var(--ink-2, #443D33);
  font-weight: 400;
}
.preel-batch--chip .preel-batch-spots {
  color: var(--signal);
}

/* =========================================================================
   FREE CANCELLATION MICRO-COPY
   ========================================================================= */
.btn-microcopy {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.76vw, 10px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  text-align: center;
}
.btn-microcopy--dark {
  color: #9a9080;
}

/* =========================================================================
   RUPIN HERO — secondary WhatsApp CTA row
   ========================================================================= */
.rp-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.rp-wa-link {
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.78vw, 10px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s ease;
}
.rp-wa-link:hover { color: rgba(255,255,255,0.85); }
@media (max-width: 640px) {
  .rp-cta-group { align-items: flex-start; }
}
