
/* ──────────────────────────────────────────────────────
   Adamas: when the .otf file sits beside this HTML, the
   wordmark uses it. Otherwise the fallback (Black Ops One)
   stands in so the structure is visible.
   ────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Adamas';
  src: url('../fonts/Adamas.otf') format('opentype');
  font-display: swap;
}

:root {
  --bg-deep:      #0a0805;
  --bg-mid:       #14100b;
  --gold:         #f0c060;
  --gold-bright:  #fff7d6;
  --gold-dim:     #8a6a3a;
  --terracotta:   #c4623f;
  --ink:          #ede4d0;
  --ink-soft:     rgba(237, 228, 208, 0.86);
  --ink-mute:     rgba(237, 228, 208, 0.42);
  --ink-faint:    rgba(237, 228, 208, 0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 18px;
  line-height: 1.72;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 6;
  mix-blend-mode: multiply;
}

/* Atmosphere */
/* ═══ WEAVE ANIMATION — CSS start ════════════════════════════════ */
#flow-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}
#overlay-canvas {
  position: fixed; inset: 0;
  z-index: 5; pointer-events: none;
  mix-blend-mode: screen;
}

/* ─── Manifesto layout primitives ─── */
.layer-stack {
  display: grid; gap: 0.85rem;
  max-width: 760px; margin: 0 auto;
  font-family: 'Newsreader', serif;
}
.layer-stack .layer {
  display: grid; grid-template-columns: minmax(120px,auto) 1fr;
  gap: 1.5rem; align-items: baseline;
  padding: 1rem 1.3rem;
  border: 1px solid var(--ink-faint);
  background: rgba(232,184,96,0.02);
  border-radius: 2px;
}
.layer-stack .layer .lbl {
  font-family: 'Adamas','Black Ops One',sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute);
}
.layer-stack .layer .body { color: var(--ink-soft); font-size: 1rem; }
.layer-stack .layer.gap {
  border-color: var(--gold);
  background: rgba(232,184,96,0.08);
}
.layer-stack .layer.gap .lbl { color: var(--gold); }
.layer-stack .layer.gap .body { color: var(--ink); font-family: 'Fraunces',serif; font-style: italic; }

.reasons {
  list-style: none; padding: 0; margin: 2.4rem 0 0;
  display: grid; gap: 1.4rem;
}
.reasons li {
  font-family: 'Newsreader', serif;
  font-size: 1.07rem; line-height: 1.65;
  color: var(--ink-soft);
  padding-left: 1.4rem; position: relative;
}
.reasons li::before {
  content: '◆'; color: var(--gold); position: absolute; left: 0; top: 0.05em;
  font-size: 0.7em;
}
.reasons li strong { color: var(--ink); font-family: 'Fraunces',serif; font-weight: 480; font-style: italic; }

.cards-3 {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.6rem;
}
.card {
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--ink-faint);
  background: rgba(232,184,96,0.025);
  border-radius: 2px;
}
.card h4 {
  font-family: 'Fraunces',serif; font-weight: 380;
  font-size: 1.22rem; line-height: 1.2;
  margin: 0 0 0.7rem; color: var(--gold);
  font-variation-settings: "SOFT" 60;
}
.card p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.6; margin: 0; }

.two-col {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2.4rem;
}
.two-col .col h5 {
  font-family: 'Adamas','Black Ops One',sans-serif;
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 1rem;
}
.two-col .col ul { list-style: none; padding: 0; margin: 0; }
.two-col .col li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--ink-faint);
  color: var(--ink-soft); font-size: 0.97rem;
}
.two-col .col li:first-child { border-top: none; }
.two-col .col.not h5 { color: var(--ink-mute); }
.two-col .col.not li { color: var(--ink-mute); }

.team-grid {
  display: grid; gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2.6rem;
}
.bio h4 {
  font-family: 'Fraunces',serif; font-weight: 320;
  font-size: 1.4rem; line-height: 1.2;
  margin: 0 0 0.4rem;
  font-variation-settings: "SOFT" 60, "opsz" 100;
}
.bio .role {
  font-family: 'Adamas','Black Ops One',sans-serif;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 1rem;
}
.bio p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; margin: 0; }

