:root{
  --navy:#13294b;
  --navy-deep:#0a1830;
  --orange:#f2932e;
  --cream:#f7f5f0;
  --paper:#eee9df;
  --ink:#1b2230;
  --rule: rgba(19,41,75,.14);
  --sans: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --display: 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;
  --spine-w: 64px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ background:var(--cream); color:var(--ink); font-family:var(--sans); overflow-x:hidden; }
a{ color:inherit; text-decoration:none; }
ul, ol{ list-style:none; }
h1,h2,h3{ font-family:var(--display); font-weight:400; }

/* ear-tag notch — shared CTA motif */
.tag-cta{ clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%); }

@media (min-width:901px){
  body{ padding-left:var(--spine-w); }
}

.grain{
  position:fixed; inset:0; pointer-events:none; z-index:9000; opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* SPINE — fixed route nav, replaces conventional top nav */
.spine{
  position:fixed; top:0; left:0; bottom:0; width:var(--spine-w); z-index:300;
  background:var(--navy-deep); display:flex; flex-direction:column; align-items:center;
  justify-content:space-between; padding:22px 0 26px;
}
.spine-logo{ display:flex; }
.spine-logo svg{ width:24px; height:16px; fill:none; stroke:var(--orange); stroke-width:7; stroke-linecap:round; stroke-linejoin:round; }
.spine-route{ position:relative; flex:1; display:flex; align-items:center; padding:18px 0; }
.spine-line{ position:absolute; left:50%; top:0; bottom:0; width:2px; transform:translateX(-50%); background:rgba(247,245,240,.16); border-radius:2px; overflow:hidden; }
.spine-fill{ position:absolute; left:0; top:0; width:100%; height:0%; background:var(--orange); display:block; transition:height .1s linear; }
.spine-stops{ position:relative; display:flex; flex-direction:column; justify-content:space-between; height:100%; gap:22px; }
.spine-stops li a, .spine-end{ position:relative; display:flex; align-items:center; }
.spine-dot{
  width:9px; height:9px; border-radius:50%; background:var(--navy-deep);
  border:2px solid rgba(247,245,240,.45); transition:background .3s, border-color .3s, transform .3s;
  display:block;
}
.spine-stops li a.active .spine-dot, .spine-end.active .spine-dot{
  background:var(--orange); border-color:var(--orange); transform:scale(1.25);
}
.spine-label{
  position:absolute; left:22px; top:50%; transform:translateY(-50%) translateX(-6px);
  white-space:nowrap; font-size:.72rem; letter-spacing:.06em; color:var(--cream);
  background:var(--navy-deep); padding:5px 10px; border-radius:3px;
  opacity:0; pointer-events:none; transition:opacity .25s, transform .25s;
}
.spine-stops li a:hover .spine-label, .spine-end:hover .spine-label{ opacity:1; transform:translateY(-50%) translateX(0); }
.spine-end{ flex-direction:column; gap:8px; }
.spine-end .spine-label{ position:static; opacity:1; background:none; padding:0; color:rgba(247,245,240,.55); font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; transform:none; writing-mode:vertical-rl; }
.spine-end.active .spine-label{ color:var(--orange); }

/* HERO */
.brand-mark{ display:flex; align-items:center; gap:10px; margin-bottom:56px; }
.brand-mark svg{ width:26px; height:18px; fill:none; stroke:var(--orange); stroke-width:7; stroke-linecap:round; stroke-linejoin:round; }
.brand-mark span{ font-weight:700; font-size:.95rem; letter-spacing:.03em; color:var(--navy); line-height:1; }
.brand-mark small{ display:block; font-weight:400; font-size:.55rem; letter-spacing:.18em; opacity:.6; margin-top:2px; }

.hero{
  min-height:100vh;
  padding:64px 5vw 0;
  display:flex; flex-direction:column; justify-content:space-between;
  background:
    radial-gradient(circle at 85% 20%, rgba(242,147,46,.16), transparent 45%),
    linear-gradient(180deg,var(--cream),var(--paper));
}
.hero-grid{ display:grid; grid-template-columns:1.15fr .95fr; align-items:end; gap:2vw; }
.hero-art{ position:relative; overflow:visible; align-self:end; }
.hero-art img{ width:100%; max-width:640px; display:block; margin-left:auto; mix-blend-mode:multiply; transform:translateX(7%); }
.hero-eyebrow{ font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); margin-bottom:26px; font-weight:600; }
.hero-title{ font-size:clamp(3rem,8vw,6.6rem); line-height:.98; color:var(--navy); max-width:14ch; }
.hero-title em{ font-style:italic; color:var(--orange); }
.hero-sub{ margin-top:30px; font-size:1.08rem; max-width:46ch; opacity:.75; line-height:1.65; }
.hero-actions{ display:flex; gap:28px; align-items:center; margin-top:42px; flex-wrap:wrap; }
.hero-cta{ display:inline-flex; gap:10px; align-items:center; background:var(--navy); color:var(--cream); padding:15px 26px 15px 30px; font-size:.85rem; letter-spacing:.03em; transition:background .3s, gap .3s; }
.hero-cta:hover{ background:var(--orange); gap:16px; }
.hero-cta-ghost{ font-size:.85rem; border-bottom:1px solid var(--navy); padding-bottom:6px; opacity:.75; transition:opacity .25s; }
.hero-cta-ghost:hover{ opacity:1; }

