/* ============================================================
   ATLAS GUIDE  ·  HOME PAGE  ·  "THE JOURNEY"  v2.1
   home.css  ·  Requires global.css loaded first
   ------------------------------------------------------------
   Scroll-driven experiential homepage. Prefix: hm-
   Header and footer untouched (header-footer.css).
   Effects: parallax hero plates, drawing flight path,
   live news wire ticker, word-split title reveals,
   manifesto ink-in, horizontal expedition pan, count-up
   stats, spin-the-atlas picker, journey rail, compass spin.
   ============================================================ */

:root {
  --hm-hair:        rgba(26, 58, 43, 0.16);
  --hm-border-warm: rgba(201, 168, 92, 0.30);
  --hm-radius:      4px;
}

.hm-body {
  background: var(--ag-green-900);
}
.hm-body main {
  background: var(--ag-parchment);
}

/* ============================================================
   1 · BUTTONS
   ============================================================ */
.hm-btn-gold,
.hm-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: var(--hm-radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .35s var(--ease-out), transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
/* gold sweep fill */
.hm-btn-gold {
  background: var(--ag-gold-500);
  color: var(--ag-green-900);
  box-shadow: 0 4px 20px rgba(201, 168, 92, 0.28);
}
.hm-btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ag-gold-400);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.hm-btn-gold:hover::before { transform: translateX(0); }
.hm-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 168, 92, 0.4);
}
.hm-btn-gold > * { position: relative; }
.hm-btn-gold { z-index: 0; }
.hm-btn-gold::before { z-index: -1; }

.hm-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}
.hm-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--ag-gold-500);
  color: #fff;
  transform: translateY(-2px);
}

.hm-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============================================================
   2 · JOURNEY RAIL  ·  fixed scroll progress route
   ============================================================ */
.hm-rail {
  position: fixed;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  height: 42vh;
  z-index: 500;
  pointer-events: none;
}
.hm-rail-line {
  position: relative;
  width: 2px;
  height: 100%;
  margin-left: 8px;
  background-image: linear-gradient(to bottom, rgba(201,168,92,0.35) 55%, transparent 55%);
  background-size: 2px 10px;
}
.hm-rail-fill {
  position: absolute;
  inset: 0;
  background: var(--ag-gold-500);
  transform-origin: top;
  transform: scaleY(0);
  box-shadow: 0 0 10px rgba(201, 168, 92, 0.5);
}
.hm-rail-plane {
  position: absolute;
  top: -9px;
  left: 0;
  font-size: 0.95rem;
  color: var(--ag-gold-500);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 6px rgba(201, 168, 92, 0.6));
  transition: transform .1s linear;
}
@media (max-width: 1200px) { .hm-rail { display: none; } }

/* ============================================================
   3 · HERO  ·  DEPARTURES
   ============================================================ */
.hm-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(255,255,255,0.018) 63px 64px),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,0.015) 119px 120px),
    radial-gradient(140% 120% at 50% 115%, rgba(201,168,92,0.12), transparent 55%),
    var(--ag-green-900);
}
/* soft vignette so plates melt into the edges */
.hm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(90% 90% at 50% 45%, transparent 55%, rgba(13, 33, 24, 0.55) 100%);
}

/* flight path */
.hm-flightpath {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.hm-route-stop {
  fill: var(--ag-gold-500);
  animation: ag-pulse 2.4s ease infinite;
}
.hm-route-stop-2 { animation-delay: 1.2s; }

/* floating photo plates */
.hm-float {
  position: absolute;
  z-index: 2;
  width: clamp(150px, 15vw, 230px);
  padding: 8px 8px 26px;
  background: var(--ag-warm-white);
  border-radius: 3px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transform:
    translate(var(--px, 0), calc(var(--py, 0px) + var(--sy, 0px)))
    rotate(var(--rot, 0deg));
  will-change: transform;
}
.hm-float img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92);
  border-radius: 2px;
}
.hm-float span {
  position: absolute;
  left: 10px;
  bottom: 7px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ag-ink-mid);
}
/* placement + idle drift, each on its own tempo */
.hm-float-1 { top: 16%;  left: 5%;   --rot: -5deg; animation: hm-drift-a 9s  ease-in-out infinite; }
.hm-float-2 { top: 12%;  right: 7%;  --rot: 4deg;  animation: hm-drift-b 11s ease-in-out infinite; }
.hm-float-3 { bottom: 24%; left: 9%; --rot: 3deg;  animation: hm-drift-b 10s ease-in-out infinite reverse; }
.hm-float-4 { bottom: 20%; right: 6%; --rot: -3deg; animation: hm-drift-a 12s ease-in-out infinite reverse; }
@keyframes hm-drift-a {
  0%, 100% { margin-top: 0; }
  50%      { margin-top: -16px; }
}
@keyframes hm-drift-b {
  0%, 100% { margin-top: 0; }
  50%      { margin-top: 14px; }
}

