


@font-face{font-family:"Fraunces";font-style:normal;font-weight:340 640;font-display:swap;src:url("/assets/fonts/fraunces-roman-latin.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:"Fraunces";font-style:normal;font-weight:340 640;font-display:swap;src:url("/assets/fonts/fraunces-roman-latinext.woff2") format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:"Fraunces";font-style:italic;font-weight:340 640;font-display:swap;src:url("/assets/fonts/fraunces-italic-latin.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:"Fraunces";font-style:italic;font-weight:340 640;font-display:swap;src:url("/assets/fonts/fraunces-italic-latinext.woff2") format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}


:root {
  --ink:        #0b0e17;
  --ink-2:      #10141f;
  --ink-3:      #171c2a;
  --ink-4:      #212838;
  --ink-5:      #2e3650;
  --line:       rgba(244, 237, 224, 0.14);
  --line-soft:  rgba(244, 237, 224, 0.08);

  --cream:      #f4edda;
  --cream-dim:  #bcb6a4;
  --cream-mute: #8d8978;

  --paper:      #f3ead6;
  --paper-2:    #e9dcc0;
  --paper-edge: #d8c7a3;
  --on-paper:   #211f1c;
  --on-paper-2: #4f4a40;

  --ember:      #ec6b39;
  --ember-lit:  #f78a52;
  --brass:      #d8aa49;
  --brass-deep: #b78a2f;
  --sky:        #8bb7c1;
  --rose:       #dd9180;
  --pine:       #6f9b7d;

  --shadow-1: 0 1px 2px rgba(0,0,0,.4);
  --shadow-2: 0 18px 40px -20px rgba(0,0,0,.7);
  --shadow-3: 0 40px 90px -40px rgba(0,0,0,.85);

  --serif: "Fraunces", "Hoefler Text", "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, "SFMono-Regular", "JetBrains Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  --shell: 1280px;
  --shell-wide: 1500px;
  --gut: clamp(1.15rem, 4.4vw, 3.5rem);

  --r-s: 6px;
  --r-m: 14px;
  --r-l: 22px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}


*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.66;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img, picture, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { padding: 0; list-style: none; }
strong, b { font-weight: 600; }

::selection { background: var(--ember); color: #fff; }

:focus-visible {
  outline: 3px solid var(--ember-lit);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute;
  left: 1rem; top: -100%;
  z-index: 999;
  background: var(--ember);
  color: #fff;
  padding: .7rem 1.15rem;
  border-radius: 0 0 var(--r-s) var(--r-s);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; }


h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
  text-wrap: balance;
}

.display {
  font-size: clamp(2.85rem, 8.2vw, 6.6rem);
  font-weight: 480;
  line-height: 0.98;
  letter-spacing: -0.022em;
}
.t-xl { font-size: clamp(2.1rem, 4.9vw, 3.6rem); }
.t-l  { font-size: clamp(1.7rem, 3.3vw, 2.55rem); }
.t-m  { font-size: clamp(1.35rem, 2.1vw, 1.72rem); }

em, .italic { font-style: italic; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 480; }

p { text-wrap: pretty; }

.lede {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.58;
  color: var(--cream);
}


.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.kicker::before {
  content: "";
  width: 1.9rem; height: 1px;
  background: var(--brass);
  flex: none;
}
.kicker.center::after {
  content: "";
  width: 1.9rem; height: 1px;
  background: var(--brass);
  flex: none;
}

.coords {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .07em;
  color: var(--sky);
}


.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.shell-wide { max-width: var(--shell-wide); }
.shell-narrow { max-width: 760px; }

.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section-tight { padding-block: clamp(2.6rem, 5vw, 4.5rem); }

.section-head { max-width: 56ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker { margin-bottom: 1.2rem; }
.section-head p { margin-top: 1rem; color: var(--cream-dim); }

.tone-ink-2 { background: var(--ink-2); }
.tone-ink-3 { background: var(--ink-3); }
.tone-paper {
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(255,255,255,.5), transparent 60%),
    var(--paper);
  color: var(--on-paper);
}
.tone-paper .kicker { color: var(--brass-deep); }
.tone-paper .kicker::before,
.tone-paper .kicker.center::after { background: var(--brass-deep); }
.tone-paper .coords { color: var(--on-paper-2); }
.tone-paper .section-head p { color: var(--on-paper-2); }

.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

.stack > * + * { margin-top: 1.1rem; }
.divider { height: 1px; background: var(--line); border: 0; }


.horizon {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 2.4rem 0;
}
.horizon::before, .horizon::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 14%, var(--line) 86%, transparent);
  flex: 1;
}
.horizon i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 5px rgba(236,107,57,.16);
  flex: none;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header[data-stuck="true"] {
  background: rgba(11, 14, 23, 0.86);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-right: auto;
}
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand b { color: var(--ember); font-weight: 600; }
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: .54rem;
  letter-spacing: .34em;
  color: var(--cream-mute);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-links a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  color: var(--cream-dim);
  padding: .55rem .8rem;
  border-radius: var(--r-s);
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--cream); background: var(--ink-3); }
.nav-links a[aria-current="page"] { color: var(--ember-lit); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  color: var(--cream);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .x { display: none; }
body.nav-open .nav-toggle .x { display: block; }
body.nav-open .nav-toggle .bars { display: none; }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 5rem 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    background: var(--ink);
    padding: 1.6rem var(--gut);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .26s var(--ease), transform .26s var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  body.nav-open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--serif);
    padding: .85rem .4rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav-links .btn { margin-top: 1.1rem; justify-content: center; }
}