.hero-stats{
  display:grid; grid-template-columns:1.5fr 1fr;
  border-top:1px solid var(--rule);
  margin-top:70px;
}
.stat-feature{ padding:28px 24px 40px 0; border-right:1px solid var(--rule); }
.stat-row{ display:grid; grid-template-columns:1fr 1fr; }
.stat-row > div{ padding:28px 0 40px 24px; border-left:1px solid var(--rule); }
.stat-row > div:first-child{ border-left:none; padding-left:24px; }
.hero-stats strong{ display:block; font-family:var(--display); font-size:clamp(2rem,4vw,3rem); color:var(--navy); }
.stat-feature strong{ font-size:clamp(2.4rem,5vw,3.8rem); }
.hero-stats span{ font-size:.85rem; opacity:.65; }

/* KINETIC TYPE */
.kinetic{ position:relative; display:inline-block; letter-spacing:0; transition:letter-spacing 1.1s cubic-bezier(.4,0,.2,1); }
.kinetic::after{ content:''; position:absolute; left:0; bottom:-6px; height:3px; width:0; background:var(--orange); transition:width 1.1s cubic-bezier(.4,0,.2,1); }
.kinetic.in-view{ letter-spacing:.01em; }
.kinetic.in-view::after{ width:100%; }

/* ICON SPRITE */
.icon-sprite{ position:absolute; width:0; height:0; overflow:hidden; }
.icon-sprite symbol{ fill:none; stroke:currentColor; stroke-linecap:round; stroke-linejoin:round; }
svg:has(> use){ stroke-width:2.6; }

/* JOURNEY — full-bleed stacking sticky panels (each pins, next slides over it) */
.journey-intro{ background:var(--paper); color:var(--ink); padding:110px 6vw 70px; }
.journey-intro h2{ font-size:clamp(2rem,4.6vw,3rem); margin-top:14px; max-width:18ch; }

.journey-stack{ position:relative; }
.journey-panel{
  position:sticky; top:0; z-index:var(--i);
  height:100vh; min-height:560px; display:flex; flex-direction:column; justify-content:space-between;
  padding:48px 6vw 56px; box-shadow:0 -24px 50px rgba(0,0,0,.18);
}
.journey-panel[data-tone="deep"]{ background:var(--navy-deep); color:var(--cream); }
.journey-panel[data-tone="navy"]{ background:var(--navy); color:var(--cream); }
.journey-panel[data-tone="orange"]{ background:var(--orange); color:var(--navy-deep); }
.journey-panel[data-tone="cream"]{ background:var(--cream); color:var(--navy-deep); }

