/*!
 * Canna Community Germany - Apothecary Almanac
 * Editorial design system, hand-set in Fraunces + Newsreader + Space Mono
 */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Paper */
  --paper: #11150e;
  --paper-1: #161b13;
  --paper-2: #1c2218;
  --paper-3: #232a1e;
  --paper-edge: #0a0d08;
  --paper-cream: #f0e6cb;
  --paper-cream-2: #ddd2b3;

  /* Ink */
  --ink: #f0e6cb;
  --ink-2: #cbc09a;
  --ink-3: #948860;
  --ink-mute: #5e5839;
  --ink-faint: #383420;
  --ink-dark: #1a1505;

  /* Brass */
  --brass: #c89e3e;
  --brass-bright: #e6c264;
  --brass-deep: #8a6b21;
  --brass-shadow: #6b5219;
  --brass-faint: rgba(200, 158, 62, 0.10);
  --brass-soft: rgba(200, 158, 62, 0.22);
  --brass-glow: rgba(230, 194, 100, 0.40);

  /* Botanical */
  --sage: #8da854;
  --sage-deep: #5e7438;
  --sage-soft: rgba(141, 168, 84, 0.12);
  --oxblood: #8a3a2e;

  /* Lines */
  --rule: rgba(200, 158, 62, 0.16);
  --rule-soft: rgba(200, 158, 62, 0.08);
  --rule-strong: rgba(200, 158, 62, 0.30);

  /* Shadows / engraving */
  --sh-emboss: 0 1px 0 rgba(230, 194, 100, 0.10) inset, 0 -1px 0 rgba(0,0,0,0.4) inset, 0 18px 36px -16px rgba(0,0,0,0.8);
  --sh-press: 0 -1px 0 rgba(230, 194, 100, 0.18) inset, 0 1px 2px rgba(0,0,0,0.6) inset;
  --sh-leaf: 0 30px 56px -24px rgba(0,0,0,0.9), 0 0 80px -12px rgba(200,158,62,0.20);

  /* Layout */
  --almanac: 720px;
  --measure: 64ch;
  --container: 1240px;
  --container-wide: 1400px;
  --nav-h: 84px;

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --body: "Newsreader", "Spectral", Georgia, "Times New Roman", serif;
  --mono: "Space Mono", "IBM Plex Mono", "Courier New", monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.32, 0, 0.67, 0);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}
body {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "onum";
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
::selection { background: var(--brass); color: var(--ink-dark); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* Paper atmosphere: vignette + grain */
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,158,62,0.07), transparent 65%),
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(141,168,84,0.04), transparent 70%),
    radial-gradient(ellipse 130% 90% at 50% 50%, transparent 50%, rgba(0,0,0,0.45) 100%);
}
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

main { position: relative; z-index: 1; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.chapter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.chapter::before, .chapter::after {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--rule-strong);
}
.dropcap::first-letter {
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-size: 5.2em;
  float: left;
  line-height: 0.85;
  padding: 4px 14px 0 0;
  color: var(--brass);
  text-shadow: 0 0 24px rgba(230,194,100,0.35);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--ink);
}
em, .italic { font-style: italic; font-family: var(--body); font-variation-settings: "opsz" 36; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  background: linear-gradient(180deg, rgba(17,21,14,0.95) 0%, rgba(17,21,14,0.72) 100%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.nav::after {
  content: ""; position: absolute; bottom: -2px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong) 30%, var(--rule-strong) 70%, transparent);
}
.nav-inner {
  max-width: var(--container-wide); height: 100%;
  margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--rule-strong), 0 4px 16px -4px rgba(0,0,0,0.6);
}
.brand-text {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 17px; letter-spacing: -0.008em;
  color: var(--ink);
  line-height: 1.05;
}
.brand-text small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--brass);
  letter-spacing: 0.28em;
  margin-top: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative; color: var(--ink-2);
  padding: 8px 0;
  transition: color 250ms var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brass-bright); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--brass);
}
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(180deg, var(--brass-bright) 0%, var(--brass) 50%, var(--brass-deep) 100%);
  color: var(--ink-dark);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: var(--sh-emboss);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--brass-bright) inset, 0 -1px 0 rgba(0,0,0,0.4) inset, 0 20px 40px -16px rgba(0,0,0,0.9), 0 0 32px -8px var(--brass-glow); }
.nav-cta:active { box-shadow: var(--sh-press); transform: translateY(0); }

.burger {
  display: none;
  background: transparent; border: 1px solid var(--rule-strong);
  width: 44px; height: 44px;
  border-radius: 2px;
  color: var(--ink-2); cursor: pointer;
  align-items: center; justify-content: center;
}
.burger:hover { color: var(--brass-bright); border-color: var(--brass-deep); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 49;
  background: rgba(17,21,14,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
  padding: 16px 32px 28px;
  display: none;
}
.mobile-menu.open { display: block; animation: slideDown 320ms var(--ease-out); }
.mobile-menu a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--brass); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .nav-cta { display: none; }
}

/* ============================================================
   ORNAMENTS
   ============================================================ */
.fleuron {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  margin: 56px auto;
  color: var(--brass);
  max-width: 480px;
}
.fleuron::before, .fleuron::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong) 50%, transparent);
}
.fleuron svg { width: 28px; height: 28px; opacity: 0.85; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 80px) 32px 80px;
  text-align: center;
  overflow: hidden;
}
.hero-frame {
  max-width: 980px; margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
  opacity: 0; animation: rise 700ms var(--ease-out) 100ms forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; display: block;
  width: 42px; height: 1px;
  background: var(--rule-strong);
}
.hero-medallion-wrap {
  position: relative; display: inline-block;
  margin: 0 auto 48px;
  opacity: 0; animation: rise 900ms var(--ease-out) 200ms forwards;
}
.hero-medallion {
  width: 340px; height: 340px;
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(230,194,100,0.30),
    0 0 0 8px rgba(17,21,14,0.6),
    0 0 0 9px rgba(200,158,62,0.18),
    var(--sh-leaf);
  position: relative;
}
.hero-medallion-wrap::before {
  content: ""; position: absolute; inset: -80px; z-index: -1;
  background: radial-gradient(circle, rgba(200,158,62,0.22), transparent 60%);
  filter: blur(24px);
}
.hero-medallion-wrap::after {
  content: ""; position: absolute; inset: -28px; z-index: -1;
  border: 1px solid var(--rule);
  border-radius: 38px;
  opacity: 0.6;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 auto 28px;
  max-width: 920px;
  opacity: 0; animation: rise 1000ms var(--ease-out) 350ms forwards;
}
.hero h1 .ital {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass-bright);
  font-weight: 300;
}
.hero h1 .small {
  display: block;
  font-size: 0.4em;
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 100;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0;
}
.hero-lead {
  font-family: var(--body);
  font-size: clamp(17px, 1.5vw, 21px);
  font-style: italic;
  font-variation-settings: "opsz" 36;
  color: var(--ink-2);
  max-width: 580px; margin: 0 auto 42px;
  line-height: 1.55;
  opacity: 0; animation: rise 1000ms var(--ease-out) 500ms forwards;
}
.hero-cta {
  display: inline-flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  opacity: 0; animation: rise 1000ms var(--ease-out) 650ms forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 56px) 32px 72px;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(200,158,62,0.10), transparent 70%),
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(141,168,84,0.07), transparent 70%);
  display: grid;
  grid-template-columns: 1.4fr 320px;
  grid-template-rows: auto auto auto auto;
  gap: 0 64px;
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.page-hero::after {
  content: ""; position: absolute; bottom: -1px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-deep) 30%, var(--brass-deep) 70%, transparent);
}
.page-hero > .medallion-sm {
  grid-column: 2; grid-row: 1 / span 4;
  width: 100%; max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin: 0;
  justify-self: end;
  box-shadow:
    0 0 0 1px rgba(230,194,100,0.32),
    0 0 0 6px rgba(17,21,14,0.7),
    0 0 0 7px rgba(200,158,62,0.18),
    0 32px 64px -20px rgba(0,0,0,0.85),
    0 0 80px -10px rgba(200,158,62,0.30);
}
.page-hero > .chapter { grid-column: 1; grid-row: 1; }
.page-hero > h1 { grid-column: 1; grid-row: 2; }
.page-hero > p { grid-column: 1; grid-row: 3; }
.page-hero > .folio { grid-column: 1; grid-row: 4; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin: 14px 0 22px;
  max-width: 720px;
}
.page-hero h1 .ital {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass-bright);
  font-weight: 300;
}
.page-hero p {
  font-family: var(--body);
  font-style: italic;
  font-variation-settings: "opsz" 36;
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 620px;
  margin: 0;
}
.page-hero .chapter {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  color: var(--leaf-h);
  letter-spacing: 0.28em;
  text-transform: lowercase;
  padding: 7px 14px;
  background: rgba(141, 168, 84, 0.10);
  border: 1px solid rgba(141, 168, 84, 0.28);
  border-radius: 2px;
  width: fit-content;
  margin: 0;
}
.page-hero .chapter::before,
.page-hero .chapter::after { display: none; }
.page-hero .folio { margin: 24px 0 0; }
@media (max-width: 880px) {
  .page-hero {
    grid-template-columns: 1fr;
    gap: 24px 0;
    padding: calc(var(--nav-h) + 32px) 24px 48px;
    text-align: center;
  }
  .page-hero > .medallion-sm {
    grid-column: 1; grid-row: 1;
    max-width: 180px; justify-self: center;
  }
  .page-hero > .chapter { grid-row: 2; margin: 0 auto; }
  .page-hero > h1 { grid-row: 3; margin: 0 auto; }
  .page-hero > p { grid-row: 4; margin: 0 auto; }
  .page-hero > .folio { grid-row: 5; margin: 0 auto; justify-content: center; }
}