.faq { margin-top: 2.6rem; display: grid; gap: 0.4rem; }
.faq details {
  padding: 1.1rem 1.3rem;
  border-top: 1px solid var(--ink-faint);
}
.faq details:last-child { border-bottom: 1px solid var(--ink-faint); }
.faq summary {
  cursor: pointer; list-style: none; outline: none;
  font-family: 'Fraunces',serif; font-weight: 360;
  font-size: 1.07rem; color: var(--ink);
  position: relative; padding-right: 2rem;
  font-variation-settings: "SOFT" 50;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 0;
  color: var(--gold); font-size: 1.3rem; line-height: 1;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 0.85rem 0 0; color: var(--ink-soft);
  font-size: 1rem; line-height: 1.65;
}

.cta-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.6rem;
}
.cta {
  display: block; text-decoration: none;
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--ink-faint);
  background: rgba(232,184,96,0.025);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.cta:hover { border-color: var(--gold); background: rgba(232,184,96,0.06); transform: translateY(-2px); }
.cta .mark {
  font-family: 'Adamas','Black Ops One',sans-serif;
  font-size: 0.85rem; color: var(--gold);
  margin-bottom: 0.6rem;
}
.cta h4 {
  font-family: 'Fraunces',serif; font-weight: 360;
  font-size: 1.1rem; margin: 0 0 0.5rem;
  font-variation-settings: "SOFT" 50;
}
.cta p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; margin: 0 0 0.9rem; }
.cta .arrow { color: var(--gold); font-size: 0.85rem; font-family: 'Adamas','Black Ops One',sans-serif; letter-spacing: 0.1em; }

.pledge {
  list-style: none; padding: 0; margin: 2.6rem 0 0;
  counter-reset: pledge;
  display: grid; gap: 2rem;
}
.pledge li {
  counter-increment: pledge;
  display: grid; grid-template-columns: 3.6rem 1fr;
  gap: 1rem; align-items: baseline;
}
.pledge li::before {
  content: counter(pledge, decimal-leading-zero);
  font-family: 'Adamas','Black Ops One',sans-serif;
  font-size: 1.1rem; color: var(--gold);
  letter-spacing: 0.06em;
}
.pledge h3 {
  font-family: 'Fraunces',serif; font-weight: 320;
  font-size: 1.4rem; line-height: 1.25;
  margin: 0 0 0.5rem; color: var(--ink);
  font-variation-settings: "SOFT" 70;
}
.pledge p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; margin: 0; }

.sign-form {
  display: grid; gap: 1.1rem;
  max-width: 520px; margin: 2.4rem 0 0;
}
.sign-form .field { display: grid; gap: 0.4rem; }
.sign-form label {
  font-family: 'Adamas','Black Ops One',sans-serif;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute);
}
.sign-form input, .sign-form select {
  background: transparent; color: var(--ink);
  border: none; border-bottom: 1px solid var(--ink-faint);
  padding: 0.6rem 0.1rem; font-family: 'Newsreader',serif;
  font-size: 1.02rem; outline: none;
  transition: border-color 0.2s;
}
.sign-form input:focus, .sign-form select:focus { border-bottom-color: var(--gold); }
.sign-form .check { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-soft); font-size: 0.95rem; }
.sign-form button {
  margin-top: 0.8rem; padding: 0.9rem 1.6rem;
  background: var(--gold); color: #1a1308;
  border: none; border-radius: 2px;
  font-family: 'Adamas','Black Ops One',sans-serif;
  font-size: 0.85rem; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer;
  transition: filter 0.15s;
}
.sign-form button:hover { filter: ; }
.sign-form .pledge-line {
  margin-top: 0.4rem; color: var(--ink-soft);
  font-family: 'Fraunces',serif; font-style: italic;
  font-size: 1rem; line-height: 1.55;
}

footer.site-foot {
  position: relative; z-index: 2;
  padding: 4rem 2rem 5rem;
  text-align: center;
  border-top: 1px solid var(--ink-faint);
}
footer.site-foot .tag {
  font-family: 'Fraunces',serif; font-style: italic; font-weight: 320;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--ink-soft);
  font-variation-settings: "SOFT" 80;
  margin-bottom: 1.2rem;
}
footer.site-foot .meta {
  font-family: 'Adamas','Black Ops One',sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
}
footer.site-foot .meta a { color: var(--gold); text-decoration: none; }

/* ═══ WEAVE ANIMATION — CSS end ══════════════════════════════════ */

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2.4rem;
  background: linear-gradient(180deg, rgba(10, 8, 5, 0.78) 0%, transparent 100%);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}