.journey-panel-row{ display:flex; align-items:baseline; justify-content:space-between; gap:24px; }
.journey-tag{
  font-family:var(--mono); font-size:.85rem; letter-spacing:.06em; text-transform:uppercase;
  border:1px solid currentColor; opacity:.85; padding:7px 14px; border-radius:100px;
}
.journey-count{ font-family:var(--mono); font-size:.85rem; opacity:.65; }

.journey-panel-main{ display:flex; align-items:center; justify-content:space-between; gap:5vw; flex:1; min-height:0; }
.journey-panel-main h3{
  font-size:clamp(2.4rem,6vw,5rem); line-height:1.02; max-width:11ch; flex:1;
}
.journey-panel-media{
  flex:0 0 clamp(280px,38vw,520px); aspect-ratio:4/3; border-radius:14px; overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}
.journey-panel-media img{ width:100%; height:100%; object-fit:cover; display:block; }

.journey-panel-foot{ align-items:flex-end; }
.journey-panel-foot p{ max-width:46ch; opacity:.78; line-height:1.6; font-size:1.05rem; margin:0; }
.journey-stat{
  flex:0 0 auto; font-family:var(--mono); font-size:.85rem; white-space:nowrap;
  border:1px solid currentColor; opacity:.9; border-radius:100px; padding:9px 16px;
}

/* STRIP */
.strip{ background:var(--navy); color:var(--cream); overflow:hidden; padding:16px 0; }
.strip-track{ display:flex; gap:22px; white-space:nowrap; font-size:.76rem; letter-spacing:.14em; animation:stripMove 24s linear infinite; }
@keyframes stripMove{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* OVERVIEW */
.overview{ padding:120px 5vw 90px; display:grid; grid-template-columns:1fr 1fr; gap:6vw; align-items:start; }
.overview-head h2{ font-size:clamp(2rem,4.6vw,3rem); color:var(--navy); line-height:1.12; }
.overview-text{ font-size:1.08rem; line-height:1.7; opacity:.78; margin-top:6px; }

/* OPERATIONS */
.operations{ padding:60px 5vw 120px; border-top:1px solid var(--rule); }
.op-head{ margin-bottom:54px; max-width:640px; }
.op-kicker{ font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--orange); font-weight:600; }
.op-kicker.light{ color:var(--orange); }
.op-head h2{ font-size:clamp(2rem,4.5vw,2.8rem); color:var(--navy); margin-top:14px; }
.op-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:28px; }
.op-feature{
  grid-row:1/3; background:var(--navy); color:var(--cream); padding:36px 32px; border-radius:4px;
  position:relative; min-height:380px; display:flex; flex-direction:column; justify-content:flex-end;
  overflow:hidden;
}
.op-feature-canvas{
  position:absolute; top:0; left:0; width:100%; height:62%; display:block;
}
.op-feature-photo{
  position:absolute; top:0; left:0; width:100%; height:62%; object-fit:cover; object-position:center 70%;
  display:none;
}
.op-feature-fallback.is-shown{ display:block; }
.op-feature::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(19,41,75,.05) 0%, var(--navy) 72%);
}
.op-num{ position:relative; font-size:.78rem; opacity:.6; margin-bottom:12px; }
.op-feature h3{ position:relative; font-size:1.7rem; margin-bottom:10px; }
.op-feature p{ position:relative; opacity:.8; line-height:1.6; max-width:34ch; }
.op-card{ border:1px solid var(--rule); padding:30px 26px; border-radius:4px; }
.op-card h3{ font-size:1.3rem; color:var(--navy); margin:10px 0 8px; }
.op-card p{ opacity:.7; line-height:1.6; }