/* hero core copy */
.hm-hero-core {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 120px 20px 140px;
  max-width: 900px;
  will-change: transform, opacity;
}
.hm-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ag-gold-400);
  margin-bottom: 26px;
  animation: hm-fade .9s .2s var(--ease-out) both;
}
.hm-kicker-line {
  width: 34px;
  height: 1px;
  background: var(--ag-gold-500);
}

.hm-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #fff;
  margin: 0 0 28px;
}
.hm-hero-title em {
  font-style: italic;
  color: var(--ag-gold-400);
}
/* word masks that rise on load */
.hm-tw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hm-tw > span {
  display: inline-block;
  transform: translateY(110%);
  animation: hm-word-rise 0.9s var(--ease-out) forwards;
}
.hm-tw:nth-child(1) > span { animation-delay: 0.30s; }
.hm-tw:nth-child(2) > span { animation-delay: 0.42s; }
.hm-tw:nth-child(3) > span { animation-delay: 0.56s; }
@keyframes hm-word-rise {
  to { transform: translateY(0); }
}

.hm-hero-lede {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 36px;
  animation: hm-fade .9s .8s var(--ease-out) both;
}
.hm-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  animation: hm-fade .9s .95s var(--ease-out) both;
}
@keyframes hm-fade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* scroll cue */
.hm-scrollcue {
  position: absolute;
  bottom: 76px;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: hm-fade-center .9s 1.4s var(--ease-out) both;
}
@keyframes hm-fade-center {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.hm-scrollcue span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.hm-scrollcue-track {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.hm-scrollcue-dot {
  position: absolute;
  top: -8px;
  left: -1.5px;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--ag-gold-500);
  animation: hm-cue-drop 1.8s ease-in infinite;
}
@keyframes hm-cue-drop {
  0%   { top: -10px; opacity: 0; }
  25%  { opacity: 1; }
  85%  { top: 46px;  opacity: 0; }
  100% { top: 46px;  opacity: 0; }
}

/* ============================================================
   4 · LIVE NEWS WIRE  ·  hero bottom ticker
   ============================================================ */
.hm-wire {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: stretch;
  background: rgba(13, 33, 24, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 168, 92, 0.3);
  transition: background .25s;
}
.hm-wire:hover { background: rgba(13, 33, 24, 0.96); }

.hm-wire-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ag-terra-500);
  white-space: nowrap;
  flex-shrink: 0;
}
.hm-wire-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: ag-pulse 1.5s ease infinite;
}

.hm-wire-viewport {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}
.hm-wire-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.hm-wire-track.hm-wire-run {
  animation-name: hm-wire-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.hm-wire:hover .hm-wire-track.hm-wire-run { animation-play-state: paused; }
@keyframes hm-wire-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hm-wire-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  font-size: 0.85rem;
}
.hm-wire-loading { color: rgba(255, 255, 255, 0.45); padding-left: 20px; }
.hm-wire-sep {
  font-style: normal;
  color: var(--ag-gold-500);
  font-size: 0.7rem;
}
.hm-wire-when {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ag-gold-400);
  background: rgba(201, 168, 92, 0.12);
  border: 1px solid rgba(201, 168, 92, 0.25);
  padding: 2px 8px;
  border-radius: 2px;
}
.hm-wire-text {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.hm-wire-open {
  display: inline-flex;
  align-items: center;
  padding: 15px 22px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ag-gold-400);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s, background .2s;
}
.hm-wire:hover .hm-wire-open {
  color: var(--ag-green-900);
  background: var(--ag-gold-500);
}