.nav-mark {
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-mark::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  margin-right: 0.7rem; vertical-align: middle;
  box-shadow: 0 0 12px var(--gold);
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-family: 'Newsreader', serif;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
}

/* The wordmark sits ABOVE the overlay canvas so the radiation
   lines emerge from behind it rather than crossing over it. */
/* ─── Wordmark positioning anchor ─── */
#wordmark-svg {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1100px;
  height: clamp(180px, 26vw, 320px);
  display: block;
  pointer-events: none;
}

.hero-tag {
  position: relative;
  z-index: 4;
  margin-top: 2.4rem;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  color: var(--ink-soft);
  line-height: 1.6;
  font-variation-settings: "SOFT" 100;
}
.tag-line { display: block; }
.tag-line.dim {
  color: var(--ink-mute);
  font-style: normal; font-size: 0.78em;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 0.9rem;
  font-family: 'Adamas', 'Black Ops One', sans-serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.8rem;
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-mute);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-pulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); }
  50%      { opacity: 1;    transform: scaleY(1); }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Sections */
.section { position: relative; z-index: 2; padding: clamp(6rem, 12vh, 11rem) 2rem; }
.container { max-width: 980px; margin: 0 auto; }

.eyebrow {
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0.9;
}

.pull {
  font-family: 'Fraunces', serif;
  font-weight: 280;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 2.4rem;
  font-feature-settings: "ss01" on;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.pull em { font-style: italic; color: var(--gold); font-weight: 300; }
.lead {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.12rem, 1.45vw, 1.3rem);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 600px;
}
.lead + .lead { margin-top: 1.4rem; }

.tune { text-align: center; }
.tune-head {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.tune-desc {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.tune-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
  padding: 2.4rem 2rem;
  background: rgba(232, 184, 96, 0.025);
  border: 1px solid var(--ink-faint);
  border-radius: 2px;
  text-align: left;
}
.tune-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}
.tune-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1); }
}
.control { display: flex; flex-direction: column; gap: 0.6rem; }
.control label {
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.control .row { display: flex; align-items: center; gap: 0.8rem; }
.control .readout {
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  min-width: 3.4em;
}
input[type="range"].slider {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 1px; background: var(--ink-faint);
  outline: none; cursor: pointer;
}
input[type="range"].slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%; cursor: grab;
  box-shadow: 0 0 12px var(--gold);
  transition: transform 0.15s;
}
input[type="range"].slider::-webkit-slider-thumb:hover { transform: scale(1.3); }
input[type="range"].slider::-moz-range-thumb {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%; border: none;
  cursor: grab; box-shadow: 0 0 12px var(--gold);
}
.mode-toggle {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-faint);
  border-radius: 2px;
  padding: 2px;
}
.mode-btn {
  flex: 1;
  padding: 0.5rem 0.8rem;
  background: transparent; border: none;
  color: var(--ink-mute);
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.mode-btn.active {
  background: var(--gold);
  color: var(--bg-deep);
}

.arcs-intro {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--ink-mute);
  text-align: center;
  margin-bottom: 7rem;
  font-variation-settings: "SOFT" 100;
}
.arc {
  position: relative;
  max-width: 480px;
  padding: 3rem 0;
  margin-bottom: 5rem;
}
.arc-left  { margin-right: auto; margin-left: 6%; padding-left: 2.5rem; }
.arc-right { margin-left: auto; margin-right: 6%; padding-right: 2.5rem; text-align: right; }
.arc::before {
  content: ''; position: absolute;
  top: 3.5rem;
  width: 18px; height: 1px;
  background: var(--gold);
  opacity: 0.75;
  box-shadow: 0 0 8px var(--gold);
}
.arc-left::before { left: 0; }
.arc-right::before { right: 0; }
.arc-num {
  display: block;
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 0.74rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0.9;
}
.arc-title {
  font-family: 'Fraunces', serif;
  font-weight: 320;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.08; letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
  font-feature-settings: "ss01" on;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.arc-body {
  font-family: 'Newsreader', serif;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--ink-soft);
}