/* BAND */
.band{
  position:relative; background:var(--navy-deep); color:var(--cream); padding:150px 5vw; overflow:hidden; display:flex; align-items:center;
  clip-path: polygon(0 36px, 100% 0, 100% calc(100% - 36px), 0 100%);
  margin:-36px 0;
}
.band-art{ position:absolute; inset:0; opacity:.35; }
.route{ width:100%; height:100%; fill:none; stroke:var(--orange); stroke-width:2.5; }
.route circle{ fill:var(--orange); stroke:none; }
.band-copy{ position:relative; max-width:600px; }
.band-copy h2{ font-size:clamp(2.2rem,5vw,3.2rem); margin-bottom:18px; }
.band-copy p{ opacity:.82; line-height:1.65; max-width:42ch; margin-bottom:32px; }
.band-copy a{
  display:inline-flex; gap:10px; border:1px solid var(--cream); padding:13px 24px 13px 30px; font-size:.85rem;
  transition:background .3s,color .3s; clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
}
.band-copy a:hover{ background:var(--orange); border-color:var(--orange); color:var(--navy-deep); }

/* STRENGTHS */
.strengths{ padding:120px 5vw; }
.section-label{ font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--orange); font-weight:600; display:block; margin-bottom:50px; }
.strengths-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; grid-template-rows:auto auto; gap:24px; }
.strength-feature{ grid-row:1/3; background:var(--navy); color:var(--cream); padding:36px 32px; border-radius:4px; display:flex; flex-direction:column; justify-content:flex-end; min-height:380px; }
.strength-feature h3{ font-size:1.8rem; margin:12px 0 12px; }
.strength-feature p{ opacity:.82; line-height:1.65; max-width:36ch; }
.strength-feature .strength-num{ opacity:.6; }
.strength-card{ border:1px solid var(--rule); border-radius:4px; padding:30px 26px; }
.strength-card h3{ font-size:1.25rem; color:var(--navy); margin:10px 0 8px; }
.strength-card p{ opacity:.7; line-height:1.6; }
.strength-num{ font-size:.85rem; opacity:.45; display:block; }

/* CONTRACTS — ledger-style manifest */
.contracts{ background:var(--paper); padding:120px 5vw; }
.contracts-head{ display:flex; align-items:center; gap:24px; margin-bottom:50px; }
.seal{ width:52px; height:52px; flex-shrink:0; fill:none; stroke:var(--navy); stroke-width:2; }
.seal path{ stroke:var(--orange); }
.contracts-head h2{ font-size:clamp(2rem,4.5vw,2.8rem); color:var(--navy); }
.contracts-head p{ opacity:.65; margin-top:8px; }
.manifest{ border-top:1px solid var(--rule); }
.manifest-row{
  display:grid; grid-template-columns:60px 1fr auto; align-items:center; gap:28px;
  padding:28px 0; border-bottom:1px solid var(--rule);
}
.manifest-icon{ width:34px; height:34px; color:var(--navy); fill:none; stroke:currentColor; stroke-width:2.4; }
.manifest-name h3{ font-size:1.3rem; color:var(--navy); margin-bottom:6px; }
.manifest-name p{ opacity:.65; font-size:.92rem; line-height:1.5; max-width:60ch; }
.manifest-count{
  font-family:var(--mono); font-size:1.8rem; color:var(--orange); text-align:right;
  display:flex; flex-direction:column; align-items:flex-end; line-height:1;
}
.manifest-count small{ font-family:var(--sans); font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--ink); opacity:.5; margin-top:4px; }