/* Breadcrumb / folio */
.folio {
  display: inline-flex; gap: 12px; align-items: center;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.folio a { color: var(--ink-2); transition: color 200ms; }
.folio a:hover { color: var(--brass); }
.folio .dot { color: var(--brass); }
.folio .here { color: var(--brass); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer; border: none;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(180deg, var(--brass-bright) 0%, var(--brass) 50%, var(--brass-deep) 100%);
  color: var(--ink-dark);
  box-shadow: var(--sh-emboss);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--brass-bright) inset, 0 -1px 0 rgba(0,0,0,0.4) inset, 0 24px 48px -16px rgba(0,0,0,0.9), 0 0 40px -8px var(--brass-glow); }
.btn-primary:active { box-shadow: var(--sh-press); transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule-strong);
}
.btn-ghost:hover { background: var(--paper-2); border-color: var(--brass-deep); color: var(--brass-bright); }

/* ============================================================
   SECTIONS
   ============================================================ */
section.cb { position: relative; z-index: 1; padding: 96px 32px; }
section.cb-tight { padding: 64px 32px; }
.container { max-width: var(--container); margin: 0 auto; }
.almanac { max-width: var(--almanac); margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.04;
}
.section-head h2 .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.section-head .lead {
  font-family: var(--body);
  font-style: italic;
  font-variation-settings: "opsz" 36;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 580px; margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   PROSE (almanac body)
   ============================================================ */
.prose { font-family: var(--body); font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.prose > * + * { margin-top: 22px; }
.prose h2 {
  color: var(--ink);
  font-size: 36px; font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 20;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 56px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 40px 0 8px;
}
.prose p { color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--paper-cream); font-style: italic; font-variation-settings: "opsz" 36; }
.prose a {
  color: var(--brass-bright);
  border-bottom: 1px solid var(--brass-deep);
  text-underline-offset: 4px;
  transition: color 200ms, border-color 200ms;
}
.prose a:hover { color: var(--brass-bright); border-bottom-color: var(--brass); }
.prose ul, .prose ol { padding-left: 28px; }
.prose ul li { list-style: none; position: relative; margin-bottom: 10px; }
.prose ul li::before {
  content: "❦"; position: absolute; left: -24px; top: 0;
  color: var(--brass); font-size: 13px;
}
.prose ol { list-style: none; counter-reset: olist; }
.prose ol li { counter-increment: olist; position: relative; margin-bottom: 10px; padding-left: 6px; }
.prose ol li::before {
  content: counter(olist, lower-roman) ".";
  position: absolute; left: -32px; top: 0;
  color: var(--brass); font-family: var(--mono);
  font-size: 13px; width: 28px; text-align: right;
}
.prose blockquote {
  border-left: 2px solid var(--brass);
  padding: 20px 28px;
  margin: 36px 0;
  background: rgba(200,158,62,0.06);
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  font-size: 20px;
  color: var(--paper-cream);
  position: relative;
}
.prose blockquote::before {
  content: "\201C";
  position: absolute; top: -8px; left: 8px;
  font-family: var(--serif); font-size: 60px;
  color: var(--brass); opacity: 0.4;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============================================================
   PILLAR CARDS (home pillars)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 1100px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  padding: 44px 32px 40px;
  border-right: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(22,27,19,0.4) 0%, transparent 100%);
  transition: background 400ms var(--ease);
}
.pillar:last-child { border-right: none; }
@media (max-width: 1100px) {
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 600px) {
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: none; }
}
.pillar:hover {
  background: linear-gradient(180deg, rgba(200,158,62,0.06) 0%, transparent 100%);
}
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.22em;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.pillar-num::after { content: ""; flex: 1; height: 1px; background: var(--rule-strong); }
.pillar-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--brass);
  background: var(--brass-faint);
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 {
  font-size: 24px; font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  letter-spacing: -0.012em;
  margin-bottom: 12px;
}
.pillar p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.pillar-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  transition: color 200ms, gap 200ms;
}
.pillar-link::after { content: "→"; transition: transform 200ms var(--ease); }
.pillar:hover .pillar-link { color: var(--brass-bright); }
.pillar:hover .pillar-link::after { transform: translateX(4px); }

/* ============================================================
   MANIFESTO (home)
   ============================================================ */
.manifesto {
  background: linear-gradient(180deg, var(--paper-1) 0%, var(--paper) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.manifesto::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(141,168,84,0.06), transparent 75%);
}
.manifesto-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 960px) { .manifesto-grid { grid-template-columns: 1fr; gap: 56px; } }
.manifesto h2 {
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  letter-spacing: -0.022em;
  line-height: 1.02;
  margin-bottom: 32px;
}
.manifesto h2 .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.manifesto p {
  font-family: var(--body);
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.manifesto-tenets {
  padding: 40px;
  background: rgba(17,21,14,0.6);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
}
.manifesto-tenets::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid var(--rule-soft); pointer-events: none;
}
.manifesto-tenets h3 {
  font-family: var(--mono);
  font-size: 11px; color: var(--brass);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 24px; text-align: center;
}
.tenets { display: flex; flex-direction: column; }
.tenet {
  display: grid; grid-template-columns: 44px 1fr; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--rule-soft);
}
.tenet:first-child { border-top: none; }
.tenet-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brass);
  letter-spacing: 0.1em;
  padding-top: 3px;
}
.tenet strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tenet span {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============================================================
   STATS (ledger style)
   ============================================================ */
.ledger {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: rgba(17,21,14,0.6);
}
@media (max-width: 700px) { .ledger { grid-template-columns: repeat(2, 1fr); } }
.ledger > div {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.ledger > div:last-child { border-right: none; }
@media (max-width: 700px) {
  .ledger > div:nth-child(2) { border-right: none; }
  .ledger > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
.ledger .value {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: 44px;
  color: var(--brass-bright);
  letter-spacing: -0.025em;
  line-height: 1; margin-bottom: 6px;
}
.ledger .label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { padding: 100px 32px; position: relative; z-index: 1; }
.cta-frame {
  max-width: 920px; margin: 0 auto;
  padding: 64px 56px; text-align: center;
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  background:
    radial-gradient(ellipse at center top, rgba(200,158,62,0.10), transparent 70%),
    linear-gradient(180deg, var(--paper-1), var(--paper));
  position: relative;
  box-shadow: var(--sh-leaf);
}
.cta-frame::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid var(--rule); pointer-events: none;
}
.cta-frame::after {
  content: ""; position: absolute; top: -1px; left: 25%; right: 25%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.cta-frame h2 {
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin-bottom: 22px;
}
.cta-frame h2 .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.cta-frame p {
  font-family: var(--body);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px; margin: 0 auto 36px;
  line-height: 1.55;
}

/* ============================================================
   CSC PAGE
   ============================================================ */
.csc-board {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1000px) { .csc-board { grid-template-columns: 1fr; } }

.csc-map-frame {
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  padding: 8px;
  background: var(--paper-1);
  position: relative;
  box-shadow: var(--sh-leaf);
}
.csc-map-frame::before {
  content: ""; position: absolute; inset: 1px;
  border: 1px solid var(--rule); pointer-events: none;
  border-radius: 3px;
}
.csc-map {
  height: 560px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.csc-attribution {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.csc-side {
  padding: 32px 28px;
  background: var(--paper-1);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
}
.csc-side::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid var(--rule-soft); pointer-events: none;
}
.csc-side h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 40;
  letter-spacing: -0.012em;
  margin-bottom: 6px;
  text-align: center;
}
.csc-side > h3 + p {
  text-align: center;
  font-family: var(--body); font-style: italic;
  font-size: 14.5px; color: var(--ink-2);
  margin-bottom: 24px; line-height: 1.5;
}

/* Forms */
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--brass);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.field input, .field textarea, .field select {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 200ms, background 200ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--paper-3);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-msg {
  font-family: var(--mono); font-size: 11px;
  padding: 12px 14px; border-radius: 2px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--rule);
}
.form-msg.ok { color: var(--sage); background: var(--sage-soft); border-color: rgba(141,168,84,0.30); }
.form-msg.err { color: var(--oxblood); background: rgba(138,58,46,0.10); border-color: rgba(138,58,46,0.30); }

/* CSC filter */
.csc-index {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 24px;
  justify-content: center;
}
.csc-index button {
  padding: 7px 14px;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 200ms var(--ease);
}
.csc-index button:hover { color: var(--brass-bright); border-color: var(--brass-deep); }
.csc-index button.active {
  background: var(--brass);
  color: var(--ink-dark);
  border-color: var(--brass);
  font-weight: 700;
}

/* CSC list as index */
.csc-list { display: flex; flex-direction: column; }
.csc-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--rule-soft);
  transition: background 200ms;
}
.csc-row:first-child { border-top: none; }
.csc-row:hover { background: rgba(200,158,62,0.04); }
.csc-num {
  font-family: var(--mono); font-size: 12px;
  color: var(--brass);
  letter-spacing: 0.1em;
}
.csc-info strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.csc-info span {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink-2);
  font-style: italic;
}
.csc-tag {
  font-family: var(--mono); font-size: 10px;
  color: var(--brass);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  white-space: nowrap;
}