.initiate { text-align: center; }
.initiate-h {
  font-family: 'Fraunces', serif;
  font-weight: 280;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  font-variation-settings: "SOFT" 60;
  line-height: 1.05;
}
.initiate-p {
  font-family: 'Newsreader', serif;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.form { display: flex; gap: 0.6rem; max-width: 480px; margin: 0 auto; }
.form input {
  flex: 1;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ink-faint);
  border-radius: 2px;
  color: var(--ink);
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form input:focus {
  border-color: var(--gold);
  background: rgba(232, 184, 96, 0.04);
}
.form input::placeholder { color: var(--ink-mute); }
.form button {
  padding: 1rem 1.8rem;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  color: var(--bg-deep);
  font-family: 'Adamas', 'Black Ops One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form button:hover { background: var(--gold-bright); transform: translateY(-1px); }

.footer {
  position: relative; z-index: 2;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--ink-faint);
  font-family: 'Newsreader', serif;
  font-size: 0.9rem;
  color: var(--ink-mute);
}
.footer .dim { font-style: italic; margin-left: 0.6rem; opacity: 0.7; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 720px) {
  .nav { padding: 1rem 1.2rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.85rem; }
  .arc-left, .arc-right {
    margin-left: 0; margin-right: 0;
    padding-left: 2rem; padding-right: 0;
    text-align: left;
  }
  .arc-right::before { right: auto; left: 0; }
  .form { flex-direction: column; }
  .tune-panel { grid-template-columns: 1fr; gap: 1.4rem; }
  body::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}





/* ══════════════════════════════════════════════════════
   v5 layout — v2 content on v4 animation
   ══════════════════════════════════════════════════════ */

/* ── Clear any filter/sovereign overrides ── */
img.vis { filter: none !important; mix-blend-mode: screen; background: #000; display: block; width: 100%; height: auto; }

/* ── Main scroll container ── */
main { position: relative; z-index: 2; }

/* ── Container widths ── */
.container     { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container.mid { max-width: 860px; }
.container.narrow { max-width: 680px; }

/* ── Typography resets ── */
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #fff4e0;
  margin: 0 0 1.4rem;
}
h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  color: #fff4e0;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
h4 {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}
p {
  color: #ddd0b8;
  line-height: 1.82;
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
p.lead {
  font-size: 1.35rem;
  color: #ead8b8;
  line-height: 1.65;
}
p.dim { color: rgba(216, 204, 180, 0.55); font-size: 0.95rem; }
a { color: var(--gold); }
a:hover { color: var(--gold-bright); }
strong { color: #fff4e0; font-weight: 500; }
/* ── Eyebrow labels ── */
.eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 1.1rem;
  display: block;
}

/* ── Section base ── */
.section {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
}
.section.tight   { padding: 3.5rem 1.5rem; }
.section.bg-mid  { background: rgba(18, 14, 9, 0.7); }
hr.divider {
  border: none;
  border-top: 1px solid rgba(232, 184, 96, 0.1);
  margin: 0;
  position: relative; z-index: 2;
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 1.5rem 1.25rem;
  position: relative;
  z-index: 2;
}
.hero + .section { padding-top: clamp(2.5rem, 5vh, 4rem); }
.hero-copy { max-width: 680px; margin: 0 auto; }
.hero-copy h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f4ead6;
  margin: 0 0 1.1rem;
}
.hero-copy p   { max-width: 54ch; margin: 0 auto 2rem; }
.hero-actions  { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: #1a120a;
  border: none;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
.btn-primary:hover { background: #fff2c4; color: #1a120a; text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(232,184,96,0.4);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: #fff2c4; text-decoration: none; }
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,184,96,0.4);
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(232,184,96,0.4), rgba(232,184,96,0)); }

/* ── Bullet list ── */
ul.weave-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
ul.weave-list li {
  padding: 0.85rem 0 0.85rem 1.5rem;
  position: relative;
  border-top: 1px solid rgba(232,184,96,0.08);
  color: #ddd0b8; line-height: 1.82; font-size: 1.13rem;
}
ul.weave-list li:first-child { border-top: none; }
ul.weave-list li::before {
  content: '';
  position: absolute; left: 0; top: 1.3rem;
  width: 10px; height: 1px;
  background: var(--gold);
}
ul.weave-list li strong { color: #e8dcbc; font-weight: 500; }

/* ── Two col ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
@media(max-width:820px) { .two-col { grid-template-columns:1fr; gap:2.5rem; } }

/* ── Visual slot ── */
.visual-slot {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 4rem;
  padding: 5rem 1.5rem;
  position: relative; z-index: 2;
}
.vs-img { flex: 0 0 auto; width: min(320px, 90vw); }
.vs-img img { width:100%; height:auto; display:block; mix-blend-mode:screen; }
.vs-text { flex: 1; min-width: 260px; }
.vs-caption {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.68rem; letter-spacing: 0.1em;
  color: rgba(189,176,154,0.5); font-style: italic;
  margin-top: 0.8rem; display: block;
}
@media(max-width:720px) { .visual-slot { flex-direction:column; gap:2rem; padding:3.5rem 1.5rem; } }

/* ── Layer stack diagram ── */
.layer-stack {
  margin: 2.5rem auto 0;
  max-width: 640px;
  border: 1px solid rgba(232,184,96,0.18);
  border-radius: 4px;
  overflow: hidden;
}
.layer-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(232,184,96,0.1);
}
.layer-row:last-child { border-bottom: none; }
.layer-row.the-gap {
  background: rgba(232,184,96,0.06);
  border-color: rgba(232,184,96,0.22);
}
.lr-label {
  padding: 0.9rem 1.1rem;
  border-right: 1px solid rgba(232,184,96,0.1);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(232,184,96,0.5);
  display: flex; flex-direction: column; justify-content: center; gap: 0.2rem;
}
.layer-row.the-gap .lr-label { color: var(--gold); }
.lr-num { font-size: 0.54rem; opacity: 0.55; }
.lr-body { padding: 0.9rem 1.2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.15rem; }
.lr-title { font-family: 'Fraunces', serif; font-size: 0.92rem; font-weight: 500; color: #e8dcbc; }
.layer-row.the-gap .lr-title { color: #fff2c4; }
.lr-sub { font-size: 0.8rem; color: rgba(189,176,154,0.65); line-height: 1.4; }
.lr-badge {
  display: inline-block; margin-top: 0.25rem; width: fit-content;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(232,184,96,0.12); color: var(--gold);
  border: 1px solid rgba(232,184,96,0.28);
  border-radius: 2px; padding: 0.12rem 0.45rem;
}

/* ── Callout box ── */
.callout {
  border-left: 2px solid var(--gold);
  padding: 1.1rem 1.4rem;
  margin: 2rem 0;
  background: rgba(232,184,96,0.03);
  border-radius: 0 3px 3px 0;
}
.callout p { margin: 0; font-size: 0.98rem; color: #cfc3a8; max-width: none; }
.callout strong { color: #f4ead6; }

/* ── Three principles ── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(232,184,96,0.14);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2.2rem;
}
@media(max-width:700px){ .principles-grid { grid-template-columns:1fr; } }
.principle {
  padding: 1.8rem 1.6rem;
  border-right: 1px solid rgba(232,184,96,0.1);
}
.principle:last-child { border-right: none; }
.principle h4 { margin-bottom: 0.5rem; }
.principle p  { font-size: 0.93rem; max-width: none; margin: 0; }

/* ── Do/Don't ── */
.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(232,184,96,0.14);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}
@media(max-width:580px){ .do-dont { grid-template-columns:1fr; } }
.do-col, .dont-col { padding: 1.6rem 1.5rem; }
.do-col   { border-right: 1px solid rgba(232,184,96,0.1); }
.do-col h4   { color: var(--gold); }
.dont-col h4 { color: rgba(189,176,154,0.45); }
.do-col ul, .dont-col ul { list-style:none; padding:0; margin:0.7rem 0 0; }
.do-col li, .dont-col li {
  padding: 0.5rem 0 0.5rem 1.1rem;
  position: relative;
  color: #bdb09a; font-size: 0.93rem; line-height: 1.5;
  border-top: 1px solid rgba(232,184,96,0.06);
}
.do-col li:first-child, .dont-col li:first-child { border-top: none; }
.do-col   li::before { content:'→'; position:absolute; left:0; top:0.5rem; color:var(--gold); font-size:0.7rem; }
.dont-col li::before { content:'—'; position:absolute; left:0; top:0.5rem; color:rgba(189,176,154,0.3); font-size:0.7rem; }

/* ── Team ── */
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 2.2rem;
}
@media(max-width:700px){ .team-grid { grid-template-columns:1fr; } }
.team-card {
  padding: 2rem 1.8rem;
  background: rgba(12,9,5,0.55);
  border: 1px solid rgba(232,184,96,0.1);
}
.tc-name { font-family:'Fraunces',serif; font-size:1.2rem; font-weight:500; color:#f4ead6; margin:0 0 0.1rem; }
.tc-role {
  font-family:'IBM Plex Mono',ui-monospace,monospace;
  font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gold); margin:0 0 1rem;
}
.team-card p { font-size:0.94rem; max-width:none; }
.eco-tags { display:flex; flex-wrap:wrap; gap:0.4rem; margin-top:1rem; }
.eco-tag {
  font-family:'IBM Plex Mono',ui-monospace,monospace;
  font-size:0.6rem; letter-spacing:0.1em;
  color:rgba(189,176,154,0.65);
  border:1px solid rgba(232,184,96,0.14);
  padding:0.25rem 0.6rem; border-radius:2px;
}

/* ── Fund cards ── */
.fund-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(232,184,96,0.14); border-radius:4px;
  overflow:hidden; margin-top:2.2rem;
}
@media(max-width:700px){ .fund-grid { grid-template-columns:1fr; } }
.fund-card {
  padding: 1.8rem 1.6rem;
  background: rgba(12,9,5,0.5);
  border-right: 1px solid rgba(232,184,96,0.1);
}
.fund-card:last-child { border-right:none; }
.fund-icon { font-size:1.3rem; color:var(--gold); display:block; margin-bottom:0.7rem; font-style:normal; }
.fund-card h3 { font-size:1rem; margin-bottom:0.45rem; }
.fund-card p  { font-size:0.91rem; max-width:none; margin:0; }
.budget-note {
  margin-top:2rem; padding:1.4rem 1.6rem;
  border:1px solid rgba(232,184,96,0.12); border-radius:4px;
  background:rgba(232,184,96,0.02);
}
.budget-note p { font-size:0.92rem; max-width:none; margin:0; }

/* ── FAQ ── */
.faq-list { margin-top:2.2rem; }
.faq-item { border-top:1px solid rgba(232,184,96,0.1); }
.faq-item:last-child { border-bottom:1px solid rgba(232,184,96,0.1); }
.faq-q {
  width:100%; background:transparent; border:none; text-align:left;
  padding:1.1rem 0; font-family:'Fraunces',serif; font-size:0.97rem;
  color:#e8dcbc; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.faq-q:hover { color:#fff2c4; }
.faq-chevron { flex-shrink:0; color:var(--gold); font-size:0.65rem; transition:transform 0.22s ease; }
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.3s ease; }
.faq-item.open .faq-a { max-height:500px; }
.faq-a p { padding-bottom:1.1rem; margin:0; font-size:0.94rem; max-width:64ch; }

/* ── CTA grid ── */
.cta-grid {
  display: grid; grid-template-columns:1fr 1fr;
  border:1px solid rgba(232,184,96,0.14); border-radius:4px;
  overflow:hidden; margin-top:2.2rem;
}
@media(max-width:580px){ .cta-grid { grid-template-columns:1fr; } }
.cta-card {
  padding: 2rem 1.8rem;
  background: rgba(12,9,5,0.5);
  border-right:1px solid rgba(232,184,96,0.1);
  border-bottom:1px solid rgba(232,184,96,0.1);
  text-decoration:none;
  display:flex; flex-direction:column; gap:0.6rem;
  transition:background 0.18s ease;
}
.cta-card:nth-child(2n)   { border-right:none; }
.cta-card:nth-child(n+3)  { border-bottom:none; }
.cta-card:hover { background:rgba(232,184,96,0.05); text-decoration:none; }
.cta-icon { font-size:1.3rem; color:var(--gold); font-style:normal; }
.cta-card h3 { font-size:1rem; margin:0; color:#f4ead6; }
.cta-card p  { font-size:0.88rem; color:rgba(189,176,154,0.8); max-width:none; margin:0; }
.cta-link    { font-family:'IBM Plex Mono',ui-monospace,monospace; font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-top:auto; }

/* ── Manifesto ── */
.manifesto-list { list-style:none; padding:0; margin:2.5rem 0 0; }
.manifesto-item {
  display:grid; grid-template-columns:2.2rem 1fr; gap:1rem;
  padding:1.7rem 0;
  border-top:1px solid rgba(232,184,96,0.08);
  align-items:start;
}
.manifesto-item:first-child { border-top:none; }
.m-num {
  font-family:'IBM Plex Mono',ui-monospace,monospace;
  font-size:0.6rem; letter-spacing:0.1em; color:var(--gold);
  opacity:0.55; padding-top:0.3rem; text-align:right;
}
.manifesto-item h3 { font-size:1.3rem; margin:0 0 0.4rem; color:#fff4e0; }
.manifesto-item p  { margin:0; font-size:1.12rem; color:#ddd0b8; }

/* ── Sign form ── */
.sign-form {
  margin-top:3rem; padding:2.2rem 2rem;
  border:1px solid rgba(232,184,96,0.18); border-radius:4px;
  background:rgba(12,9,5,0.5);
}
.sign-form h3 { margin-bottom:1.4rem; }
.form-row {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  gap:0.9rem; margin-bottom:0.9rem;
}
@media(max-width:580px){ .form-row { grid-template-columns:1fr; } }
.form-field label {
  display:block; font-family:'IBM Plex Mono',ui-monospace,monospace;
  font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase;
  color:rgba(189,176,154,0.55); margin-bottom:0.35rem;
}
.form-field input,
.form-field select {
  width:100%; box-sizing:border-box;
  background:rgba(232,184,96,0.04); border:1px solid rgba(232,184,96,0.2);
  border-radius:2px; padding:0.55rem 0.7rem;
  color:#f4ead6; font-family:'IBM Plex Sans',sans-serif;
  font-size:0.93rem; outline:none;
  transition:border-color 0.18s ease;
}
.form-field input:focus,
.form-field select:focus { border-color:var(--gold); }
.form-field select option { background:#1a120a; }
.form-check {
  display:flex; align-items:center; gap:0.55rem;
  font-size:0.88rem; color:rgba(189,176,154,0.65);
  cursor:pointer; margin-bottom:1.1rem;
}
.form-check input[type="checkbox"] {
  appearance:none; width:13px; height:13px;
  border:1px solid rgba(232,184,96,0.38); background:transparent;
  border-radius:2px; cursor:pointer; flex-shrink:0; position:relative;
}
.form-check input[type="checkbox"]:checked { background:var(--gold); border-color:var(--gold); }
.form-check input[type="checkbox"]:checked::after {
  content:''; position:absolute; left:3px; top:0; width:4px; height:7px;
  border:solid #1a120a; border-width:0 2px 2px 0; transform:rotate(45deg);
}
.sign-count { margin-top:0.7rem; font-size:0.82rem; color:rgba(189,176,154,0.45); font-style:italic; }

/* ── Depth accordion ── */
.depth-list { margin-top:1.5rem; }
.depth-item { border-top:1px solid rgba(232,184,96,0.1); }
.depth-item:last-child { border-bottom:1px solid rgba(232,184,96,0.1); }
.depth-toggle {
  width:100%; background:transparent; border:none; text-align:left;
  padding:1.2rem 0; font-family:'Fraunces',serif; font-size:1rem;
  color:#e8dcbc; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.depth-toggle:hover { color:#fff2c4; }
.depth-chevron { flex-shrink:0; color:var(--gold); font-size:0.65rem; transition:transform 0.22s ease; }
.depth-item.open .depth-chevron { transform:rotate(180deg); }
.depth-body { max-height:0; overflow:hidden; transition:max-height 0.32s ease; }
.depth-item.open .depth-body { max-height:600px; }
.depth-body p { padding-bottom:1.2rem; margin:0; font-size:0.95rem; max-width:64ch; }

/* ── Mobile ── */
@media(max-width:640px){
  .section { padding:4rem 1.2rem; }
  .visual-slot { padding:3rem 1.2rem; }
  h2 { font-size:clamp(1.5rem,6vw,2.1rem); }
  p.lead { font-size:1.05rem; }
  .fund-grid { grid-template-columns:1fr; }
}



/* ── Bottom edit bar ── */
#edit-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(10, 8, 5, 0.98);
  border-top: 1px solid rgba(232, 184, 96, 0.25);
  backdrop-filter: blur(16px);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  transform: translateY(calc(100% - 2.6rem));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
#edit-bar.open { transform: translateY(0); }

#edit-bar-tab {
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(232, 184, 96, 0.0);
  transition: border-color 0.2s ease;
}
#edit-bar.open #edit-bar-tab { border-bottom-color: rgba(232, 184, 96, 0.15); }
#edit-bar-tab:hover .tab-label { color: #fff2c4; }
.tab-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.15s ease;
}
.tab-arrow {
  font-size: 0.55rem;
  color: rgba(232, 184, 96, 0.5);
  transition: transform 0.35s ease;
}
#edit-bar.open .tab-arrow { transform: rotate(180deg); }

#edit-bar-body {
  padding: 1.2rem 1.5rem 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-height: 420px;
  overflow-y: auto;
}
@media(max-width: 700px) {
  #edit-bar-body { grid-template-columns: 1fr; }
}

.eb-col-title {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 184, 96, 0.5);
  margin: 0 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(232, 184, 96, 0.1);
}

/* Text edit mode */
body.weave-edit-mode [data-editable] {
  outline: 1px dashed rgba(232, 184, 96, 0.3);
  outline-offset: 3px;
  cursor: text;
  border-radius: 2px;
  transition: outline-color 0.15s ease;
}
body.weave-edit-mode [data-editable]:hover { outline-color: rgba(232, 184, 96, 0.7); }
body.weave-edit-mode [data-editable]:focus { outline: 2px solid var(--gold); outline-offset: 3px; background: rgba(232,184,96,0.03); }

.eb-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.eb-toggle-label { font-size: 0.65rem; color: rgba(192,180,154,0.8); letter-spacing: 0.06em; }
.eb-switch {
  position: relative;
  width: 34px; height: 18px;
  flex-shrink: 0;
}
.eb-switch input { opacity: 0; width: 0; height: 0; }
.eb-slider {
  position: absolute; inset: 0;
  background: rgba(232,184,96,0.12);
  border: 1px solid rgba(232,184,96,0.25);
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.eb-slider:before {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  left: 2px; top: 2px;
  background: rgba(232,184,96,0.5);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}
.eb-switch input:checked + .eb-slider { background: rgba(232,184,96,0.2); border-color: var(--gold); }
.eb-switch input:checked + .eb-slider:before { transform: translateX(16px); background: var(--gold); }

/* Vibe sliders */
.eb-slider-row { margin-bottom: 0.8rem; }
.eb-slider-row label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.6rem; color: rgba(192,180,154,0.7); letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.eb-slider-row label span { color: var(--gold); font-size: 0.62rem; }
input[type="range"].eb-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 2px;
  background: rgba(232,184,96,0.2);
  border-radius: 1px; outline: none; cursor: pointer;
}
input[type="range"].eb-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}
input[type="range"].eb-range::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: none;
}

/* Image drop zone */
.eb-drop-zone {
  border: 1px dashed rgba(232,184,96,0.25);
  border-radius: 4px;
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-size: 0.62rem;
  color: rgba(192,180,154,0.5);
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
}
.eb-drop-zone:hover, .eb-drop-zone.drag-over {
  border-color: var(--gold);
  background: rgba(232,184,96,0.04);
  color: rgba(192,180,154,0.8);
}
.eb-drop-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.eb-drop-zone .dz-icon { font-size: 1.4rem; display: block; margin-bottom: 0.4rem; }

.eb-section-list { list-style: none; padding: 0; margin: 0.5rem 0 0; }
.eb-section-list li {
  padding: 0.4rem 0.5rem;
  font-size: 0.62rem;
  color: rgba(192,180,154,0.65);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  letter-spacing: 0.06em;
}
.eb-section-list li:hover { background: rgba(232,184,96,0.08); color: #fff2c4; }

.eb-actions-row { display: flex; gap: 0.5rem; margin-top: 0.8rem; flex-wrap: wrap; }
.eb-btn {
  background: transparent;
  border: 1px solid rgba(232,184,96,0.28);
  color: var(--gold);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.eb-btn:hover { border-color: var(--gold); color: #fff2c4; background: rgba(232,184,96,0.06); }
.eb-btn.primary { background: var(--gold); color: #1a120a; border-color: var(--gold); }
.eb-btn.primary:hover { background: #fff2c4; }
.eb-status {
  margin-top: 0.6rem;
  font-size: 0.58rem;
  color: rgba(192,180,154,0.4);
  letter-spacing: 0.06em;
}


/* ───── Mini-hero for subpages (added by refactor) ─────────── */
.hero.hero--mini {
  min-height: 38vh;
  padding: 0 1.5rem 1rem;
}
.hero.hero--mini #wordmark-svg {
  max-width: min(720px, 80vw);
  height: auto;
}