.lang-switch { display: inline-flex; align-items: center; gap: .34rem; }
.lang-switch .lang-ico { width: 1.05em; height: 1.05em; opacity: .75; flex: none; }
@media (min-width: 1041px) {
  .lang-switch { border: 1px solid var(--line); }
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  text-decoration: none;
  padding: .92rem 1.5rem;
  border-radius: 100px;
  min-height: 48px;
  transition: transform .16s var(--ease), background .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary {
  background: var(--ember);
  color: var(--ink);
  box-shadow: 0 14px 30px -14px rgba(236,107,57,.8);
}
.btn-primary:hover { background: var(--ember-lit); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--brass); background: rgba(216,170,73,.08); transform: translateY(-2px); }
.tone-paper .btn-ghost { border-color: var(--paper-edge); color: var(--on-paper); }
.tone-paper .btn-ghost:hover { border-color: var(--brass-deep); background: rgba(183,138,47,.12); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ember-lit);
}
.arrow-link svg { width: 1.05em; height: 1.05em; transition: transform .2s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }
.tone-paper .arrow-link { color: var(--brass-deep); }


.hero {
  position: relative;
  min-height: min(94svh, 920px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,14,23,.55) 0%, rgba(11,14,23,.15) 32%, rgba(11,14,23,.78) 78%, var(--ink) 100%),
    linear-gradient(80deg, rgba(11,14,23,.78), transparent 62%);
}
.hero-inner { padding-block: clamp(3rem, 9vh, 8rem); width: 100%; }
.hero h1 { margin: 1.3rem 0 0; max-width: 18ch; }
.hero .lede { margin-top: 1.5rem; max-width: 46ch; color: var(--cream); }
.hero-actions {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}
.hero-meta {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.6rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}
.hero-meta .stat { min-width: 0; }

.scroll-cue {
  position: absolute;
  right: var(--gut); bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  z-index: 1;
}
.scroll-cue i {
  width: 1px; height: 42px;
  background: linear-gradient(var(--brass), transparent);
  display: block;
  animation: cue 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue { 0%,100%{ transform: scaleY(.35); opacity:.4 } 45%{ transform: scaleY(1); opacity:1 } }


.pagehero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(7rem, 16vh, 11rem) clamp(2.6rem, 6vw, 4.6rem);
}
.pagehero .hero-media, .pagehero .hero-scrim { position: absolute; inset: 0; }
.pagehero .hero-media { z-index: -2; }
.pagehero .hero-media img { width:100%; height:100%; object-fit: cover; }
.pagehero .hero-scrim { z-index: -1; }
.pagehero h1 { margin-top: 1rem; }
.pagehero .lede { margin-top: 1.2rem; max-width: 54ch; }