/* Leaflet marker style override */
.leaflet-container { background: #1a2218 !important; font-family: var(--mono) !important; }
.leaflet-popup-content-wrapper {
  background: var(--paper-1) !important;
  color: var(--ink) !important;
  border: 1px solid var(--rule-strong) !important;
  border-radius: 2px !important;
  font-family: var(--body) !important;
}
.leaflet-popup-content {
  margin: 14px 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.leaflet-popup-tip { background: var(--paper-1) !important; }
.leaflet-popup-content strong { font-family: var(--serif); font-size: 16px; color: var(--brass-bright); font-variation-settings: "opsz" 24; }
.leaflet-control-attribution {
  background: rgba(17,21,14,0.85) !important;
  color: var(--ink-3) !important;
  font-family: var(--mono) !important;
  font-size: 9px !important;
  padding: 3px 8px !important;
}
.leaflet-control-attribution a { color: var(--brass) !important; }
.leaflet-control-zoom a {
  background: var(--paper-1) !important;
  color: var(--brass) !important;
  border-color: var(--rule-strong) !important;
  font-family: var(--serif) !important;
}

/* ============================================================
   PARTNER CARDS
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 920px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .partners-grid { grid-template-columns: 1fr; } }
.partner-card {
  background: var(--paper);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: background 300ms var(--ease);
}
.partner-card:hover { background: var(--paper-1); }
.partner-insignia {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brass-faint);
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  color: var(--brass);
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.partner-card h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  letter-spacing: -0.01em;
}
.partner-card p {
  font-family: var(--body); font-size: 15px;
  color: var(--ink-2); line-height: 1.55;
  flex: 1;
}
.code-rail {
  display: flex; align-items: stretch;
  border: 1px dashed var(--rule-strong);
  border-radius: 2px;
  overflow: hidden;
}
.code-rail .label {
  padding: 8px 10px;
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--paper-1);
  border-right: 1px dashed var(--rule);
  display: flex; align-items: center;
}
.code-rail code {
  flex: 1;
  padding: 8px 12px;
  font-family: var(--mono); font-size: 13px;
  color: var(--brass-bright);
  font-weight: 700; letter-spacing: 0.04em;
  display: flex; align-items: center;
}
.code-rail .copy {
  padding: 8px 14px;
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  color: var(--ink-dark);
  border: none; cursor: pointer;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 200ms;
}
.code-rail .copy:hover { background: linear-gradient(180deg, var(--brass-bright), var(--brass-bright)); }
.code-rail .copy.done { background: var(--sage); color: #0a0d08; }

/* ============================================================
   NEWS
   ============================================================ */
.chronik { display: flex; flex-direction: column; }
.chronik-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--rule-soft);
  transition: background 200ms;
}
.chronik-item:hover { background: rgba(200,158,62,0.03); }
@media (max-width: 720px) { .chronik-item { grid-template-columns: 1fr; gap: 16px; } }
.chronik-meta {
  font-family: var(--mono); font-size: 10px;
  color: var(--brass);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.chronik-meta .date { color: var(--ink-3); margin-right: 14px; }
.chronik-title {
  font-family: var(--serif);
  font-size: 32px; font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  line-height: 1.1; letter-spacing: -0.018em;
  margin-bottom: 14px;
  color: var(--ink);
}
.chronik-title em { font-style: italic; font-variation-settings: "opsz" 72, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.chronik-body { font-family: var(--body); font-size: 17px; color: var(--ink-2); line-height: 1.65; max-width: 60ch; }

/* ============================================================
   WISSEN — chapters
   ============================================================ */
.chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 960px) { .chapters { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .chapters { grid-template-columns: 1fr; } }
.chap {
  padding: 44px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 300ms var(--ease);
}
.chap:hover { background: rgba(200,158,62,0.04); }
.chap:nth-child(3n) { border-right: none; }
@media (max-width: 960px) {
  .chap { border-right: 1px solid var(--rule); }
  .chap:nth-child(3n) { border-right: 1px solid var(--rule); }
  .chap:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .chap { border-right: none; }
}
.chap-roman {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  font-size: 56px;
  color: var(--brass);
  line-height: 1; margin-bottom: 16px;
  opacity: 0.85;
}
.chap h3 {
  font-family: var(--serif);
  font-size: 24px; font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  letter-spacing: -0.012em;
  margin-bottom: 12px;
}
.chap p {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============================================================
   COMMUNITY SPACES
   ============================================================ */
.spaces {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .spaces { grid-template-columns: 1fr; } }
.space {
  padding: 36px 32px;
  background: var(--paper-1);
  border: 1px solid var(--rule);
  border-radius: 2px;
  display: flex; gap: 24px;
  transition: border-color 300ms, transform 300ms;
}
.space:hover { border-color: var(--brass-deep); transform: translateY(-3px); }
.space-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brass-faint);
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  color: var(--brass);
}
.space h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.space p { font-family: var(--body); font-size: 15.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  margin-top: 80px;
  padding: 80px 32px 32px;
  background: var(--paper-edge);
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 1;
}
.footer-fleuron { display: none; }
.footer-leaf {
  display: flex; justify-content: center;
  color: var(--leaf);
  margin-bottom: 56px;
  opacity: 0.85;
}
.footer-leaf .leaf-svg {
  width: 48px; height: 52px;
  filter: drop-shadow(0 0 16px rgba(141, 168, 84, 0.30));
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img { width: 56px; height: 56px; border-radius: 8px; box-shadow: 0 0 0 1px var(--rule-strong); }
.footer-brand strong {
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 18px; letter-spacing: -0.01em;
  color: var(--ink); display: block;
}
.footer-brand small {
  display: block; margin-top: 8px;
  font-family: var(--body); font-style: italic;
  font-size: 14px; color: var(--ink-2);
  line-height: 1.55; max-width: 260px;
}
.footer-col h4 {
  font-family: var(--mono); font-size: 10px;
  color: var(--brass); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--body); font-size: 15px;
  color: var(--ink-2); transition: color 200ms;
}
.footer-col a:hover { color: var(--brass-bright); }
.footer-bottom {
  max-width: var(--container); margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px; color: var(--ink-3);
  letter-spacing: 0.18em; text-transform: uppercase;
}
@media (max-width: 560px) { .footer-bottom { flex-direction: column; } }

/* ============================================================
   AGE GATE MODAL
   ============================================================ */
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 13, 8, 0.96);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 400ms var(--ease);
}
.age-gate.show { opacity: 1; pointer-events: auto; }
.age-frame {
  max-width: 460px; width: 100%;
  padding: 56px 40px;
  background: linear-gradient(180deg, var(--paper-1), var(--paper));
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  text-align: center;
  position: relative;
  box-shadow: var(--sh-leaf);
  transform: scale(0.96);
  transition: transform 400ms var(--ease);
}
.age-gate.show .age-frame { transform: scale(1); }
.age-frame::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid var(--rule); pointer-events: none;
}
.age-frame img {
  width: 84px; height: 84px;
  border-radius: 10px;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 1px var(--rule-strong), 0 0 32px -4px rgba(200,158,62,0.4);
}
.age-frame h2 {
  font-family: var(--serif);
  font-size: 30px; font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.age-frame h2 em { font-style: italic; font-variation-settings: "opsz" 72, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.age-frame p {
  font-family: var(--body); font-style: italic;
  font-size: 15px; color: var(--ink-2);
  margin-bottom: 28px; line-height: 1.55;
}
.age-actions { display: flex; gap: 14px; justify-content: center; }
.age-deny {
  font-family: var(--mono); font-size: 11px;
  background: transparent; color: var(--ink-3);
  border: 1px solid var(--rule); padding: 14px 22px;
  cursor: pointer; border-radius: 2px;
  letter-spacing: 0.22em; text-transform: uppercase;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  z-index: 80; max-width: 720px; margin: 0 auto;
  padding: 18px 22px;
  background: rgba(17, 21, 14, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  display: none;
  align-items: center; gap: 20px;
  font-family: var(--body); font-size: 14px;
  color: var(--ink-2);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.8);
}
.cookie.show { display: flex; }
.cookie span { flex: 1; }
.cookie a { color: var(--brass); border-bottom: 1px solid var(--brass-deep); }
.cookie button {
  padding: 8px 18px;
  background: var(--brass); color: var(--ink-dark);
  border: none; cursor: pointer; border-radius: 2px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
@media (max-width: 600px) {
  .cookie { flex-direction: column; align-items: flex-start; bottom: 12px; left: 12px; right: 12px; padding: 14px 16px; }
  .cookie button { width: 100%; padding: 10px; }
}

/* ============================================================
   TOAST (success / error)
   ============================================================ */
.toast {
  position: fixed; top: calc(var(--nav-h) + 24px); left: 50%; z-index: 90;
  transform: translateX(-50%) translateY(-20px);
  padding: 14px 22px;
  background: var(--paper-1);
  border: 1px solid var(--brass-deep);
  border-radius: 2px;
  font-family: var(--mono); font-size: 11px;
  color: var(--brass-bright);
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; pointer-events: none;
  transition: all 300ms var(--ease);
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.8);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.err { border-color: var(--oxblood); color: var(--oxblood); }

/* ============================================================
   CANNABIS LEAF + DIVIDER
   ============================================================ */
.leaf-svg { display: block; }
.leaf-divider {
  display: flex; align-items: center;
  gap: 24px;
  max-width: 540px;
  margin: 64px auto;
  color: var(--leaf);
  padding: 0 32px;
}
.leaf-divider hr {
  flex: 1; border: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong) 50%, transparent);
}
.leaf-divider .leaf-svg {
  width: 38px; height: 42px;
  filter: drop-shadow(0 0 12px rgba(141, 168, 84, 0.35));
}

.hero-leaf {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--leaf);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}
.hero-leaf .leaf-svg { width: 220px; height: 240px; }
.hero-leaf-l { left: -240px; transform: translateY(-50%) rotate(-22deg); }
.hero-leaf-r { right: -240px; transform: translateY(-50%) rotate(22deg); }
@media (max-width: 900px) { .hero-leaf { display: none; } }