/* ============================================================
   5 · COUNTRY MARQUEE
   ============================================================ */
.hm-marquee {
  overflow: hidden;
  background: var(--ag-parchment);
  border-bottom: 1px solid var(--hm-hair);
  padding: 20px 0;
}
.hm-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: hm-wire-scroll 60s linear infinite;
}
.hm-marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(26, 58, 43, 0.22);
}
.hm-marquee:hover .hm-marquee-track { animation-play-state: paused; }

/* ============================================================
   6 · MANIFESTO  ·  words ink in with scroll
   ============================================================ */
.hm-manifesto {
  padding: clamp(96px, 16vh, 170px) 0;
  background: var(--ag-parchment);
}
.hm-manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 20ch;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hm-mw {
  color: rgba(26, 58, 43, 0.14);
  transition: color .5s var(--ease-out);
}
.hm-mw.lit { color: var(--ag-green-900); }
/* the words locals actually get: gold when lit */
.hm-mw.lit:nth-child(4n) { color: var(--ag-gold-600); }

/* ============================================================
   7 · THE EXPEDITION  ·  sticky horizontal pan
   ============================================================ */
.hm-exp {
  position: relative;
  background:
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(255,255,255,0.018) 63px 64px),
    var(--ag-green-900);
}
.hm-exp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hm-exp-head {
  padding: 0 clamp(20px, 4vw, 48px);
  margin-bottom: 34px;
}
.hm-exp-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ag-gold-400);
  margin-bottom: 14px;
}
.hm-exp-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--ag-gold-500);
}
.hm-exp-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 20px;
}
.hm-exp-progress {
  width: min(320px, 40vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}
.hm-exp-progress-fill {
  height: 100%;
  background: var(--ag-gold-500);
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 8px rgba(201, 168, 92, 0.5);
}

.hm-exp-track {
  display: flex;
  gap: 22px;
  padding: 0 clamp(20px, 4vw, 48px);
  will-change: transform;
}
.hm-exp-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(320px, 34vw, 480px);
  height: min(56vh, 520px);
  border-radius: var(--hm-radius);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  background: var(--ag-green-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.hm-exp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.hm-exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform .8s var(--ease-out), filter .8s;
  z-index: 0;
}
.hm-exp-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.02);
}
.hm-exp-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(13,33,24,0.92) 0%, rgba(13,33,24,0.3) 50%, rgba(13,33,24,0.05) 80%);
}
/* gold registration tick on hover */
.hm-exp-card::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-top: 2px solid var(--ag-gold-500);
  border-left: 2px solid var(--ag-gold-500);
  opacity: 0;
  transform: translate(5px, 5px);
  transition: opacity .3s, transform .3s;
}
.hm-exp-card:hover::before {
  opacity: 1;
  transform: translate(0, 0);
}
.hm-exp-meta {
  position: relative;
  z-index: 2;
  padding: 26px;
}
.hm-exp-stop {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ag-gold-400);
  margin-bottom: 9px;
}
.hm-exp-meta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1;
}
.hm-exp-meta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 40ch;
}
.hm-exp-cta {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ag-gold-400);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  display: inline-block;
}
.hm-exp-card:hover .hm-exp-cta {
  opacity: 1;
  transform: translateY(0);
}

/* final "190+ more" card */
.hm-exp-card-final {
  background:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(201,168,92,0.04) 20px 21px),
    linear-gradient(160deg, var(--ag-green-800), var(--ag-green-900));
  align-items: center;
  justify-content: center;
  text-align: center;
  border-color: rgba(201, 168, 92, 0.3);
}
.hm-exp-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 30px;
}
.hm-exp-final-count,
.hm-exp-final-plus {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ag-gold-400);
  line-height: 0.9;
}
.hm-exp-final-count { font-size: clamp(4rem, 7vw, 6.5rem); }
.hm-exp-final-plus  { font-size: 2rem; margin-top: -14px; }
.hm-exp-final-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 4px 0 18px;
}

/* ============================================================
   8 · STATS  ·  count up
   ============================================================ */