.stat .n {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 480;
  line-height: 1;
  color: var(--cream);
  display: block;
}
.tone-paper .stat .n { color: var(--on-paper); }
.stat .l {
  display: block;
  margin-top: .5rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.tone-paper .stat .l { color: var(--on-paper-2); }
.stat .n b { color: var(--ember); font-weight: 480; }


.field-note {
  position: relative;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  background: var(--ink-2);
  border-radius: 0 var(--r-m) var(--r-m) 0;
  padding: 1.4rem 1.6rem;
  font-size: .98rem;
}
.field-note .tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: .5rem;
}
.tone-paper .field-note {
  background: rgba(255,255,255,.55);
  border-color: var(--paper-edge);
  border-left-color: var(--brass-deep);
}
.tone-paper .field-note .tag { color: var(--brass-deep); }


.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--ink-5);
  box-shadow: var(--shadow-3);
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-4);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,14,23,.72));
}
.card-index {
  position: absolute;
  top: .9rem; left: .9rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--cream);
  background: rgba(11,14,23,.62);
  border: 1px solid var(--line);
  padding: .3rem .6rem;
  border-radius: 100px;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.card-tag {
  position: absolute;
  top: .9rem; right: .9rem;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .6rem;
  border-radius: 100px;
  z-index: 1;
  font-weight: 600;
}
.card-tag.ready { background: var(--ember); color: var(--ink); }
.card-tag.soon { background: rgba(11,14,23,.7); color: var(--brass); border: 1px solid var(--brass); }
.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.card-body .where {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
}
.card-body h3 { font-size: 1.5rem; }
.card:hover .card-body h3 { color: var(--ember-lit); }
.card-body p { color: var(--cream-dim); font-size: .96rem; }
.card-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .06em;
  color: var(--cream-mute);
}
.card-foot .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--cream-mute); }


.feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
}
.feature.flip { grid-template-columns: .95fr 1.05fr; }
.feature.flip .feature-media { order: 2; }
.feature-media { position: relative; min-height: 340px; overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feature-body {
  padding: clamp(1.8rem, 3.6vw, 3.4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.feature-body h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.feature-body p { color: var(--cream-dim); }
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .3rem;
}
.chip {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  padding: .4rem .75rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--cream-dim);
}
.tone-paper .chip { border-color: var(--paper-edge); color: var(--on-paper-2); }
@media (max-width: 800px) {
  .feature, .feature.flip { grid-template-columns: 1fr; }
  .feature.flip .feature-media { order: 0; }
  .feature-media { min-height: 260px; aspect-ratio: 16/10; }
}


.story { position: relative; }
.story-rail {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .5rem var(--gut) 1.5rem;
  margin-inline: calc(-1 * var(--gut));
  scrollbar-width: none;
}
.story-rail::-webkit-scrollbar { display: none; }
.chapter {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  flex: 0 0 min(86vw, 1040px);
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  min-height: 520px;
}
.chapter-media { position: relative; overflow: hidden; min-height: 280px; }
.chapter-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chapter-media .badge {
  position: absolute;
  left: 1.1rem; top: 1.1rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  background: rgba(11,14,23,.66);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: .35rem .7rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.chapter-body {
  padding: clamp(1.5rem, 2.6vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.chapter-no {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: .8;
  color: var(--cream-mute);
  font-weight: 480;
}
.chapter-body h3 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); }
.chapter-body .where {
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
}
.chapter-body p { color: var(--cream-dim); font-size: .98rem; }
.chapter-facts {
  margin-top: auto;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.chapter-facts div { font-family: var(--mono); font-size: .74rem; color: var(--cream-mute); }
.chapter-facts b { display: block; font-family: var(--sans); font-size: .92rem; color: var(--cream); font-weight: 600; margin-top: .2rem; }
@media (max-width: 720px) {
  .chapter { grid-template-columns: 1fr; min-height: 0; }
  .chapter-media { aspect-ratio: 16/10; }
}

.story-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .6rem;
}
.story-progress {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.story-progress i {
  display: block;
  height: 100%;
  width: 18%;
  background: var(--ember);
  border-radius: 2px;
  transition: width .25s var(--ease), margin-left .25s var(--ease);
}
.story-btns { display: flex; gap: .55rem; }
.rail-btn {
  width: 50px; height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, border-color .18s, opacity .18s;
}
.rail-btn:hover { background: var(--ink-3); border-color: var(--brass); }
.rail-btn:disabled { opacity: .32; cursor: not-allowed; }
.rail-btn svg { width: 20px; height: 20px; }
.tone-paper .rail-btn { border-color: var(--paper-edge); color: var(--on-paper); }
.tone-paper .story-progress { background: var(--paper-edge); }


.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-top: 2.4rem; }
.prose h3 { font-size: 1.4rem; margin-top: 1.8rem; }
.prose p { color: var(--cream-dim); }
.tone-paper .prose p { color: var(--on-paper-2); }
.prose a { color: var(--ember-lit); text-underline-offset: 3px; }
.tone-paper .prose a { color: var(--brass-deep); }
.prose ul.bullets { display: grid; gap: .6rem; }
.prose ul.bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--cream-dim);
}
.tone-paper .prose ul.bullets li { color: var(--on-paper-2); }
.prose ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border: 1.5px solid var(--ember);
  transform: rotate(45deg);
}