.pillar-icon-leaf { color: var(--leaf) !important; background: var(--leaf-soft) !important; }
.pillar-icon-leaf .leaf-svg { width: 28px; height: 28px; }

.cta-leaf {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  color: var(--brass);
  width: 36px; height: 36px;
  opacity: 0.85;
}
.cta-leaf .leaf-svg { width: 36px; height: 36px; }

/* ============================================================
   STRAIN KOMPASS
   ============================================================ */
.strains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) { .strains { grid-template-columns: 1fr; } }
.strain {
  position: relative;
  padding: 36px 30px 32px;
  background: linear-gradient(180deg, var(--paper-1) 0%, var(--paper) 100%);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: var(--sh-card);
  overflow: hidden;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.strain:hover { transform: translateY(-4px); border-color: var(--brass-deep); box-shadow: var(--sh-pop); }
.strain-flag {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.strain-indica .strain-flag { background: linear-gradient(90deg, #5e7438, #8da854, #5e7438); }
.strain-sativa .strain-flag { background: linear-gradient(90deg, #c89e3e, #e6c264, #c89e3e); }
.strain-hybrid .strain-flag { background: linear-gradient(90deg, #5e7438, #c89e3e, #5e7438); }
.strain-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass);
  padding: 5px 12px;
  background: var(--brass-faint);
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  margin-bottom: 20px;
}
.strain-indica .strain-tag { color: var(--leaf-h); background: var(--leaf-soft); border-color: rgba(141,168,84,0.30); }
.strain h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.strain h3 .ital { font-style: italic; font-variation-settings: "opsz" 72, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.strain p {
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.strain p em { color: var(--brass-bright); font-style: italic; }
.strain-row {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 12px;
}
.strain-row:first-of-type { border-top: 1px solid var(--rule); }
.strain-row span {
  color: var(--ink-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.strain-row strong {
  color: var(--brass-bright); font-weight: 400;
  font-family: var(--body); font-style: italic;
  font-size: 13.5px;
}

/* ============================================================
   THREAD CARDS (from WhatsApp groups)
   ============================================================ */
.threads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .threads { grid-template-columns: 1fr; } }
.thread {
  padding: 24px 26px;
  background: var(--paper-1);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--leaf);
  border-radius: 0 4px 4px 0;
  transition: border-color 250ms var(--ease), background 250ms var(--ease);
}
.thread:hover { background: var(--paper-2); border-left-color: var(--leaf-h); }
.thread-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.thread-grp { color: var(--leaf); font-weight: 700; }
.thread-time { color: var(--ink-3); }
.thread-msg {
  font-family: var(--body);
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  font-size: 17px;
  color: var(--paper-cream);
  line-height: 1.55;
  margin-bottom: 14px;
}
.thread-meta {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
}
.thread-cta {
  text-align: center; margin-top: 40px;
}

/* ============================================================
   CSC TEASER
   ============================================================ */
.csc-teaser {
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(141, 168, 84, 0.08), transparent 70%),
    linear-gradient(180deg, var(--paper-1), var(--paper));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.csc-teaser-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .csc-teaser-grid { grid-template-columns: 1fr; gap: 40px; } }
.csc-teaser h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  letter-spacing: -0.022em;
  line-height: 1.04;
  margin-bottom: 22px;
}
.csc-teaser h2 .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.csc-teaser p {
  font-family: var(--body); font-size: 17px;
  color: var(--ink-2); line-height: 1.65;
  margin-bottom: 32px;
}
.csc-stat-row {
  display: flex; gap: 36px; margin-bottom: 36px;
  flex-wrap: wrap;
}
.csc-stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 40px;
  color: var(--brass-bright);
  letter-spacing: -0.025em;
  line-height: 1;
}
.csc-stat span {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.22em;
  text-transform: uppercase;
}
.csc-cities {
  background: rgba(17, 21, 14, 0.6);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px 32px;
  position: relative;
}
.csc-cities::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid var(--rule-soft); pointer-events: none;
}
.csc-cities-label {
  font-family: var(--mono); font-size: 10px;
  color: var(--brass); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.csc-cities ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.csc-cities li {
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.csc-cities span {
  color: var(--brass); font-family: var(--mono);
  font-size: 13px;
}
.csc-cities li:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-soft);
}
.csc-cities li::after {
  content: "";
  flex: 1;
}
.csc-cities li::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 8px var(--leaf-glow);
}

/* ============================================================
   NEWS TEASER
   ============================================================ */
.news-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .news-teaser { grid-template-columns: 1fr; } }
.ntcard {
  padding: 28px 26px;
  background: var(--paper-1);
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.ntcard:hover { transform: translateY(-4px); border-color: var(--brass-deep); }
.ntcard-meta {
  font-family: var(--mono); font-size: 10px;
  color: var(--brass); letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ntcard-meta span { color: var(--ink-3); margin-right: 8px; }
.ntcard h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ntcard p {
  font-family: var(--body); font-size: 15px;
  color: var(--ink-2); line-height: 1.55;
  flex: 1;
}

/* ============================================================
   ANATOMY HOME — § I COVER
   ============================================================ */
.paragraph-marker {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  font-size: 48px;
  color: var(--brass);
  line-height: 0.9;
  margin-bottom: 8px;
  opacity: 0.9;
}
.hero-cover {
  padding: calc(var(--nav-h) + 60px) 0 0;
  text-align: left;
  max-width: var(--container-wide);
  margin: 0 auto;
  overflow: visible;
}
.cover-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 32px 48px 80px;
  align-items: center;
}
@media (max-width: 920px) { .cover-grid { grid-template-columns: 1fr; padding: 24px 28px 56px; gap: 48px; } }
.cover-left { max-width: 620px; }
.cover-h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 20px 0 28px;
  color: var(--ink);
}
.cover-h1 .ital {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass-bright);
  font-weight: 300;
}
.cover-lead {
  font-family: var(--body);
  font-size: 19px; font-style: italic;
  font-variation-settings: "opsz" 36;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 480px;
}
.cover-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.cover-foot {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cover-foot-label { color: var(--brass); }
.cover-foot-dot { margin: 0 12px; color: var(--ink-mute); }
.cover-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.cover-wappen {
  width: 100%; max-width: 460px;
  aspect-ratio: 1/1; object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(230,194,100,0.32),
    0 0 0 10px rgba(17,21,14,0.5),
    0 0 0 11px rgba(200,158,62,0.20),
    0 60px 120px -32px rgba(0,0,0,0.85),
    0 0 100px -16px rgba(200,158,62,0.40);
}
.cover-tag {
  position: absolute; bottom: -22px; right: 24px;
  background: var(--paper-edge);
  border: 1px solid var(--brass-deep);
  padding: 14px 22px;
  border-radius: 4px;
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.6);
}
.cover-tag em {
  display: block;
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  color: var(--brass-bright);
  font-size: 18px;
}
.cover-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--brass-deep) 30%, var(--brass-deep) 70%, transparent 95%);
  margin: 0 8%;
}

