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

    :root {
      --bg:         #f8f5ee;
      --bg-raised:  #f0ece0;
      --bg-card:    #faf8f2;
      --border:     rgba(90,120,50,0.18);
      --border-gold:rgba(140,110,20,0.3);
      --gold:       #8a6a18;
      --gold-soft:  #b08a28;
      --green:      #3a6828;
      --green-soft: #4e8038;
      --text:       #1e2818;
      --text-dim:   #405030;
      --text-faint: #708058;
      --bark:       #3a3020;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: "Libre Baskerville", Georgia, serif;
      font-weight: 400;
      line-height: 1.75;
      font-size: 17px;
      max-width: 680px;
      margin: 0 auto;
    }

    /* ── PAGE NAVIGATION ───────────────────────── */
.page-nav {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(640px, calc(100% - 1.5rem));
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  pointer-events: none;
}

.page-nav a {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(250, 249, 246, 0.78);
  border: 1px solid rgba(80, 70, 120, 0.18);
  color: var(--text-dim);
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(30, 28, 40, 0.08);
}

.page-nav a:hover {
  color: var(--gold);
  border-color: var(--gold-soft);
  background: rgba(250, 249, 246, 0.94);
}

@media (max-width: 520px) {
  .page-nav {
    top: 0.65rem;
    width: calc(100% - 1rem);
  }

  .page-nav a {
    font-size: 0.5rem;
    padding: 0.36rem 0.58rem;
  }
}

    /* ── HERO ─────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 440px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      background: var(--bg);
    }

    .hero-light {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 65% 25%, rgba(212,168,32,0.2) 0%, transparent 65%),
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(106,148,72,0.12) 0%, transparent 70%),
        linear-gradient(180deg, #eae5d8 0%, #f0ece0 50%, #f5f2e8 100%);
    }

    .hero-umbel {
      position: absolute;
      top: -10px;
      right: -20px;
      width: 65%;
      height: 90%;
      opacity: 0.72;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 2.8rem 2rem 2.4rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: "DM Mono", monospace;
      font-size: 0.63rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      opacity: 0.9;
      animation: rise 0.7s ease both;
    }

    .badge::before {
      content: "";
      width: 18px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }

    .hero h1 {
      font-family: "Libre Baskerville", Georgia, serif;
      font-weight: 700;
      font-size: clamp(2.6rem, 8.5vw, 3.6rem);
      line-height: 1.0;
      color: var(--bark);
      letter-spacing: -0.015em;
      animation: rise 0.7s 0.1s ease both;
    }

    .hero h1 em {
      display: block;
      color: var(--gold-soft);
      font-style: normal;
    }

    .hero-latin {
      font-family: "Libre Baskerville", serif;
      font-style: italic;
      font-size: 1.05rem;
      color: var(--text-dim);
      margin-top: 0.5rem;
      animation: rise 0.7s 0.2s ease both;
    }

    .hero-tagline {
      margin-top: 1rem;
      font-family: "Outfit", sans-serif;
      font-size: 0.97rem;
      font-weight: 300;
      color: var(--text-dim);
      max-width: 340px;
      line-height: 1.6;
      animation: rise 0.7s 0.3s ease both;
    }

    .season-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 1.2rem;
      background: rgba(138,106,24,0.1);
      border: 1px solid rgba(138,106,24,0.3);
      border-radius: 20px;
      padding: 0.28em 0.85em;
      font-family: "DM Mono", monospace;
      font-size: 0.63rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      animation: rise 0.7s 0.4s ease both;
    }

    .season-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }

    /* ── QUICK FACTS BAND ─────────────────────── */
    .facts-band {
      background: var(--bark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 2rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }

    .fact-item { display: flex; flex-direction: column; gap: 0.2rem; }

    .fact-label {
      font-family: "DM Mono", monospace;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(200,169,110,0.7);
    }

    .fact-value {
      font-family: "Outfit", sans-serif;
      font-size: 0.92rem;
      font-weight: 400;
      color: #e8e0cc;
      line-height: 1.4;
    }

    /* ── SECTIONS ─────────────────────────────── */
    .section {
      padding: 2.4rem 2rem;
      border-bottom: 1px solid var(--border);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .section.visible { opacity: 1; transform: translateY(0); }
    .section:last-of-type { border-bottom: none; }

    .eyebrow {
      font-family: "DM Mono", monospace;
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--green-soft);
      margin-bottom: 0.5rem;
    }

    .section h2 {
      font-family: "Libre Baskerville", Georgia, serif;
      font-size: clamp(1.45rem, 4.5vw, 1.85rem);
      font-weight: 700;
      color: var(--bark);
      margin-bottom: 1.1rem;
      line-height: 1.15;
    }

    .section p {
      font-family: "Outfit", sans-serif;
      font-weight: 300;
      font-size: 1rem;
      color: var(--text-dim);
      margin-bottom: 1rem;
      line-height: 1.75;
    }

    .section p:last-child { margin-bottom: 0; }

    /* Timeline */
    .timeline { margin-top: 1.2rem; display: flex; flex-direction: column; }

    .timeline-row {
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid var(--border);
    }

    .timeline-row:last-child { border-bottom: none; }

    .timeline-season {
      font-family: "DM Mono", monospace;
      font-size: 0.63rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
      width: 90px;
      flex-shrink: 0;
      padding: 0.8rem 0.8rem 0.8rem 0;
      display: flex;
      align-items: center;
    }

    .timeline-bar {
      width: 3px;
      background: var(--border);
      flex-shrink: 0;
      margin: 0.4rem 1rem 0.4rem 0;
      border-radius: 2px;
    }

    .timeline-row.active .timeline-bar { background: var(--gold); }
    .timeline-row.semi .timeline-bar   { background: var(--green-soft); }

    .timeline-text {
      font-family: "Outfit", sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text-dim);
      padding: 0.8rem 0;
      line-height: 1.5;
    }

    /* Umbel card */
    .umbel-card {
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-top: 3px solid var(--gold);
      border-radius: 0 0 6px 6px;
      padding: 1.5rem;
      margin-top: 1.2rem;
    }

    .umbel-card-title {
      font-family: "Libre Baskerville", serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--gold-soft);
      margin-bottom: 0.7rem;
    }

    .umbel-card p {
      font-family: "Outfit", sans-serif;
      font-size: 0.93rem;
      font-weight: 300;
      color: var(--text-dim);
      margin-bottom: 0.7rem;
      line-height: 1.7;
    }

    .umbel-card p:last-child { margin-bottom: 0; }

    /* Insect grid */
    .insect-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
      margin-top: 1rem;
    }

    .insect-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 0.6rem 0.8rem;
    }

    .insect-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      opacity: 0.7;
    }

    .insect-name {
      font-family: "Outfit", sans-serif;
      font-size: 0.88rem;
      font-weight: 400;
      color: var(--text-dim);
    }

    /* Callout */
    .callout {
      border-left: 3px solid var(--gold);
      background: var(--bg-raised);
      padding: 1rem 1.3rem;
      margin: 1.2rem 0;
      border-radius: 0 4px 4px 0;
    }

    .callout p {
      font-family: "Libre Baskerville", serif;
      font-style: italic;
      font-size: 1rem;
      color: var(--bark);
      margin: 0 !important;
      line-height: 1.7;
    }

    /* Care table */
    .care-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    .care-table tr { border-bottom: 1px solid var(--border); }
    .care-table tr:last-child { border-bottom: none; }

    .care-table td {
      padding: 0.75rem 0.4rem;
      vertical-align: top;
      font-family: "Outfit", sans-serif;
    }

    .care-table td:first-child {
      font-family: "DM Mono", monospace;
      font-size: 0.63rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-soft);
      width: 30%;
      padding-top: 0.9rem;
    }

    .care-table td:last-child {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--text-dim);
    }

    /* Companion groups */
    .companion-group { margin-top: 1.4rem; }

    .companion-group-label {
      font-family: "DM Mono", monospace;
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .companion-list { display: flex; flex-direction: column; margin-bottom: 1.4rem; }

    .companion-row {
      display: flex;
      align-items: baseline;
      gap: 0.7rem;
      padding: 0.55rem 0;
      border-bottom: 1px solid var(--border);
    }

    .companion-row:last-child { border-bottom: none; }

    .companion-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 0.5em;
      opacity: 0.5;
    }

    .companion-common {
      font-family: "Outfit", sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text);
    }

    .companion-latin {
      font-style: italic;
      font-family: "Outfit", sans-serif;
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--text-faint);
    }

    /* Story cards */
    .story-card {
      display: flex;
      gap: 1.2rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }

    .story-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    .story-card--highlight {
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-top: 3px solid var(--gold);
      border-radius: 0 0 6px 6px;
      padding: 1.4rem;
      margin-left: -0.2rem;
      margin-right: -0.2rem;
    }

    .story-number {
      font-family: "DM Mono", monospace;
      font-size: 0.72rem;
      font-weight: 500;
      color: rgba(138,106,24,0.3);
      flex-shrink: 0;
      padding-top: 0.25rem;
      min-width: 2rem;
    }

    .story-card--highlight .story-number { color: var(--gold); }

    .story-title {
      font-family: "Libre Baskerville", Georgia, serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--bark);
      margin-bottom: 0.7rem;
      line-height: 1.3;
    }

    .story-body p {
      font-family: "Outfit", sans-serif;
      font-size: 0.97rem;
      font-weight: 300;
      color: var(--text-dim);
      line-height: 1.75;
      margin-bottom: 0.85rem;
    }

    .story-body p:last-child { margin-bottom: 0; }
    .story-body strong { color: var(--gold-soft); font-weight: 500; }
    .story-body em { color: var(--text-faint); font-style: italic; }

    /* Pill list */
    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 0.8rem;
    }

    .pill {
      font-family: "Outfit", sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      padding: 0.28em 0.85em;
      border: 1px solid var(--border);
      border-radius: 3px;
      color: var(--text-faint);
      background: var(--bg-raised);
    }

    /* Footer */
    footer {
      background: var(--bark);
      border-top: 1px solid var(--border);
      padding: 2.2rem 2rem;
      text-align: center;
    }

    footer p {
      font-family: "DM Mono", monospace;
      font-size: 0.64rem;
      letter-spacing: 0.08em;
      color: rgba(200,169,110,0.5);
      line-height: 2;
    }

    footer strong { color: rgba(200,169,110,0.8); font-weight: 500; }
    /* ── BOTANICAL PLATE ──────────────────────── */
    .botanical-plate {
      margin: 0 auto;
      max-width: 460px;
      width: 100%;
      overflow: hidden;
    }

    .botanical-plate img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
      border: 1px solid var(--border);
    }

    .botanical-plate figcaption {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--text-faint, #9a8e78);
      margin-top: 0.7rem;
      text-align: center;
      line-height: 1.6;
    }

    a.companion-link {
      color: inherit;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
      text-decoration-color: currentColor;
      opacity: 0.78;
      transition: opacity 0.18s;
    }

    a.companion-link:hover {
      opacity: 1;
    }

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