.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 480;
  line-height: 1.22;
  font-style: italic;
  border: 0;
  padding: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
}


figure.shot { margin: 0; }
figure.shot img { width: 100%; border-radius: var(--r-m); }
figure.shot figcaption {
  margin-top: .7rem;
  font-family: var(--mono);
  font-size: .73rem;
  color: var(--cream-mute);
  display: flex;
  gap: .5rem;
  align-items: baseline;
}
figure.shot figcaption b { color: var(--brass); font-weight: 500; }
.tone-paper figure.shot figcaption { color: var(--on-paper-2); }
.tone-paper figure.shot figcaption b { color: var(--brass-deep); }


.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
}
.facts-table th, .facts-table td {
  text-align: left;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.facts-table th {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 500;
  width: 38%;
  padding-right: 1rem;
}
.facts-table td { color: var(--cream); }
.tone-paper .facts-table th, .tone-paper .facts-table td { border-color: var(--paper-edge); }
.tone-paper .facts-table td { color: var(--on-paper); }
.tone-paper .facts-table th { color: var(--on-paper-2); }


.mosaic { display: grid; gap: clamp(.7rem, 1.6vw, 1.1rem); grid-template-columns: repeat(4, 1fr); }
.mosaic figure { margin: 0; border-radius: var(--r-m); overflow: hidden; position: relative; }
.mosaic figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.mosaic .wide { grid-column: span 2; }
.mosaic .wide img { aspect-ratio: 3/2; }
.mosaic .tall { grid-row: span 2; }
.mosaic .tall img { aspect-ratio: 3/5; }
@media (max-width: 760px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic .tall { grid-row: span 1; }
  .mosaic .tall img { aspect-ratio: 3/4; }
}


.guide-list { display: grid; gap: 1rem; }
.guide-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 1.3rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 1rem;
  transition: border-color .2s, transform .2s var(--ease);
}
.guide-item:hover { border-color: var(--ink-5); transform: translateX(3px); }
.tone-paper .guide-item {
  background: rgba(255,255,255,.5);
  border-color: var(--paper-edge);
}
.guide-mark {
  border-radius: var(--r-s);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 25% 15%, rgba(216,170,73,.22), transparent 70%),
    linear-gradient(160deg, var(--ink-4), var(--ink-2));
  border: 1px solid var(--line);
}
.guide-mark span {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 480;
  color: var(--brass);
  line-height: 1;
}
.tone-paper .guide-mark {
  background:
    radial-gradient(120% 120% at 25% 15%, rgba(183,138,47,.2), transparent 70%),
    linear-gradient(160deg, var(--paper-2), var(--paper));
  border-color: var(--paper-edge);
}
.tone-paper .guide-mark span { color: var(--brass-deep); }
.guide-main { display: flex; flex-direction: column; gap: .35rem; }
.guide-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.guide-main h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; }
.tone-paper .guide-main h3 { color: var(--on-paper); }
.guide-tier {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
  flex: none;
}
.tone-paper .guide-tier { color: var(--brass-deep); }
.guide-main p { font-size: .95rem; color: var(--cream-dim); }
.tone-paper .guide-main p { color: var(--on-paper-2); }
.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .9rem;
  margin-top: .3rem;
  font-family: var(--mono);
  font-size: .73rem;
  color: var(--cream-mute);
}
.tone-paper .guide-meta { color: var(--on-paper-2); }
.guide-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.guide-meta svg { width: 13px; height: 13px; color: var(--brass); }
@media (max-width: 540px) {
  .guide-item { grid-template-columns: 1fr; }
  .guide-thumb { aspect-ratio: 16/9; }
}