/* ============================================================
   § II — GROW PHASES
   ============================================================ */
.phases {
  padding: 88px 28px;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(141,168,84,0.04) 50%, transparent);
}
.phases-head {
  max-width: var(--container); margin: 0 auto 48px;
  display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.phases-head .paragraph-marker { margin-bottom: 0; }
.phases-head .eyebrow { margin-bottom: 4px; }
.phases-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.022em;
  line-height: 1;
  margin-left: auto;
}
.phases-title .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.phases-strip {
  max-width: var(--container-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
@media (max-width: 1100px) {
  .phases-strip { grid-template-columns: repeat(4, 1fr); }
  .phases-strip .phase:nth-child(4) { border-right: none; }
  .phases-strip .phase:nth-child(-n+4) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 600px) {
  .phases-strip { grid-template-columns: repeat(2, 1fr); }
  .phases-strip .phase:nth-child(2n) { border-right: none; }
}
.phase {
  padding: 24px 18px 28px;
  border-right: 1px solid var(--rule);
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(141,168,84,calc(var(--p) * 0.012)) 100%);
  transition: background 300ms var(--ease);
}
.phase:last-child { border-right: none; }
.phase:hover { background: rgba(200,158,62,0.06); }
.phase-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--brass);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.phase-name {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.phase-detail {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.4;
  font-style: italic;
  font-variation-settings: "opsz" 18;
}

/* ============================================================
   § III — VINYL RACK (strain library)
   ============================================================ */
.cluster {
  padding: 100px 28px;
  position: relative; z-index: 1;
}
.cluster-head {
  max-width: var(--container); margin: 0 auto 56px;
}
.cluster-head .paragraph-marker { margin-bottom: 6px; }
.cluster-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 14px 0 14px;
}
.cluster-title .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.cluster-sub {
  font-family: var(--body); font-style: italic;
  font-variation-settings: "opsz" 36;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 580px;
}
.vinyl-rack {
  max-width: var(--container-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .vinyl-rack { grid-template-columns: 1fr; } }
.vinyl {
  display: grid;
  grid-template-columns: 80px 1fr;
  background: linear-gradient(180deg, var(--paper-1), var(--paper));
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-card);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.vinyl:hover { transform: translateY(-4px); box-shadow: var(--sh-pop); }
.vinyl-side {
  background: var(--paper-edge);
  border-right: 1px solid var(--rule-strong);
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 0 24px;
  position: relative;
}
.vinyl-side::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: -1px; width: 1px;
  background: var(--brass);
  opacity: 0.4;
}
.vinyl-indica .vinyl-side { background: linear-gradient(180deg, #1a2418, var(--paper-edge)); }
.vinyl-indica .vinyl-side::after { background: var(--leaf); }
.vinyl-sativa .vinyl-side { background: linear-gradient(180deg, #2a2418, var(--paper-edge)); }
.vinyl-hybrid .vinyl-side { background: linear-gradient(180deg, #221f14, var(--paper-edge)); }
.vinyl-side-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: 36px;
  color: var(--brass-bright);
  letter-spacing: -0.02em;
  margin-bottom: auto;
}
.vinyl-indica .vinyl-side-label { color: var(--leaf-h); }
.vinyl-grooves {
  display: flex; flex-direction: column; gap: 4px;
  width: 36px;
  margin-bottom: 6px;
}
.vinyl-grooves span {
  display: block; height: 1px;
  background: var(--rule-strong);
}
.vinyl-body { padding: 28px 28px 26px; }
.vinyl-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px;
  padding: 7px 0;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 11px;
}
.vinyl-meta:first-child { border-top: none; }
.vinyl-meta span {
  color: var(--ink-3); letter-spacing: 0.18em;
  text-transform: uppercase;
}
.vinyl-meta strong {
  color: var(--brass-bright); font-weight: 400;
  font-family: var(--body); font-style: italic;
  font-variation-settings: "opsz" 18;
  font-size: 13.5px;
  text-align: right;
}
.vinyl-body h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.015em;
  margin: 22px 0 10px;
  line-height: 1.1;
}
.vinyl-body h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  color: var(--brass-bright);
  font-weight: 300;
}
.vinyl-body p {
  font-family: var(--body); font-size: 14.5px;
  color: var(--ink-2); line-height: 1.55;
}

/* ============================================================
   § IV — TRICHOME (cannabinoids + terpenes)
   ============================================================ */
.trichome {
  padding: 120px 28px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(141,168,84,0.06), transparent 70%),
    linear-gradient(180deg, var(--paper-1), var(--paper));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.trichome-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  color: var(--leaf);
  pointer-events: none;
  z-index: 0;
}
.trichome > * { position: relative; z-index: 1; }
.trichome-head {
  max-width: 760px; margin: 0 auto 64px;
  text-align: center;
}
.trichome-head .paragraph-marker { margin-bottom: 6px; }
.trichome-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 14px 0;
}
.trichome-title .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.trichome-sub {
  font-family: var(--body); font-style: italic;
  font-size: 18px; color: var(--ink-2);
  font-variation-settings: "opsz" 36;
  max-width: 540px; margin: 0 auto;
  line-height: 1.55;
}
.cannabinoid-strip {
  max-width: var(--container); margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 900px) { .cannabinoid-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cannabinoid-strip { grid-template-columns: 1fr; } }
.cn-card {
  background: var(--paper-1);
  padding: 28px 22px;
  text-align: center;
  transition: background 300ms var(--ease);
}
.cn-card:hover { background: var(--paper-2); }
.cn-glyph {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  font-size: 56px;
  color: var(--brass-bright);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.cn-name {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cn-effect {
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--ink-2);
  font-style: italic;
  font-variation-settings: "opsz" 24;
  line-height: 1.45;
}
.terpene-wheel {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .terpene-wheel { grid-template-columns: 1fr; gap: 32px; } }
.tw-head h3 {
  font-family: var(--serif);
  font-size: 40px; font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.022em;
  line-height: 1; margin-top: 12px;
}
.tw-head h3 .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.tw-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--rule); }
@media (max-width: 600px) { .tw-list { grid-template-columns: 1fr; } }
.tw-list li {
  display: grid;
  grid-template-columns: 14px 130px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--rule-soft);
}
.tw-list li:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
@media (max-width: 600px) { .tw-list li:nth-child(odd) { border-right: none; } }
.tw-dot {
  width: 14px; height: 14px; border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}
.tw-list strong {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 18px;
  color: var(--ink); letter-spacing: -0.01em;
}
.tw-list em {
  font-family: var(--body); font-style: italic;
  font-variation-settings: "opsz" 24;
  font-size: 13.5px; color: var(--ink-2);
  line-height: 1.4;
}

/* ============================================================
   § V — FANLEAF (wissen)
   ============================================================ */