/* INVEST */
.invest{
  background:var(--navy); color:var(--cream); padding:150px 5vw; display:grid; grid-template-columns:1.2fr 1fr; gap:6vw;
  clip-path: polygon(0 36px, 100% 0, 100% calc(100% - 36px), 0 100%);
  margin:-36px 0;
}
.op-kicker.light{ display:block; margin-bottom:18px; }
.invest-copy h2{ font-size:clamp(2.2rem,5.5vw,3.4rem); margin-bottom:36px; }
.invest-list{ display:flex; flex-direction:column; gap:20px; }
.invest-list li{ padding-left:24px; border-left:2px solid var(--orange); opacity:.85; line-height:1.6; max-width:48ch; }
.invest-quote{ font-family:var(--display); font-style:italic; font-size:clamp(1.4rem,3vw,2rem); line-height:1.5; align-self:center; opacity:.92; border-left:1px solid rgba(247,245,240,.25); padding-left:36px; }

/* FOOTER */
.contact{ padding:140px 5vw 50px; }
.contact-title{ font-size:clamp(2.4rem,7vw,4.4rem); color:var(--navy); margin-bottom:70px; }
.contact-title em{ font-style:italic; color:var(--orange); }
.contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; padding-bottom:60px; border-bottom:1px solid var(--rule); }
.contact-label{ display:block; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; opacity:.5; margin-bottom:12px; }
.contact-grid a{ font-size:1.15rem; transition:color .25s; }
.contact-grid a:hover{ color:var(--orange); }
.contact-grid p{ opacity:.75; line-height:1.6; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:30px; font-size:.85rem; opacity:.6; flex-wrap:wrap; gap:12px; }
.footer-mark{ font-weight:700; color:var(--navy); }
.footer-mark small{ display:block; font-weight:400; font-size:.6rem; letter-spacing:.16em; opacity:.6; }

/* REVEAL */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s ease, transform .8s ease; }
.reveal-in{ opacity:1; transform:translateY(0); }

@media (max-width:900px){
  .spine{
    top:0; left:0; right:0; bottom:auto; width:auto; height:50px;
    flex-direction:row; padding:0 16px; z-index:300;
  }
  .spine-route{ flex-direction:row; padding:0; }
  .spine-line{ left:0; right:0; top:50%; bottom:auto; height:2px; width:auto; transform:translateY(-50%); }
  .spine-fill{ height:100%; width:0%; }
  .spine-stops{ flex-direction:row; width:100%; gap:0; }
  .spine-label{ display:none; }
  .spine-end{ flex-direction:row; gap:6px; }
  .spine-end .spine-label{ writing-mode:horizontal-tb; display:inline; font-size:.6rem; }
  .hero{ padding-top:74px; }
  .band, .invest{ clip-path:none; margin:0; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; margin-bottom:20px; }
  .hero-art img{ max-width:340px; margin:0 auto; transform:none; }
  .overview{ grid-template-columns:1fr; }
  .op-grid{ grid-template-columns:1fr; }
  .op-feature{ grid-row:auto; }
  .hero-stats{ grid-template-columns:1fr; }
  .stat-feature{ border-right:none; border-bottom:1px solid var(--rule); padding-bottom:24px; }
  .stat-row{ grid-template-columns:1fr 1fr; }
  .journey-panel{
    position:static; height:auto; min-height:0; gap:28px; box-shadow:none;
    border-bottom:1px solid rgba(247,245,240,.12);
  }
  .journey-panel-main{ flex-direction:column; align-items:flex-start; gap:24px; }
  .journey-panel-media{ flex-basis:auto; width:100%; }
  .journey-panel-foot{ flex-direction:column; align-items:flex-start; gap:16px; }
  .strengths-grid{ grid-template-columns:1fr; }
  .strength-feature{ grid-row:auto; }
  .invest{ grid-template-columns:1fr; }
  .invest-quote{ border-left:none; padding-left:0; }
  .contact-grid{ grid-template-columns:1fr; }
  .manifest-row{ grid-template-columns:40px 1fr; }
  .manifest-count{ grid-column:1/3; flex-direction:row; align-items:baseline; gap:8px; text-align:left; margin-top:8px; }
}
