/* ── TOKENS ───────────────────────────────────── */
:root {
  --cream:      #F4F1EC;
  --cream2:     #EDE9E2;
  --surface:    #FFFFFF;
  --navy:       #1E2530;
  --navy-mid:   #2C3545;
  --navy-light: #3D4D60;
  --gold:       #E8751A;
  --gold-warm:  #F0923A;
  --gold-f:     rgba(232,117,26,0.08);
  --gold-b:     rgba(232,117,26,0.18);
  --border:     rgba(30,37,48,0.1);
  --border-dark:rgba(30,37,48,0.18);
  --text:       #1E2530;
  --text-mid:   #4A5568;
  --text-muted: #8A95A3;
  --green:      #2D8A5E;
  --blue:       #4A7CC4;
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── HATCH TEXTURE ────────────────────────────── */
body {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24 L24 0' stroke='%231E2530' stroke-width='0.4' stroke-opacity='0.06'/%3E%3C/svg%3E");
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244,241,236,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--navy); background: rgba(30,37,48,0.06); }
.nav-links a.active { color: var(--gold); }
.nav-kw {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  padding: 9rem 3rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 75vh;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 1.8rem;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--navy-light); }

/* ── HERO CARD ────────────────────────────────── */
.hero-right { position: relative; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 32px rgba(30,37,48,0.1), 0 1px 4px rgba(30,37,48,0.06);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 2rem; right: 2rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border-radius: 2px;
}
.hc-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hc-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hc-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.hc-body {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.hc-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.hc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: var(--cream);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.hc-tag.active { background: var(--gold-f); color: var(--gold); border-color: rgba(232,117,26,0.25); }
.hero-card-float {
  position: absolute;
  bottom: -1.2rem;
  right: -1rem;
  background: var(--navy);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(30,37,48,0.2);
}
.hero-card-float strong {
  color: var(--gold);
  display: block;
  font-size: 1.1rem;
  font-family: 'Fraunces', serif;
  letter-spacing: -0.02em;
}

/* ── SECTION WRAPPER ──────────────────────────── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.s-num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.7;
}
.s-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}
.s-desc {
  margin-left: auto;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  align-self: center;
}

/* ── UPDATES GRID ─────────────────────────────── */
.updates-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.upd-card {
  background: var(--surface);
  padding: 2rem;
  position: relative;
  transition: background 0.15s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.upd-card:hover { background: #FAFAF8; }
.upd-card.featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-warm), transparent);
}
.upd-week {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.upd-week .live { color: var(--gold); display: flex; align-items: center; gap: 0.35rem; }
.upd-week .live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
.upd-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}
.upd-card:not(.featured) .upd-title { font-size: 0.92rem; }
.upd-body {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.upd-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.upd-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  background: var(--cream2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.upd-archive {
  grid-column: 1 / -1;
  background: var(--cream);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
}
.upd-archive-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.upd-archive-links { margin-left: auto; display: flex; gap: 1.5rem; }
.upd-archive-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.15s;
}
.upd-archive-links a:hover { color: var(--gold); }

/* ── STRATEGIE ────────────────────────────────── */
.strat-stack {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.strat-row {
  background: var(--surface);
  padding: 2.2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  position: relative;
  transition: background 0.15s;
}
.strat-row:hover { background: #FAFAF8; }
.strat-row.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-warm));
}
.strat-row.dim { opacity: 0.45; }
.strat-phase {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.strat-row.active .strat-phase { color: var(--gold); }
.strat-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--border-dark);
  margin-bottom: 0.55rem;
  line-height: 1;
}
.strat-row.active .strat-name { color: var(--navy); }
.strat-goal {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 0.9rem;
}
.strat-row.active .strat-goal { color: var(--text-mid); }
.strat-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.9rem; }
.strat-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  background: var(--cream2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.strat-row.active .strat-chip {
  background: var(--gold-f);
  color: var(--gold);
  border-color: rgba(232,117,26,0.22);
}
.strat-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  padding-top: 0.2rem;
}
.strat-kpi-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--border-dark);
  line-height: 1;
}
.strat-row.active .strat-kpi-num { color: var(--gold); }
.strat-kpi-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: right;
}
.strat-row.active .strat-kpi-lbl { color: rgba(232,117,26,0.6); }
.status-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--cream2);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.status-pill.live { color: var(--green); background: rgba(45,138,94,0.07); border-color: rgba(45,138,94,0.2); }
.spdot { width: 5px; height: 5px; border-radius: 50%; }
.spdot-live { background: var(--green); box-shadow: 0 0 6px rgba(45,138,94,0.5); }
.spdot-next { background: var(--text-muted); }
.spdot-later { background: var(--border-dark); }