.fanleaf {
  padding: 100px 28px;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(141,168,84,0.04));
}
.fanleaf-head {
  max-width: var(--container); margin: 0 auto 64px;
  text-align: center;
}
.fanleaf-head .paragraph-marker { margin-bottom: 6px; }
.fanleaf-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-top: 14px;
}
.fanleaf-title .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.fanleaf-fan {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1100px) { .fanleaf-fan { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .fanleaf-fan { grid-template-columns: 1fr; } }
.leaflet {
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 14px 28px;
  background: var(--paper-1);
  text-align: center;
  position: relative;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.leaflet:hover { background: var(--paper-2); transform: translateY(-2px); }
.leaflet::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--leaf);
  opacity: 0.85;
}
.leaflet-num {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  font-size: 42px;
  color: var(--leaf);
  line-height: 1;
  margin-bottom: 14px;
}
.leaflet strong {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  display: block;
}
.leaflet em {
  font-family: var(--body); font-style: italic;
  font-size: 12.5px; color: var(--ink-3);
  font-variation-settings: "opsz" 18;
  line-height: 1.45;
}

/* ============================================================
   § VI — STEM (timeline)
   ============================================================ */
.stem {
  padding: 100px 28px;
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-1) 100%);
  border-top: 1px solid var(--rule);
}
.stem-head {
  max-width: var(--container-narrow); margin: 0 auto 56px;
  text-align: center;
}
.stem-head .paragraph-marker { margin-bottom: 6px; }
.stem-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.022em;
  line-height: 1.02;
  margin-top: 14px;
}
.stem-title .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.stem-spine {
  max-width: 760px; margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.stem-line {
  position: absolute;
  top: 0; bottom: 0; left: 12px;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--leaf) 12%, var(--brass) 88%, transparent 100%);
}
.stem-node {
  position: relative;
  padding: 24px 28px;
  margin-bottom: 24px;
  background: var(--paper-1);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
.stem-node:hover { border-color: var(--brass-deep); transform: translateX(4px); }
.stem-node-dot {
  position: absolute;
  left: -34px; top: 32px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--leaf);
  border: 2px solid var(--paper);
  box-shadow: 0 0 16px var(--leaf-glow);
}
.stem-node:nth-child(odd) .stem-node-dot { background: var(--brass); box-shadow: 0 0 16px var(--brass-glow); }
.stem-node-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.stem-node-grp { color: var(--brass); font-weight: 700; }
.stem-node-time { color: var(--ink-3); }
.stem-node p {
  font-family: var(--body); font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  font-size: 17px;
  color: var(--paper-cream);
  line-height: 1.55;
  margin-bottom: 12px;
}
.stem-node-foot {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.14em;
}
.stem-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   § VII — ROOTS
   ============================================================ */
.roots {
  padding: 120px 28px;
  position: relative;
  background: linear-gradient(180deg, var(--paper-1) 0%, #1a1f15 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.roots-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1000px) { .roots-grid { grid-template-columns: 1fr; gap: 48px; } }
.roots-text .paragraph-marker { margin-bottom: 6px; }
.roots-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.022em;
  line-height: 1.02;
  margin: 14px 0 24px;
}
.roots-title .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.roots-text p {
  font-family: var(--body); font-size: 17px;
  color: var(--ink-2); line-height: 1.65;
  margin-bottom: 32px;
}
.roots-stat-row { display: flex; gap: 36px; margin-bottom: 36px; flex-wrap: wrap; }
.roots-stat strong {
  display: block;
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 40px;
  color: var(--brass-bright);
  letter-spacing: -0.025em; line-height: 1;
}
.roots-stat span {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.22em;
  text-transform: uppercase;
}
.roots-vis {
  position: relative;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.root-trunk {
  position: absolute;
  top: 0; bottom: 30%;
  left: 50%; transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(180deg, var(--brass) 0%, var(--brass-deep) 80%, transparent);
}
.root-soil {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(110,80,40,0.5) 100%),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(200,158,62,0.05) 12px 13px);
  border-top: 1px dashed var(--brass-deep);
}
.root-branch {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, var(--brass-deep), transparent);
  bottom: 30%;
  left: 50%;
  transform-origin: 0 0;
}
.root-branch::after {
  content: "";
  position: absolute;
  right: -6px; top: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass-bright);
  box-shadow: 0 0 10px var(--brass-glow);
}
.root-branch span {
  position: absolute;
  top: -8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.root-branch-1 { width: 180px; transform: rotate(20deg); }
.root-branch-1 span { right: 10px; top: -22px; }
.root-branch-2 { width: 220px; transform: rotate(40deg); }
.root-branch-2 span { right: 10px; top: 8px; }
.root-branch-3 { width: 200px; transform: rotate(65deg); }
.root-branch-3 span { right: 10px; top: 8px; }
.root-branch-4 { width: 240px; transform: rotate(100deg); }
.root-branch-4 span { right: 10px; top: 8px; }
.root-branch-5 { width: 200px; transform: rotate(125deg); }
.root-branch-5 span { left: 18px; top: 8px; transform: rotate(180deg); }
.root-branch-6 { width: 220px; transform: rotate(150deg); }
.root-branch-6 span { left: 18px; top: 8px; transform: rotate(180deg); }
.root-branch-7 { width: 180px; transform: rotate(170deg); }
.root-branch-7 span { left: 18px; top: -22px; transform: rotate(180deg); }
.root-branch-8 { width: 160px; transform: rotate(0deg); }
.root-branch-8 span { right: 0; top: -20px; }

@media (max-width: 600px) { .roots-vis { height: 320px; transform: scale(0.7); } }

/* ============================================================
   § VIII — EARTH (manifesto + cta)
   ============================================================ */
.earth {
  padding: 120px 28px;
  background: linear-gradient(180deg, #1a1f15 0%, #0d100a 100%);
  position: relative;
  text-align: center;
}
.earth-frame {
  max-width: 780px; margin: 0 auto;
  padding: 64px 48px;
  background: rgba(17,21,14,0.85);
  border: 1px solid var(--brass-deep);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 60px 100px -28px rgba(0,0,0,0.9);
}
.earth-frame::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid var(--rule); pointer-events: none;
}
.earth-frame::after {
  content: ""; position: absolute; top: -1px; left: 25%; right: 25%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.earth-frame .paragraph-marker { margin-bottom: 8px; }
.earth-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.022em;
  line-height: 1.02;
  margin-top: 14px;
  margin-bottom: 32px;
}
.earth-title .ital { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--brass-bright); font-weight: 300; }
.earth-quote {
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  color: var(--paper-cream);
  line-height: 1.5;
  border: none;
  background: none;
  max-width: 580px; margin: 0 auto 28px;
  padding: 0;
  position: relative;
}
.earth-quote::before, .earth-quote::after {
  display: none;
}
.earth-frame > p {
  font-family: var(--body); font-style: italic;
  font-size: 17px; color: var(--ink-2);
  max-width: 540px; margin: 0 auto 36px;
  line-height: 1.55;
}
.earth-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BENTO FUTURE — HOME
   ============================================================ */
.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  color: var(--leaf-h);
  letter-spacing: 0.28em;
  text-transform: lowercase;
  padding: 6px 12px;
  border: 1px solid rgba(141, 168, 84, 0.30);
  border-radius: 2px;
  background: rgba(141, 168, 84, 0.06);
  margin-bottom: 16px;
}
.hl {
  background: linear-gradient(180deg, #f0e6cb 0%, #c89e3e 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
}

/* TICKER */
.ticker {
  position: relative; z-index: 2;
  margin-top: var(--nav-h);
  display: flex; align-items: stretch;
  background: linear-gradient(180deg, rgba(141,168,84,0.06), rgba(141,168,84,0.02));
  border-top: 1px solid rgba(141,168,84,0.18);
  border-bottom: 1px solid rgba(141,168,84,0.18);
  overflow: hidden;
  height: 38px;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 18px;
  display: flex; align-items: center;
  background: var(--leaf);
  color: var(--ink-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  position: relative;
}
.ticker-label::after {
  content: ""; position: absolute; right: -1px; top: 0; bottom: 0; width: 1px;
  background: var(--leaf-h);
}
.ticker-label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-dark);
  margin-right: 8px;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex; align-items: center;
  position: relative;
}
.ticker-run {
  display: flex; align-items: center;
  gap: 22px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  padding-left: 22px;
  animation: ticker-run 50s linear infinite;
}
.ticker-run b {
  color: var(--brass-bright); font-weight: 700;
  font-family: var(--mono);
}
.ticker-run .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}
@keyframes ticker-run {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* BENTO HERO */
.bento-hero {
  padding: 56px 28px 80px;
  position: relative;
  overflow: hidden;
}
.bento-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(141,168,84,0.10), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200,158,62,0.10), transparent 55%);
  pointer-events: none;
}
.bento {
  max-width: var(--container-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 14px;
  position: relative;
}
.tile {
  background: linear-gradient(180deg, rgba(22,28,20,0.78), rgba(17,21,14,0.62));
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
.tile::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(230,194,100,0.18), transparent 40%, transparent 60%, rgba(141,168,84,0.15)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.tile:hover { transform: translateY(-2px); border-color: var(--brass-deep); }

.tile-main { grid-column: span 4; grid-row: span 3; padding: 44px 48px; display: flex; flex-direction: column; }
.tile-wappen { grid-column: span 2; grid-row: span 3; padding: 0; overflow: hidden; position: relative; }
.tile-wappen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile-wappen-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass-bright);
  background: rgba(10,13,8,0.88);
  padding: 6px 12px; border-radius: 4px;
  border: 1px solid var(--brass-deep);
}
.tile-wappen-tag em { font-style: italic; font-family: var(--serif); font-variation-settings: "opsz" 18, "SOFT" 100; }

