:root {
    --deep:       #0a0d12;
    --surface:    #0f1318;
    --card:       #141820;
    --border:     #1e2530;
    --border-hi:  #2a3340;
    --gold:       #c9962a;
    --gold-light: #e8b84a;
    --gold-dim:   #7a5a18;
    --amber:      #d4852a;
    --foam:       #8eb8c4;
    --foam-dim:   #3a6070;
    --rust:       #b85a28;
    --teal:       #2a8090;
    --text:       #d4cec4;
    --text-dim:   #7a7670;
    --text-muted: #4a4840;
    --white:      #f0ece4;
    --red-sea:    #1a3040;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 18px; }
  body {
    background: var(--deep);
    color: var(--text);
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 300;
    line-height: 1.85;
    min-height: 100vh;
    overflow-x: hidden;
  }
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: 0.5;
  }
  #progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light));
    width: 0%; z-index: 999; transition: width 0.1s linear;
  }
  .hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 40%, rgba(26,48,64,.55) 0%, transparent 70%),
      radial-gradient(ellipse 60% 80% at 80% 60%, rgba(10,13,18,.8) 0%, transparent 60%),
      linear-gradient(175deg, #0a1520 0%, #0a0d12 50%, #0d1118 100%);
  }
  .hero-waves { position: absolute; bottom: 0; left: 0; right: 0; height: 300px; overflow: hidden; opacity: 0.08; }
  .wave {
    position: absolute; bottom: 0; left: -50%; width: 200%; height: 180px;
    background: var(--foam); border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    animation: waveMove linear infinite;
  }
  .wave:nth-child(1) { animation-duration: 18s; opacity: .6; }
  .wave:nth-child(2) { animation-duration: 12s; animation-delay: -4s; height: 120px; opacity: .4; }
  .wave:nth-child(3) { animation-duration: 22s; animation-delay: -8s; height: 80px; opacity: .3; }
  @keyframes waveMove {
    0%   { transform: translateX(0) scaleY(1); }
    50%  { transform: translateX(-25%) scaleY(.9); }
    100% { transform: translateX(-50%) scaleY(1); }
  }
  .compass {
    position: absolute; top: 10%; right: 8%; width: 220px; height: 220px;
    opacity: 0.06; animation: compassSpin 60s linear infinite;
  }
  @keyframes compassSpin { to { transform: rotate(360deg); } }
  .hero-content { position: relative; z-index: 2; padding: 0 80px 80px; max-width: 900px; }
  .hero-eyebrow {
    font-family: 'DM Mono', monospace; font-size: .65rem; letter-spacing: .25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold); }
  .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.05; color: var(--white); letter-spacing: -.02em; margin-bottom: 12px; }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: var(--foam); margin-bottom: 40px; font-weight: 400; }
  .hero-meta { display: flex; gap: 40px; flex-wrap: wrap; }
  .hero-stat { display: flex; flex-direction: column; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
  .stat-lbl { font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-dim); margin-top: 4px; }
  .hero-scroll {
    position: absolute; bottom: 40px; right: 80px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); font-family: 'DM Mono', monospace; font-size: .6rem;
    letter-spacing: .2em; text-transform: uppercase;
    animation: scrollPulse 2s ease-in-out infinite; z-index: 2;
  }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold-dim), transparent); }
  @keyframes scrollPulse {
    0%, 100% { opacity: .4; transform: translateY(0); }
    50% { opacity: .9; transform: translateY(6px); }
  }
  .layout { display: grid; grid-template-columns: 260px 1fr; max-width: 1280px; margin: 0 auto; gap: 0; }
  .sidebar {
    position: sticky; top: 0; height: 100vh; overflow-y: auto;
    padding: 60px 30px 60px 40px; border-right: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 0; scrollbar-width: none;
  }
  .sidebar::-webkit-scrollbar { display: none; }
  .nav-brand { font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 40px; display: flex; align-items: center; gap: 10px; }
  .nav-brand::before { content: '◈'; font-size: .8rem; }
  .nav-section-label { font-family: 'DM Mono', monospace; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; margin-top: 32px; }
  .nav-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; cursor: pointer; border: none; background: none; text-align: left; width: 100%; transition: all .2s; position: relative; }
  .nav-item::before { content: ''; position: absolute; left: -30px; top: 50%; transform: translateY(-50%); width: 2px; height: 0; background: var(--gold); transition: height .3s; }
  .nav-item.active::before { height: 80%; }
  .nav-num { font-family: 'DM Mono', monospace; font-size: .6rem; color: var(--gold-dim); min-width: 20px; margin-top: 3px; }
  .nav-item.active .nav-num { color: var(--gold); }
  .nav-text { font-family: 'Source Serif 4', serif; font-size: .85rem; color: var(--text-dim); line-height: 1.4; transition: color .2s; }
  .nav-item:hover .nav-text, .nav-item.active .nav-text { color: var(--white); }
  .nav-divider { height: 1px; background: var(--border); margin: 24px 0; }
  .nav-footer { margin-top: auto; padding-top: 40px; }
  .nav-quote-small { font-family: 'Playfair Display', serif; font-style: italic; font-size: .8rem; color: var(--text-muted); line-height: 1.6; border-left: 2px solid var(--gold-dim); padding-left: 14px; }
  main { padding: 0 80px 120px 80px; }
  .chapter { padding-top: 100px; padding-bottom: 80px; border-bottom: 1px solid var(--border); max-width: 760px; }
  .chapter:last-child { border-bottom: none; }
  .chapter-header { margin-bottom: 60px; }
  .chapter-tag { display: inline-flex; align-items: center; gap: 10px; font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .chapter-tag::after { content: ''; display: block; width: 50px; height: 1px; background: var(--gold-dim); }
  .chapter-num { font-family: 'Playfair Display', serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; color: var(--border-hi); line-height: .85; margin-bottom: -10px; display: block; }
  .chapter-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; color: var(--white); letter-spacing: -.01em; margin-bottom: 10px; }
  .chapter-subtitle { font-family: 'Playfair Display', serif; font-style: italic; color: var(--foam); font-size: 1.05rem; font-weight: 400; }
  .chapter-rule { height: 1px; background: linear-gradient(to right, var(--gold-dim), transparent); margin: 30px 0; width: 120px; }
  .chapter p { font-size: 1.05rem; line-height: 1.9; color: var(--text); margin-bottom: 1.6rem; font-weight: 300; }
  .chapter p:first-of-type::first-letter { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 900; float: left; line-height: .75; margin-right: 12px; margin-top: 8px; color: var(--gold); }
  .chapter p strong { color: var(--white); font-weight: 600; }
  .chapter p em { color: var(--gold-light); font-style: italic; }
  .section-break { display: flex; align-items: center; gap: 20px; margin: 50px 0; color: var(--text-muted); font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .2em; }
  .section-break::before, .section-break::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .pull-quote {
    position: relative; margin: 56px 0; padding: 40px 50px 40px 70px; width: calc(100% + 80px); margin-left: -40px;
    background: linear-gradient(135deg, var(--card), rgba(26,48,64,.3));
    border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; overflow: hidden;
  }
  .pull-quote::before { content: '\201C'; position: absolute; top: -10px; left: 16px; font-family: 'Playfair Display', serif; font-size: 8rem; color: var(--gold-dim); line-height: 1; opacity: .5; }
  .pull-quote::after { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100%; background: linear-gradient(to right, transparent, rgba(26,48,64,.1)); }
  .pull-quote blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 400; color: var(--white); line-height: 1.6; position: relative; z-index: 1; }
  .pull-quote cite { display: block; margin-top: 16px; font-family: 'DM Mono', monospace; font-style: normal; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
  .callout { margin: 48px 0; padding: 32px 36px; border-radius: 6px; position: relative; overflow: hidden; }
  .callout-fact { background: linear-gradient(135deg, rgba(201,150,42,.08), rgba(201,150,42,.03)); border: 1px solid rgba(201,150,42,.2); }
  .callout-fact::before { content: 'KEY FACT'; font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .2em; color: var(--gold); display: block; margin-bottom: 14px; }
  .callout-moment { background: linear-gradient(135deg, rgba(142,184,196,.06), rgba(142,184,196,.02)); border: 1px solid rgba(142,184,196,.15); border-left: 3px solid var(--foam); }
  .callout-moment::before { content: 'THE MOMENT'; font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .2em; color: var(--foam); display: block; margin-bottom: 14px; }
  .callout-warning { background: linear-gradient(135deg, rgba(212,133,42,.07), rgba(212,133,42,.02)); border: 1px solid rgba(212,133,42,.18); border-left: 3px solid var(--amber); }
  .callout-warning::before { content: 'CRITICAL CHALLENGE'; font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .2em; color: var(--amber); display: block; margin-bottom: 14px; }
  .callout-vision { background: linear-gradient(135deg, rgba(201,150,42,.12), rgba(26,48,64,.2)); border: 1px solid rgba(201,150,42,.25); }
  .callout-vision::before { content: 'THE VISION'; font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .2em; color: var(--gold-light); display: block; margin-bottom: 14px; }
  .callout-scene { background: linear-gradient(135deg, rgba(42,128,144,.07), rgba(42,128,144,.02)); border: 1px solid rgba(42,128,144,.18); border-left: 3px solid var(--teal); }
  .callout-scene::before { content: 'THE SCENE'; font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .2em; color: var(--teal); display: block; margin-bottom: 14px; }
  .callout-heroes { background: linear-gradient(135deg, rgba(184,90,40,.07), rgba(184,90,40,.02)); border: 1px solid rgba(184,90,40,.18); border-left: 3px solid var(--rust); }
  .callout-heroes::before { content: 'THE HEROES'; font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .2em; color: var(--rust); display: block; margin-bottom: 14px; }
  .callout p { font-size: .95rem !important; line-height: 1.75 !important; margin-bottom: .8rem !important; color: var(--text) !important; }
  .callout p:last-child { margin-bottom: 0 !important; }
  .callout p::first-letter { all: unset !important; }
  .callout strong { color: var(--white); font-weight: 600; }
  .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin: 48px 0; }
  .stat-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .stat-cell { background: var(--card); padding: 28px 24px; text-align: center; }
  .stat-cell .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
  .stat-cell .label { font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-dim); margin-top: 8px; display: block; }
  .stat-cell .sub { font-size: .8rem; color: var(--text-muted); margin-top: 6px; font-style: italic; }
  .team-list { margin: 40px 0; display: flex; flex-direction: column; gap: 16px; }
  .team-member { display: flex; align-items: flex-start; gap: 20px; padding: 20px 24px; background: var(--card); border: 1px solid var(--border); border-radius: 6px; transition: border-color .2s; }
  .team-member:hover { border-color: var(--gold-dim); }
  .member-initial { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dim), var(--foam-dim)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
  .member-info { flex: 1; }
  .member-name { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--white); font-size: 1rem; margin-bottom: 2px; }
  .member-title { font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .member-desc { font-size: .88rem; color: var(--text-dim); line-height: 1.6; }
  .timeline { margin: 48px 0; position: relative; padding-left: 32px; }
  .timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold-dim), var(--border), transparent); }
  .timeline-event { position: relative; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
  .timeline-event:last-child { border-bottom: none; margin-bottom: 0; }
  .timeline-dot { position: absolute; left: -28px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px var(--deep); }
  .timeline-date { font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .timeline-title { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--white); font-size: 1rem; margin-bottom: 6px; }
  .timeline-desc { font-size: .9rem; color: var(--text-dim); line-height: 1.7; }
  .bridge-quote {
    margin: 72px 0; padding: 72px 80px;
    width: calc(100% + 160px); margin-left: -80px;
    background: linear-gradient(135deg, var(--red-sea), rgba(10,13,18,.95));
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    text-align: center; position: relative; z-index: 0;
  }
  .bridge-quote::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,150,42,.06), transparent); }
  .bridge-quote blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); line-height: 1.5; max-width: 700px; margin: 0 auto 20px; position: relative; z-index: 1; }
  .bridge-quote cite { font-family: 'DM Mono', monospace; font-style: normal; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 12px; }
  .bridge-quote cite::before, .bridge-quote cite::after { content: '—'; color: var(--gold-dim); }
  .chapter-close { display: flex; align-items: center; gap: 20px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }
  .close-line { flex: 1; height: 1px; background: linear-gradient(to right, var(--border), var(--gold-dim), var(--border)); }
  .close-symbol { font-family: 'DM Mono', monospace; font-size: .7rem; color: var(--gold-dim); letter-spacing: .2em; }
  .chapter-transition { padding: 60px 0; text-align: right; opacity: .5; }
  .next-label { font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
  .next-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dim); font-style: italic; }
  /* Workshop cards */
  .workshop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 44px 0; }
  .ws-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color .2s; }
  .ws-card:hover { border-color: var(--gold-dim); }
  .ws-head { padding: 16px 20px 12px; border-bottom: 1px solid var(--border); background: rgba(201,150,42,.04); }
  .ws-num { font-family: 'DM Mono', monospace; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 4px; }
  .ws-location { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
  .ws-date { font-family: 'DM Mono', monospace; font-size: .57rem; color: var(--foam); letter-spacing: .1em; }
  .ws-body { padding: 14px 20px; }
  .ws-desc { font-size: .88rem; color: var(--text-dim); line-height: 1.65; }
  /* ── TRAVEL JOURNAL ── */
  .travel-interlude {
    padding-top: 80px; padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    max-width: 760px;
  }
  .interlude-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: "DM Mono", monospace; font-size: .6rem;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--foam); margin-bottom: 20px;
  }
  .interlude-label::after { content: ""; display: block; width: 50px; height: 1px; background: var(--foam-dim); }
  .interlude-intro {
    font-size: 1.02rem; line-height: 1.9; color: var(--text);
    margin-bottom: 48px; font-weight: 300; font-style: italic;
  }
  .journey-stop {
    display: grid; grid-template-columns: 155px 1fr;
    gap: 0; margin-bottom: 0; position: relative;
  }
  .journey-stop::before {
    content: ""; position: absolute;
    left: 154px; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, var(--gold-dim), var(--border));
  }
  .journey-stop:last-child::before { background: linear-gradient(to bottom, var(--gold-dim), transparent); }
  .js-left {
    padding: 28px 28px 28px 0; text-align: right; position: relative;
  }
  .js-left::after {
    content: ""; position: absolute; right: -5px; top: 34px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 0 3px var(--deep); z-index: 2;
  }
  .js-date {
    font-family: "DM Mono", monospace; font-size: .57rem;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold); line-height: 1.5; display: block;
  }
  .js-location {
    font-family: "Playfair Display", serif; font-size: .78rem;
    color: var(--text-muted); font-style: italic; margin-top: 2px; display: block;
  }
  .js-right {
    padding: 22px 0 22px 32px; border-bottom: 1px solid var(--border);
  }
  .journey-stop:last-child .js-right { border-bottom: none; }
  .js-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: "DM Mono", monospace; font-size: .54rem;
    letter-spacing: .14em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 2px; margin-bottom: 8px;
  }
  .tag-audit   { background: rgba(201,150,42,.1);  color: var(--gold);       border: 1px solid rgba(201,150,42,.2);  }
  .tag-workshop{ background: rgba(142,184,196,.08); color: var(--foam);       border: 1px solid rgba(142,184,196,.15);}
  .tag-industry{ background: rgba(212,133,42,.08); color: var(--amber);      border: 1px solid rgba(212,133,42,.15); }
  .tag-creative{ background: rgba(184,90,40,.08);  color: var(--rust);       border: 1px solid rgba(184,90,40,.15);  }
  .tag-delivery{ background: rgba(42,128,144,.08); color: var(--teal);       border: 1px solid rgba(42,128,144,.15); }
  .tag-sail    { background: rgba(201,150,42,.15); color: var(--gold-light); border: 1px solid rgba(201,150,42,.3);  }
  .js-title {
    font-family: "Playfair Display", serif; font-size: 1rem;
    font-weight: 600; color: var(--white); margin-bottom: 8px;
  }
  .js-body { font-size: .92rem; color: var(--text-dim); line-height: 1.75; }
  .js-body strong { color: var(--white); font-weight: 600; }
  .js-body em { color: var(--gold-light); font-style: italic; }
  /* Beehive block */
  .beehive-block {
    margin: 48px 0; padding: 48px 56px; width: calc(100% + 80px); margin-left: -40px;
    background: linear-gradient(135deg, #0f1a24, #0b0e14);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
  }
  .beehive-block::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(60deg, transparent, transparent 20px, rgba(201,150,42,.012) 20px, rgba(201,150,42,.012) 21px),
                repeating-linear-gradient(-60deg, transparent, transparent 20px, rgba(201,150,42,.012) 20px, rgba(201,150,42,.012) 21px);
    pointer-events: none;
  }
  .beehive-label { font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; position: relative; }
  .beehive-label::after { content: ''; flex: 1; height: 1px; background: rgba(212,133,42,.25); }
  .beehive-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: var(--white); line-height: 1.5; max-width: 580px; position: relative; }
  .beehive-desc { margin-top: 16px; font-size: .92rem; color: var(--text-dim); line-height: 1.75; max-width: 560px; position: relative; }
  /* Epilogue special */
  .epilogue-num { font-family: 'Playfair Display', serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; color: var(--border-hi); line-height: .85; margin-bottom: -10px; display: block; font-style: italic; }
  .by-numbers { margin: 48px 0; padding: 40px; background: var(--card); border: 1px solid var(--border); border-radius: 6px; }
  .by-numbers-label { font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .by-numbers p { font-family: 'Source Serif 4', serif !important; font-size: .95rem !important; color: var(--text-dim) !important; line-height: 2 !important; margin-bottom: 0 !important; }
  .by-numbers p::first-letter { all: unset !important; }
  .by-numbers strong { color: var(--gold-light) !important; }
  #backtop { position: fixed; bottom: 40px; right: 40px; width: 44px; height: 44px; background: var(--card); border: 1px solid var(--border-hi); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gold); font-size: 1rem; opacity: 0; transform: translateY(10px); transition: all .3s; z-index: 900; }
  #backtop.visible { opacity: 1; transform: translateY(0); }
  #backtop:hover { background: var(--gold-dim); border-color: var(--gold); }
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--deep); }
  ::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 2px; }
  @media (max-width: 1024px) {
    .layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    main { padding: 0 40px 80px; }
    .hero-content { padding: 0 40px 60px; }
    .bridge-quote { margin: 48px 0; padding: 48px 40px; width: calc(100% + 80px); margin-left: -40px; }
    .pull-quote { margin: 40px 0; }
    .beehive-block { margin: 40px 0; }
    .workshop-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    main { padding: 0 24px 60px; }
    .hero-content { padding: 0 24px 48px; }
    .bridge-quote { margin: 40px -24px; padding: 40px 24px; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .hero-scroll { display: none; }
  }