/* Kommentar-Panel */
.comment-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.comment-btn:hover { border-color: var(--gold); color: var(--gold); }
.comment-panel {
  display: none;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.comment-panel.open { display: block; }
.comment-list { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.comment-item {
  background: var(--cream);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
}
.comment-author {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.comment-body { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }
.comment-form { display: flex; gap: 0.5rem; }
.comment-input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border-dark);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.comment-input:focus { border-color: var(--gold); }
.comment-submit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.55rem 1rem;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.comment-submit:hover { background: var(--navy-light); }

/* ── TO-DOS ───────────────────────────────────── */
.todos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.todo-col {
  background: var(--surface);
  padding: 2rem;
}
.todo-col-hdr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--gold-b);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.todo-col-hdr .count { color: var(--text-muted); font-size: 0.56rem; }
.todo-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;
  border-radius: 7px;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
  cursor: pointer;
}
.todo-item:last-of-type { border-bottom: none; }
.todo-item:hover { background: var(--cream); }
.todo-item.done .todo-title { text-decoration: line-through; opacity: 0.35; }
.checkbox {
  width: 15px; height: 15px;
  border: 1.5px solid var(--border-dark);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.todo-item.done .checkbox { background: var(--gold); border-color: var(--gold); }
.todo-item.done .checkbox::after { content: '✓'; font-size: 8px; color: #fff; font-weight: 700; }
.todo-body { flex: 1; min-width: 0; }
.todo-title { font-size: 0.82rem; color: var(--navy); font-weight: 400; margin-bottom: 0.15rem; }
.todo-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.todo-prio {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  flex-shrink: 0;
  align-self: center;
}
.p-now  { background: var(--gold-f);               color: var(--gold); border: 1px solid rgba(232,117,26,0.2); }
.p-next { background: rgba(74,124,196,0.07);        color: var(--blue); border: 1px solid rgba(74,124,196,0.2); }
.p-done { background: rgba(30,37,48,0.05);          color: var(--text-muted); border: 1px solid var(--border); }

/* Add-todo form */
.add-todo-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: none;
  border: 1px dashed var(--border-dark);
  border-radius: 7px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  width: 100%;
  margin-top: 0.75rem;
  transition: all 0.15s;
}
.add-todo-btn:hover { border-color: var(--gold); color: var(--gold); }
.add-todo-form {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.9rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.add-todo-form.open { display: flex; }
.add-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  outline: none;
}
.add-input:focus { border-color: var(--gold); }
.add-input::placeholder { color: var(--text-muted); }
.add-form-actions { display: flex; gap: 0.4rem; justify-content: flex-end; }
.btn-add-submit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
}
.btn-add-cancel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
}

/* ── IDEEN-STATUS ─────────────────────────────── */
.idea-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}
.idea-status.new      { background: var(--gold-f);              color: var(--gold);       border: 1px solid rgba(232,117,26,0.2); }
.idea-status.accepted { background: rgba(45,138,94,0.07);        color: var(--green);      border: 1px solid rgba(45,138,94,0.2); }
.idea-status.deferred { background: rgba(74,124,196,0.07);       color: var(--blue);       border: 1px solid rgba(74,124,196,0.2); }
.idea-status.rejected { background: rgba(30,37,48,0.05);         color: var(--text-muted); border: 1px solid var(--border); }

.comment-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  gap: 0.5rem;
}
.eval-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--border);
}
.eval-actions {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.eval-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--border-dark);
  background: none;
  color: var(--text-muted);
  transition: all 0.15s;
}
.eval-btn:hover        { background: var(--cream2); color: var(--navy); }
.eval-btn.accept:hover { background: rgba(45,138,94,0.1);  color: var(--green); border-color: rgba(45,138,94,0.3); }
.eval-btn.defer:hover  { background: rgba(74,124,196,0.1); color: var(--blue);  border-color: rgba(74,124,196,0.3); }
.eval-btn.reject:hover { background: rgba(30,37,48,0.06);  color: var(--text-muted); }

/* Kommentar-Button immer voll sichtbar, auch bei gedimmten Phasen */
.strat-row.dim .comment-btn { opacity: 1; }
.strat-row.dim .comment-panel { opacity: 1; }

/* ── STORY PAGE ───────────────────────────────── */
.story-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 3rem 6rem;
}
.story-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.5rem;
}
.story-chapter {
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--cream2);
  line-height: 0.85;
  margin-bottom: 0.5rem;
}
.story-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.story-daterange {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.story-block {
  margin-bottom: 3rem;
}
.story-block-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.story-block-cat::before { content: '◆'; font-size: 0.45rem; }
.story-block-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.story-block-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 0.8rem 1.4rem;
  background: var(--gold-f);
  border-radius: 0 8px 8px 0;
  margin: 1.4rem 0;
}
.pull-quote p {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}
.milestone-badge {
  border: 1px solid var(--border-dark);
  border-top: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  background: var(--surface);
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(30,37,48,0.06);
}
.milestone-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.milestone-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.milestone-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
}
.story-next {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.story-next-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.story-next-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.story-back {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.15s;
}
.story-back:hover { opacity: 0.7; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-logo span { color: var(--gold); opacity: 0.6; }
.footer-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero         { animation: fadeUp 0.6s ease both; }
.section-wrap { animation: fadeUp 0.6s ease both; }
.section-wrap:nth-of-type(2) { animation-delay: 0.08s; }
.section-wrap:nth-of-type(3) { animation-delay: 0.16s; }
.section-wrap:nth-of-type(4) { animation-delay: 0.24s; }
.story-wrap   { animation: fadeUp 0.5s ease both; }