.tile-live { grid-column: span 2; }
.tile-csc { grid-column: span 2; }
.tile-phase { grid-column: span 2; }

@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .tile-main { grid-column: span 4; grid-row: span 2; }
  .tile-wappen { grid-column: span 4; grid-row: span 2; min-height: 280px; }
  .tile-live, .tile-csc, .tile-phase { grid-column: span 2; }
  .tile-phase { grid-column: span 4; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .tile, .tile-main, .tile-wappen, .tile-live, .tile-csc, .tile-phase {
    grid-column: span 1;
  }
  .tile-main { padding: 32px 28px; }
}

.tile-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  color: var(--leaf-h); letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(141,168,84,0.10);
  border: 1px solid rgba(141,168,84,0.25);
  border-radius: 2px;
  margin-bottom: 26px;
  width: fit-content;
}
.tile-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 80px);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 22px;
}
.tile-h1 .hl {
  background: linear-gradient(135deg, #e6c264 0%, #8da854 70%, #5e7438 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tile-lead {
  font-family: var(--body); font-size: 18px;
  color: var(--ink-2); line-height: 1.55;
  max-width: 460px;
  margin-bottom: 28px;
  flex: 1;
}
.tile-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.tile-label {
  font-family: var(--mono); font-size: 10px;
  color: var(--leaf-h); letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tile-bignum {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 64px;
  color: var(--brass-bright);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 6px;
}
.tile-sub {
  font-family: var(--body); font-size: 13.5px;
  color: var(--ink-3); font-style: italic;
}
.pulse-dot {
  position: absolute; top: 22px; right: 24px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 12px var(--leaf-glow);
  animation: pulse 1.6s ease-in-out infinite;
}

.tile-csc-name {
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.tile-csc-meta {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.tile-link {
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  color: var(--brass-bright);
  letter-spacing: 0.22em; text-transform: uppercase;
  border-bottom: 1px solid var(--brass-deep);
  padding-bottom: 2px;
}

.phase-bar {
  display: flex; gap: 0;
  background: rgba(10,13,8,0.55);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  font-family: var(--mono);
}
.phase-step {
  flex: 1;
  padding: 11px 8px;
  font-size: 10.5px;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-right: 1px solid var(--rule);
  position: relative;
}
.phase-step:last-child { border-right: none; }
.phase-step.done { color: var(--ink-3); }
.phase-step.done::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--brass-deep);
}
.phase-step.active {
  color: var(--brass-bright);
  background: rgba(200,158,62,0.10);
  font-weight: 700;
}
.phase-step.active::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--brass-bright);
  box-shadow: 0 0 12px var(--brass-glow);
}
.phase-step em {
  display: block;
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 18, "SOFT" 100;
  font-size: 11px;
  color: var(--brass);
  margin-top: 2px;
}