.faq { display: grid; gap: .7rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--ink-3);
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--ink-5); }
.tone-paper .faq details {
  background: rgba(255,255,255,.5);
  border-color: var(--paper-edge);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { flex: 1; }
.faq summary .ico {
  flex: none;
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: background .2s, transform .25s var(--ease);
  margin-top: 2px;
}
.faq summary .ico::before, .faq summary .ico::after {
  content: "";
  position: absolute;
  background: var(--ember);
  border-radius: 2px;
  top: 50%; left: 50%;
}
.faq summary .ico::before { width: 11px; height: 1.6px; transform: translate(-50%,-50%); }
.faq summary .ico::after { width: 1.6px; height: 11px; transform: translate(-50%,-50%); transition: transform .25s var(--ease); }
.faq details[open] summary .ico { background: rgba(236,107,57,.14); }
.faq details[open] summary .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq .answer { padding: 0 1.4rem 1.3rem; }
.faq .answer p { color: var(--cream-dim); }
.tone-paper .faq .answer p { color: var(--on-paper-2); }
.faq .answer > * + * { margin-top: .8rem; }


.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-l);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  isolation: isolate;
  width: 100%;
  display: block;
}
.video img { width: 100%; height: 100%; object-fit: cover; }
.video::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,14,23,.25), rgba(11,14,23,.6));
  z-index: 1;
}
.video .play {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--ember);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px -12px rgba(236,107,57,.7);
  transition: transform .2s var(--ease), background .2s;
}
.video:hover .play { transform: translate(-50%,-50%) scale(1.08); background: var(--ember-lit); }
.video .play svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.video .v-label {
  position: absolute;
  z-index: 2;
  left: 1.4rem; bottom: 1.3rem;
  right: 1.4rem;
}
.video .v-label .k {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
}
.video .v-label .t {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #fff;
  margin-top: .25rem;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video-credit {
  margin-top: .7rem;
  font-family: var(--mono);
  font-size: .73rem;
  color: var(--cream-mute);
}
.video-credit a { color: var(--brass); }
.tone-paper .video-credit { color: var(--on-paper-2); }
.tone-paper .video-credit a { color: var(--brass-deep); }


.sources {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.sources h2, .sources h3 {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 500;
}
.tone-paper .sources { border-color: var(--paper-edge); }
.sources ol { margin-top: 1rem; display: grid; gap: .6rem; counter-reset: src; }
.sources li {
  font-size: .88rem;
  color: var(--cream-mute);
  padding-left: 2.2rem;
  position: relative;
  line-height: 1.5;
}
.sources li::before {
  counter-increment: src;
  content: counter(src, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--brass);
}
.sources a { color: var(--cream-dim); text-underline-offset: 2px; }
.sources a:hover { color: var(--ember-lit); }
.tone-paper .sources li { color: var(--on-paper-2); }
.tone-paper .sources a { color: var(--on-paper); }


.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--cream-mute);
}
.crumbs a { color: var(--cream-dim); text-decoration: none; }
.crumbs a:hover { color: var(--ember-lit); }
.crumbs span[aria-hidden] { color: var(--ink-5); }


.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-l);
  padding: clamp(2.4rem, 6vw, 5rem);
  text-align: center;
}
.cta-band .hero-media { position: absolute; inset: 0; z-index: -2; }
.cta-band .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,14,23,.78), rgba(11,14,23,.92));
}
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 20ch; margin-inline: auto; }
.cta-band p { margin: 1.1rem auto 0; max-width: 50ch; color: var(--cream-dim); }
.cta-band .hero-actions { justify-content: center; }


.routemap { width: 100%; height: auto; }
.routemap .path { fill: none; stroke: var(--brass); stroke-width: 2; stroke-dasharray: 5 6; opacity: .8; }
.routemap .leg { fill: none; stroke: var(--ember); stroke-width: 2.4; }
.routemap .stop { fill: var(--ink); stroke: var(--ember); stroke-width: 2.4; }
.routemap .stop-major { fill: var(--ember); }
.routemap text { fill: var(--cream-dim); font-family: var(--mono); font-size: 13px; }
.routemap .stop-label { fill: var(--cream); font-family: var(--serif); font-size: 17px; }