.hm-stats {
  background: var(--ag-parchment);
  padding: clamp(72px, 12vh, 120px) 0;
  border-bottom: 1px solid var(--hm-hair);
}
.hm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--hm-hair);
}
.hm-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 30px;
  border-right: 1px solid var(--hm-hair);
}
.hm-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--ag-green-900);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hm-stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ag-gold-700);
}

/* ============================================================
   10 · FIELD KIT
   ============================================================ */
.hm-kit {
  background: var(--ag-parchment);
  padding: clamp(80px, 13vh, 130px) 0;
}
.hm-sec-head {
  margin-bottom: 44px;
  padding-top: 22px;
  border-top: 2px solid var(--ag-green-900);
}
.hm-sec-head-light { border-top-color: var(--ag-gold-500); }
.hm-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ag-gold-700);
  margin-bottom: 12px;
}
.hm-sec-label::before {
  content: '◆';
  color: var(--ag-gold-500);
  font-size: 0.62rem;
}
.hm-dispatch .hm-sec-label { color: var(--ag-gold-400); }
.hm-sec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ag-ink);
  margin: 0;
  line-height: 1.04;
}
.hm-dispatch .hm-sec-title { color: #fff; }

.hm-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hm-kit-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--ag-white);
  border: 1px solid var(--hm-hair);
  border-radius: var(--hm-radius);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out),
    box-shadow .35s var(--ease-out),
    border-color .35s;
}
.hm-kit-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--ag-gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.hm-kit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--hm-border-warm);
  transform: translateY(-4px) !important;
}
.hm-kit-card:hover::after { transform: scaleX(1); }
.hm-kit-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ag-green-50);
  border: 1px solid var(--ag-green-100);
  border-radius: var(--hm-radius);
  margin-bottom: 6px;
  transition: transform .3s var(--ease-out);
}
.hm-kit-card:hover .hm-kit-icon { transform: rotate(-6deg) scale(1.08); }
.hm-kit-card strong {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--ag-ink);
}
.hm-kit-card > span:last-child {
  font-size: 0.81rem;
  color: var(--ag-ink-light);
  line-height: 1.6;
}

/* ============================================================
   11 · DISPATCHES  ·  dark band
   ============================================================ */
.hm-dispatch {
  background:
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(255,255,255,0.015) 47px 48px),
    var(--ag-green-900);
  padding: clamp(80px, 13vh, 130px) 0;
}
.hm-dispatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hm-dispatch-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hm-radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out),
    background .35s,
    border-color .35s;
}
.hm-dispatch-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 92, 0.4);
  transform: translateY(-6px) !important;
}
.hm-dispatch-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(201, 168, 92, 0.25);
  line-height: 1;
  transition: color .35s;
}
.hm-dispatch-card:hover .hm-dispatch-num { color: var(--ag-gold-500); }
.hm-dispatch-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.hm-dispatch-card p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}
.hm-dispatch-cta {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ag-gold-400);
  transition: letter-spacing .3s var(--ease-out);
}
.hm-dispatch-card:hover .hm-dispatch-cta { letter-spacing: 0.04em; }

/* ============================================================
   12 · CLOSING  ·  compass spin
   ============================================================ */
.hm-closing {
  position: relative;
  background: var(--ag-parchment);
  padding: clamp(100px, 16vh, 180px) 0;
  overflow: hidden;
  text-align: center;
}
.hm-compass {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  margin: calc(min(560px, 90vw) / -2) 0 0 calc(min(560px, 90vw) / -2);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}
.hm-closing-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.hm-closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ag-ink);
  margin: 0 0 18px;
  line-height: 1.05;
}
.hm-closing p {
  font-size: 1rem;
  color: var(--ag-ink-mid);
  line-height: 1.8;
  margin: 0 0 34px;
}
.hm-closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hm-closing .hm-btn-ghost {
  background: transparent;
  color: var(--ag-green-800);
  border-color: var(--ag-green-800);
}
.hm-closing .hm-btn-ghost:hover {
  background: var(--ag-green-800);
  color: #fff;
}

/* ============================================================
   13 · REVEAL + SPLIT-WORD SYSTEMS
   Own system, independent of global.css .reveal rules.
   ============================================================ */