/* STRAIN SELECTOR */
.strain-select {
  padding: 100px 28px;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.strain-select-head { text-align: center; margin-bottom: 48px; }
.strain-select-head h2,
.network-head h2,
.feed-head h2,
.pixel-head h2,
.enter-frame h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 8px 0;
  color: var(--ink);
}
.strain-pads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
@media (max-width: 800px) { .strain-pads { grid-template-columns: 1fr; } }
.pad {
  position: relative;
  text-align: left;
  background: linear-gradient(180deg, rgba(22,28,20,0.85), rgba(17,21,14,0.78));
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 28px 22px;
  cursor: pointer;
  color: var(--ink);
  transition: all 250ms var(--ease);
  overflow: hidden;
}
.pad-edge {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--leaf), transparent);
  opacity: 0.5;
}
.pad-indica .pad-edge { background: linear-gradient(90deg, transparent, #8da854, #5e7438, #8da854, transparent); }
.pad-sativa .pad-edge { background: linear-gradient(90deg, transparent, #e6c264, #c89e3e, #e6c264, transparent); }
.pad-hybrid .pad-edge { background: linear-gradient(90deg, transparent, #8da854, #c89e3e, #8da854, transparent); }
.pad:hover { transform: translateY(-3px); border-color: var(--brass-deep); box-shadow: 0 24px 48px -20px rgba(0,0,0,0.8); }
.pad.active {
  border-color: var(--brass);
  background: linear-gradient(180deg, rgba(30,38,26,0.92), rgba(22,28,20,0.86));
  box-shadow: 0 0 0 1px var(--brass-deep), 0 24px 48px -16px rgba(0,0,0,0.85), 0 0 40px -8px var(--brass-glow);
}
.pad-name {
  font-family: var(--serif);
  font-size: 38px; font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-style: italic;
  letter-spacing: -0.025em;
  color: var(--brass-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.pad-tagline {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.pad-bars { display: flex; flex-direction: column; gap: 8px; }
.pad-bar {
  display: grid; grid-template-columns: 52px 1fr; align-items: center;
  gap: 12px;
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pad-meter {
  height: 6px;
  background: rgba(10,13,8,0.5);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.pad-meter i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--leaf), var(--brass));
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(200,158,62,0.4);
}

.strain-readout {
  padding: 28px 32px;
  background: rgba(10,13,8,0.6);
  border: 1px dashed var(--rule-strong);
  border-radius: 8px;
  opacity: 0.55;
  transition: opacity 300ms var(--ease), border-color 300ms var(--ease);
}
.strain-readout.live { opacity: 1; border-style: solid; border-color: var(--brass-deep); background: rgba(22,28,20,0.78); }
.readout-header {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.readout-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.24em;
  text-transform: uppercase;
}
.readout-name {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 70;
  font-style: italic;
  font-size: 28px;
  color: var(--brass-bright);
  letter-spacing: -0.02em;
}
.readout-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 800px) { .readout-grid { grid-template-columns: 1fr 1fr; } }
.readout-cell {
  padding: 10px 16px;
  border-right: 1px solid var(--rule);
}
.readout-cell:last-child { border-right: none; }
@media (max-width: 800px) {
  .readout-cell { border-right: none; border-bottom: 1px solid var(--rule); padding: 12px 8px; }
}
.readout-cell span {
  display: block;
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.readout-cell strong {
  font-family: var(--body); font-size: 14px;
  color: var(--ink); font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

/* NETWORK */
.network {
  padding: 100px 28px;
  background: linear-gradient(180deg, transparent, rgba(141,168,84,0.04));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.network-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.network-head p {
  font-family: var(--body); font-style: italic;
  font-size: 17px; color: var(--ink-2);
  margin-top: 14px;
}
.network-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 900px) { .network-grid { grid-template-columns: 1fr; } }
.nodes {
  position: relative;
  aspect-ratio: 3/4;
  background:
    linear-gradient(180deg, rgba(141,168,84,0.04), rgba(17,21,14,0.4)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(200,158,62,0.04) 28px 29px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(200,158,62,0.04) 28px 29px);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.net-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  color: var(--brass-deep);
}
.node {
  position: absolute;
  top: var(--y); left: var(--x);
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.node-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brass-bright);
  box-shadow: 0 0 16px var(--brass-glow), 0 0 0 4px rgba(200,158,62,0.08);
  position: relative;
}
.node-dot::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--brass-deep);
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.6); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.node:nth-child(odd) .node-dot { background: var(--leaf-h); box-shadow: 0 0 16px var(--leaf-glow), 0 0 0 4px rgba(141,168,84,0.08); }
.node:nth-child(odd) .node-dot::after { border-color: var(--sage-deep); }
.node-lbl {
  font-family: var(--mono); font-size: 10px;
  color: var(--brass-bright); letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(10,13,8,0.6);
  padding: 2px 6px;
  border-radius: 2px;
}
.net-side { display: flex; flex-direction: column; gap: 12px; }
.net-cell {
  padding: 24px 26px;
  background: linear-gradient(180deg, rgba(22,28,20,0.78), rgba(17,21,14,0.62));
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.net-key {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.24em;
  text-transform: uppercase;
}
.net-val {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 56px;
  color: var(--brass-bright);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 8px 0 4px;
}
.net-val small {
  font-family: var(--mono); font-size: 14px;
  color: var(--ink-3); font-weight: 400;
  letter-spacing: 0.05em;
}
.net-cap {
  font-family: var(--body); font-size: 13px;
  color: var(--ink-2); font-style: italic;
}
.net-go {
  margin-top: auto;
  padding: 14px 22px; text-align: center;
  background: linear-gradient(180deg, var(--brass-bright), var(--brass) 50%, var(--brass-deep));
  color: var(--ink-dark);
  border-radius: 6px;
  font-family: var(--mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: var(--sh-emboss);
  transition: transform 200ms var(--ease);
}
.net-go:hover { transform: translateY(-1px); }

/* FEED */
.feed {
  padding: 100px 28px;
}
.feed-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.feed-head p {
  font-family: var(--body); font-style: italic;
  font-size: 16px; color: var(--ink-2); margin-top: 14px;
}
.feed-stream {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 14px;
}
.msg {
  padding: 22px 26px;
  background: linear-gradient(180deg, rgba(22,28,20,0.78), rgba(17,21,14,0.62));
  border: 1px solid var(--rule);
  border-radius: 12px;
  border-left: 3px solid var(--leaf);
  transition: border-color 200ms, transform 200ms;
}
.msg:nth-child(even) { border-left-color: var(--brass); }
.msg:hover { transform: translateX(6px); }
.msg-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.msg-grp { color: var(--leaf-h); font-weight: 700; }
.msg:nth-child(even) .msg-grp { color: var(--brass-bright); }
.msg-time { color: var(--ink-3); }
.msg p {
  font-family: var(--body); font-style: italic;
  font-variation-settings: "opsz" 36;
  font-size: 17px;
  color: var(--paper-cream);
  line-height: 1.5;
  margin-bottom: 10px;
}
.msg-foot {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.14em;
}
.msg-foot span { color: var(--brass-bright); }
.feed-cta { text-align: center; margin-top: 40px; }

/* PIXEL GRID */
.pixel { padding: 100px 28px; }
.pixel-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.pixel-head p { font-family: var(--body); font-style: italic; font-size: 16px; color: var(--ink-2); margin-top: 14px; }
.pixel-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) { .pixel-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .pixel-grid { grid-template-columns: repeat(2, 1fr); } }
.pix-feat {
  border-color: var(--brass-deep);
  position: relative;
}
.pix-feat::after {
  content: "★"; position: absolute; top: 6px; right: 8px;
  font-size: 11px; color: var(--brass);
}
.pix {
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, rgba(22,28,20,0.85), rgba(17,21,14,0.7));
  border: 1px solid var(--rule);
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  transition: all 250ms var(--ease);
  text-align: center;
  padding: 12px;
}
.pix span {
  font-family: var(--serif); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  font-size: 44px;
  color: var(--brass-bright);
  letter-spacing: -0.025em;
  line-height: 1;
}
.pix img {
  width: 70%; max-height: 60%;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 6px;
  transition: transform 250ms var(--ease);
}
.pix:hover img { transform: scale(1.05); }
.pix em {
  font-family: var(--mono); font-size: 9px;
  color: var(--ink-3); letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.3;
}
.pix:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
  background: linear-gradient(180deg, rgba(30,38,26,0.92), rgba(22,28,20,0.78));
  box-shadow: 0 0 0 1px var(--brass-deep), 0 18px 36px -16px rgba(0,0,0,0.8), 0 0 32px -8px var(--brass-glow);
}
.pix:hover em { color: var(--brass); }
.pix-plus { border-style: dashed; }
.pix-plus span { color: var(--leaf-h); }

/* ENTER */
.enter {
  padding: 100px 28px 140px;
  background: linear-gradient(180deg, transparent, rgba(141,168,84,0.04));
}
.enter-frame {
  max-width: 760px; margin: 0 auto;
  padding: 64px 56px;
  background: linear-gradient(180deg, rgba(22,28,20,0.95), rgba(10,13,8,0.95));
  border: 1px solid var(--brass-deep);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 60px 120px -32px rgba(0,0,0,0.9), 0 0 0 1px rgba(230,194,100,0.10);
}
.enter-frame::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid var(--rule); border-radius: 8px;
  pointer-events: none;
}
.enter-frame::after {
  content: "";
  position: absolute; top: -200%; left: -50%; right: -50%; bottom: -200%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 90deg, rgba(141,168,84,0.06) 100deg, transparent 110deg, transparent 360deg);
  animation: enter-spin 12s linear infinite;
  pointer-events: none;
}
@keyframes enter-spin {
  to { transform: rotate(360deg); }
}
.enter-frame > * { position: relative; z-index: 1; }
.enter-tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--leaf-h); letter-spacing: 0.32em;
  text-transform: lowercase;
  margin-bottom: 24px;
  padding: 8px 14px;
  display: inline-block;
  border: 1px solid rgba(141,168,84,0.30);
  border-radius: 2px;
  background: rgba(141,168,84,0.06);
}
.enter-frame p {
  font-family: var(--body); font-style: italic;
  font-size: 18px; color: var(--ink-2);
  max-width: 540px; margin: 0 auto 32px;
  line-height: 1.55;
}
.enter-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.enter-foot {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.22em;
  text-transform: uppercase;
}
.enter-foot span:nth-child(2n) { color: var(--brass); margin: 0 14px; }

/* ============================================================
   PARTNER BOARD — real cards
   ============================================================ */
.partner-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .partner-board { grid-template-columns: 1fr; } }
.pcard {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: linear-gradient(180deg, rgba(22,28,20,0.85), rgba(17,21,14,0.7));
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
  position: relative;
}
.pcard-featured {
  grid-column: 1 / -1;
  grid-template-columns: 280px 1fr;
  border-color: var(--brass-deep);
  box-shadow: 0 0 0 1px var(--brass-deep), 0 24px 48px -20px rgba(0,0,0,0.85);
}
.pcard-featured::after {
  content: "Featured Partner";
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--ink-dark); background: var(--brass-bright);
  padding: 5px 10px; border-radius: 2px;
  letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 2;
}
.pcard-featured .pcard-body h3 { font-size: 28px; }
@media (max-width: 700px) {
  .pcard-featured { grid-template-columns: 1fr; }
  .pcard-featured::after { top: 8px; right: 8px; font-size: 9px; padding: 4px 8px; }
}
.pcard:hover {
  transform: translateY(-3px);
  border-color: var(--brass-deep);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.85);
}
@media (max-width: 700px) { .pcard { grid-template-columns: 1fr; } }
.pcard-logo {
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--rule);
}
@media (max-width: 700px) {
  .pcard-logo { border-right: none; border-bottom: 1px solid var(--rule); }
}
.pcard-logo img {
  max-width: 100%; max-height: 140px;
  width: auto; height: auto;
  object-fit: contain;
}
.pcard-body {
  padding: 26px 28px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.pcard-body h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.pcard-body p {
  font-family: var(--body); font-size: 14.5px;
  color: var(--ink-2); line-height: 1.55;
  flex: 1;
}
.pcard-foot {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 6px;
}
.pcard-code {
  display: flex; align-items: stretch;
  border: 1px dashed var(--rule-strong);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(10,13,8,0.4);
}
.pcard-code span {
  padding: 8px 12px;
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(10,13,8,0.5);
  border-right: 1px dashed var(--rule);
  display: flex; align-items: center;
}
.pcard-code code {
  flex: 1; padding: 8px 12px;
  font-family: var(--mono); font-size: 13px;
  font-weight: 700; color: var(--brass-bright);
  letter-spacing: 0.04em;
  display: flex; align-items: center;
}
.pcard-code .copy {
  padding: 8px 14px;
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  color: var(--ink-dark); border: none; cursor: pointer;
  font-family: var(--mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pcard-code .copy:hover { background: linear-gradient(180deg, var(--brass-bright), var(--brass-bright)); }
.pcard-code .copy.done { background: var(--leaf); color: #0a0d08; }
.pcard-nocode em {
  flex: 1; padding: 8px 12px;
  font-family: var(--body); font-style: italic;
  font-size: 13px; color: var(--ink-3);
}
.pcard-go {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 16px;
  background: rgba(10,13,8,0.5);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  font-family: var(--mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-bright);
  transition: all 200ms var(--ease);
}
.pcard-go:hover {
  background: var(--brass);
  color: var(--ink-dark);
  border-color: var(--brass);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] { opacity: 1; transform: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.center { text-align: center; }
.spacer { height: 64px; }
.spacer-lg { height: 120px; }