.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
}
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { color: var(--cream-mute); font-size: .95rem; max-width: 34ch; }
.footer-col h3 {
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--cream-dim);
  padding: .32rem 0;
  font-size: .95rem;
  transition: color .16s;
}
.footer-col a:hover { color: var(--ember-lit); }
.footer-note {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  padding-block: 1.6rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--cream-mute);
}
.footer-note .coords { font-size: .72rem; }
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}


.comingsoon-body {
  min-height: 80svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(3rem, 7vw, 6rem) var(--gut) 4rem;
  position: relative;
  isolation: isolate;
}
.comingsoon-inner { max-width: 680px; }
.comingsoon-body .compass {
  width: 96px; height: 96px;
  margin: 0 auto 1.6rem;
}
.comingsoon-body h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-top: 1rem; }
.comingsoon-body p { margin-top: 1.2rem; color: var(--cream-dim); }
.comingsoon-body .from {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--brass);
  word-break: break-word;
}
.comingsoon-links {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}


.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.filter-bar button {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .58rem 1.05rem;
  min-height: 44px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--cream-dim);
  transition: color .18s, background .18s, border-color .18s;
}
.filter-bar button:hover { color: var(--cream); border-color: var(--brass); }
.filter-bar button[aria-pressed="true"] {
  background: var(--ember);
  color: var(--ink);
  border-color: var(--ember);
  font-weight: 600;
}

.wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 940px) { .wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wall { grid-template-columns: 1fr; } }

.dispatch {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(1.4rem, 2.4vw, 1.85rem);
}
.dispatch[hidden] { display: none; }
.dispatch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.dispatch .seal {
  width: 48px; height: 48px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 500;
  color: var(--brass);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(216,170,73,.26), transparent 70%),
    var(--ink-2);
  border: 1px solid var(--line);
}
.dispatch .jtag {
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--brass);
  text-align: right;
  line-height: 1.55;
}
.dispatch blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.36;
  font-style: italic;
  font-weight: 480;
  color: var(--cream);
}
.dispatch .story {
  font-size: .92rem;
  color: var(--cream-dim);
}
.dispatch-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.dispatch .who {
  font-family: var(--serif);
  font-size: 1.14rem;
  color: var(--cream);
}
.dispatch .role {
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-top: .2rem;
}
.dispatch .postmark {
  margin-top: .6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .7rem;
  font-family: var(--mono);
  font-size: .69rem;
  color: var(--sky);
}
.wall-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--cream-mute);
  font-family: var(--mono);
  font-size: .85rem;
}


.article-card {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 1.35rem 1.4rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: transform .22s var(--ease), border-color .22s, box-shadow .22s;
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-5);
  box-shadow: var(--shadow-2);
}
.article-card[hidden] { display: none; }
.article-card .cat {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brass);
}
.article-card h3 { font-size: 1.26rem; line-height: 1.16; }
.article-card:hover h3 { color: var(--ember-lit); }
.article-card .dek { font-size: .92rem; color: var(--cream-dim); }
.article-card .a-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .71rem;
  letter-spacing: .04em;
  color: var(--cream-mute);
}
.article-card .a-foot .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--cream-mute); flex: none; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.1rem;
  margin-top: 1.4rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--cream-dim);
}
.article-meta .sep { color: var(--ink-5); }
.prose-article > h2:first-of-type { margin-top: 0; }


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}


.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.flex { display: flex; }
.wrap { flex-wrap: wrap; }
.gap-s { gap: .6rem; }
.gap-m { gap: 1rem; }
.gap-l { gap: 1.8rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.mt-s { margin-top: .8rem; }
.mt-m { margin-top: 1.6rem; }
.mt-l { margin-top: 2.6rem; }
.muted { color: var(--cream-mute); }
.full-bleed {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.starfield {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 22%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.2px 1.2px at 68% 12%, rgba(255,255,255,.55), transparent),
    radial-gradient(1.5px 1.5px at 42% 64%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.1px 1.1px at 86% 48%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.3px 1.3px at 24% 86%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.2px 1.2px at 92% 80%, rgba(255,255,255,.45), transparent);
  opacity: .5;
  pointer-events: none;
}


@media print {
  .site-header, .site-footer, .scroll-cue, .video .play, .story-controls { display: none; }
  body { background: #fff; color: #000; }
}