.hm-body .rv {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .8s var(--ease-out),
    transform .8s var(--ease-out);
}
.hm-body .rv.in {
  opacity: 1;
  transform: translateY(0);
}
/* keep kit/dispatch hover transforms working after reveal:
   the !important on their hover states wins the race */

/* split-word title masks */
.hm-sw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.hm-sw > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform .8s var(--ease-out);
}
[data-split].in .hm-sw > span { transform: translateY(0); }

/* ============================================================
   14 · RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hm-kit-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-stat { padding: 20px 26px; }
  .hm-float { width: clamp(120px, 16vw, 170px); }
}

@media (max-width: 900px) {
  .hm-hero-core { padding: 108px 20px 128px; }
  .hm-flightpath { opacity: 0.55; }
  /* expedition falls back to native swipe scroll */
  .hm-exp { height: auto !important; padding: 72px 0; }
  .hm-exp-sticky { position: static; height: auto; overflow: visible; }
  .hm-exp-track {
    overflow-x: auto;
    transform: none !important;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hm-exp-track::-webkit-scrollbar { display: none; }
  .hm-exp-card {
    width: min(78vw, 380px);
    height: 440px;
    scroll-snap-align: start;
  }
  .hm-exp-progress { display: none; }
  .hm-exp-cta { opacity: 1; transform: none; }

  .hm-dispatch-grid { grid-template-columns: 1fr; }
  .hm-float { display: none; }
  .hm-wire-open { display: none; }
  .hm-wire-item { font-size: 0.78rem; }
}

@media (max-width: 640px) {
  .hm-kit-grid { grid-template-columns: 1fr; }
  .hm-stats-grid { grid-template-columns: 1fr 1fr; }
  .hm-stat { padding: 16px 18px; }
  .hm-stat-num { font-size: 2.2rem; }
  .hm-hero-core { padding: 96px 18px 132px; }
  .hm-hero-kicker { font-size: 0.58rem; gap: 10px; margin-bottom: 20px; }
  .hm-kicker-line { width: 22px; }
  .hm-hero-title { font-size: clamp(2.6rem, 12vw, 4.2rem); margin-bottom: 20px; }
  .hm-hero-lede { font-size: 0.88rem; line-height: 1.7; margin-bottom: 28px; }
  .hm-hero-actions { gap: 10px; }
  .hm-hero-actions .hm-btn-gold,
  .hm-hero-actions .hm-btn-ghost,
  .hm-closing-actions .hm-btn-gold,
  .hm-closing-actions .hm-btn-ghost { width: 100%; justify-content: center; }
  .hm-scrollcue { display: none; }
  .hm-wire-badge { padding: 11px 12px; font-size: 0.58rem; gap: 6px; }
  .hm-wire-item { font-size: 0.72rem; gap: 8px; }
  .hm-wire-when { font-size: 0.56rem; padding: 1px 6px; }
  .hm-manifesto-text { text-align: left; }
}

@media (max-width: 420px) {
  .hm-hero-core { padding: 88px 16px 122px; }
  .hm-hero-title { font-size: clamp(2.3rem, 13vw, 3.4rem); }
  .hm-hero-lede { max-width: 34ch; }
  .hm-flightpath { opacity: 0.35; }
  .hm-wire-badge span:not(.hm-wire-dot) { font-size: 0.56rem; }
}

/* ============================================================
   15 · REDUCED MOTION  ·  everything lands instantly
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hm-float,
  .hm-marquee-track,
  .hm-wire-track.hm-wire-run,
  .hm-scrollcue-dot,
  .hm-route-stop,
  .hm-wire-dot { animation: none !important; }
  .hm-tw > span { animation: none; transform: none; }
  .hm-hero-kicker, .hm-hero-lede, .hm-hero-actions, .hm-scrollcue { animation: none; opacity: 1; }
  .hm-body .rv { opacity: 1; transform: none; transition: none; }
  .hm-sw > span { transform: none; transition: none; }
  .hm-mw { color: var(--ag-green-900); transition: none; }
  .hm-compass, .hm-hero-core, .hm-flightpath { transform: none !important; }
  .hm-wire-track { white-space: normal; }
}