/* ============================================================
   mysterious.quest -- Field Journal of Enigmas
   Botanical aesthetic, modular-blocks layout, muted-vintage
   ============================================================ */

:root {
    /* Muted-vintage palette from DESIGN.md */
    --field-journal: #E8DCC8;
    --specimen-ink: #2A2820;
    --botanical: #4A7858;
    --copper: #A87840;
    --marble: #F0EDE4;
    --cabinet: #5A4A38;
    --teal: #3A7878;

    /* Derived */
    --ink-soft: rgba(42, 40, 32, 0.72);
    --ink-faint: rgba(42, 40, 32, 0.42);
    --copper-soft: rgba(168, 120, 64, 0.32);
    --cabinet-soft: rgba(90, 74, 56, 0.28);
    --botanical-soft: rgba(74, 120, 88, 0.25);

    /* Typography */
    --f-cond: "Barlow Condensed", "Inter", system-ui, sans-serif;
    --f-serif: "Merriweather", "Lora", Georgia, serif;

    /* Grid */
    --col-w: 300px;
    --col-gap: 16px;
    --pad: 12px;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--field-journal);
    color: var(--specimen-ink);
    font-family: var(--f-serif);
    font-size: 15px;
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
}

/* ============================================================
   FIELD JOURNAL COVER
   ============================================================ */

.cover {
    position: relative;
    min-height: 100vh;
    background: var(--field-journal);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6vh 5vw;
    isolation: isolate;
}

/* Leather grain via layered gradients */
.cover__leather {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(90, 74, 56, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 70%, rgba(168, 120, 64, 0.06) 0%, transparent 55%),
        repeating-linear-gradient(
            32deg,
            rgba(90, 74, 56, 0.03) 0px,
            rgba(90, 74, 56, 0.03) 1px,
            transparent 1px,
            transparent 4px
        ),
        repeating-linear-gradient(
            -28deg,
            rgba(42, 40, 32, 0.025) 0px,
            rgba(42, 40, 32, 0.025) 1px,
            transparent 1px,
            transparent 6px
        );
    pointer-events: none;
}

.cover__noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 24%, rgba(90, 74, 56, 0.18) 0.5px, transparent 1.2px),
        radial-gradient(circle at 38% 62%, rgba(168, 120, 64, 0.14) 0.4px, transparent 1px),
        radial-gradient(circle at 71% 18%, rgba(42, 40, 32, 0.16) 0.5px, transparent 1.2px),
        radial-gradient(circle at 88% 84%, rgba(90, 74, 56, 0.12) 0.4px, transparent 1px),
        radial-gradient(circle at 55% 92%, rgba(168, 120, 64, 0.12) 0.4px, transparent 1px);
    background-size: 220px 220px, 180px 180px, 240px 240px, 200px 200px, 260px 260px;
}

.cover__tendril {
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(46vw, 520px);
    height: min(46vw, 520px);
    z-index: 1;
    pointer-events: none;
}

.cover__tendril path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}

.cover__tendril.is-grown #tendrilMain { animation: tendrilGrow 1800ms ease-out 200ms forwards; }
.cover__tendril.is-grown #tendrilB1 { animation: tendrilGrow 700ms ease-out 1000ms forwards; }
.cover__tendril.is-grown #tendrilB2 { animation: tendrilGrow 700ms ease-out 1300ms forwards; }
.cover__tendril.is-grown #tendrilB3 { animation: tendrilGrow 700ms ease-out 1500ms forwards; }
.cover__tendril.is-grown #tendrilB4 { animation: tendrilGrow 700ms ease-out 1700ms forwards; }

@keyframes tendrilGrow {
    to { stroke-dashoffset: 0; }
}

.cover__leaf-tip {
    opacity: 0;
    animation: leafFade 600ms ease-out 2000ms forwards;
}
@keyframes leafFade { to { opacity: 1; transform: scale(1.4); transform-origin: 360px 160px; } }

.cover__inner {
    position: relative;
    z-index: 2;
    width: min(900px, 92vw);
    text-align: center;
    padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 60px);
    background:
        linear-gradient(180deg, rgba(240, 237, 228, 0.45), rgba(240, 237, 228, 0.15));
    border: 1px solid var(--cabinet-soft);
    box-shadow:
        inset 0 0 0 4px var(--field-journal),
        inset 0 0 0 5px var(--cabinet-soft),
        0 30px 60px -30px rgba(42, 40, 32, 0.25);
}

.cover__corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 3;
    pointer-events: none;
}
.cover__corner svg { width: 100%; height: 100%; display: block; }
.cover__corner--tl { top: -1px; left: -1px; }
.cover__corner--tr { top: -1px; right: -1px; }
.cover__corner--bl { bottom: -1px; left: -1px; }
.cover__corner--br { bottom: -1px; right: -1px; }

.cover__edition {
    font-family: var(--f-cond);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: clamp(40px, 6vh, 60px);
    opacity: 0;
    animation: fadeUp 800ms ease-out 400ms forwards;
}

.cover__stamp {
    position: relative;
    display: inline-block;
    padding: clamp(28px, 5vh, 48px) clamp(28px, 6vw, 60px);
    margin-bottom: clamp(40px, 6vh, 60px);
}

.cover__stamp::before,
.cover__stamp::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--cabinet);
}
.cover__stamp::before { top: 0; box-shadow: 0 4px 0 -3px var(--cabinet); }
.cover__stamp::after { bottom: 0; box-shadow: 0 -4px 0 -3px var(--cabinet); }

.cover__latin {
    display: block;
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--copper);
    margin-bottom: clamp(14px, 1.5vh, 22px);
    letter-spacing: 0.04em;
    opacity: 0;
    animation: fadeUp 700ms ease-out 700ms forwards;
}

.cover__title {
    font-family: var(--f-cond);
    font-weight: 600;
    font-size: clamp(44px, 9vw, 124px);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--specimen-ink);
    margin-bottom: clamp(14px, 2vh, 22px);
    min-height: 1em;
}

.cover__title .cover__char {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    animation: charReveal 360ms cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes charReveal {
    to { opacity: 1; transform: translateY(0); }
}

.cover__title .cover__char--dot {
    color: var(--copper);
}

.cover__subtitle {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(14px, 1.1vw, 16px);
    color: var(--ink-soft);
    font-style: italic;
    opacity: 0;
    animation: fadeUp 800ms ease-out 1500ms forwards;
}

.cover__meta {
    display: inline-flex;
    align-items: center;
    gap: clamp(16px, 3vw, 36px);
    margin-bottom: clamp(40px, 6vh, 60px);
    opacity: 0;
    animation: fadeUp 800ms ease-out 1800ms forwards;
    flex-wrap: wrap;
    justify-content: center;
}

.cover__meta-cell {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.cover__meta-label {
    font-family: var(--f-cond);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cabinet);
}

.cover__meta-value {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: 13px;
    color: var(--specimen-ink);
    font-style: italic;
}

.cover__meta-divider {
    display: inline-block;
    width: 1px;
    height: 22px;
    background: var(--cabinet-soft);
}

.cover__scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeUp 800ms ease-out 2100ms forwards, scrollHint 2200ms ease-in-out 2900ms infinite;
}

.cover__scroll-hint span {
    font-family: var(--f-cond);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--copper);
}

.cover__scroll-hint svg {
    width: 18px;
    height: 30px;
}

@keyframes scrollHint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

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

/* ============================================================
   TAXONOMY HEADER
   ============================================================ */

.taxonomy {
    position: relative;
    background: var(--field-journal);
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 80px) clamp(40px, 6vh, 60px);
}

.taxonomy__rule {
    position: relative;
    height: 1px;
    background: var(--cabinet-soft);
    margin: 0 auto clamp(40px, 6vh, 60px);
    max-width: 1200px;
}

.taxonomy__rule::before,
.taxonomy__rule::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
}
.taxonomy__rule::before { left: -3px; }
.taxonomy__rule::after { right: -3px; }

.taxonomy__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.taxonomy__eyebrow {
    font-family: var(--f-cond);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 18px;
}

.taxonomy__title {
    font-family: var(--f-cond);
    font-weight: 600;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--specimen-ink);
    margin-bottom: 24px;
    line-height: 1.1;
}

.taxonomy__body {
    font-family: var(--f-serif);
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.85;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto;
}

.taxonomy__seal {
    margin-top: 32px;
    display: inline-block;
}
.taxonomy__seal svg {
    width: 70px;
    height: 70px;
}

/* ============================================================
   CABINET LAYOUT
   ============================================================ */

.cabinet {
    background: var(--field-journal);
    padding: clamp(40px, 6vh, 60px) clamp(20px, 5vw, 80px) clamp(60px, 10vh, 100px);
    position: relative;
}

.cabinet__layout {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

.cabinet__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--col-w), 1fr));
    gap: var(--col-gap);
    align-content: start;
}

/* Full-width interlude breaks the grid */
.cabinet__grid .interlude {
    grid-column: 1 / -1;
}

/* ============================================================
   SPECIMEN BLOCKS
   ============================================================ */

.specimen {
    position: relative;
    background: var(--marble);
    padding: 22px 20px 18px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 320ms ease, box-shadow 320ms ease;
    isolation: isolate;
    overflow: hidden;
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 700ms cubic-bezier(0.4, 0.0, 0.2, 1),
                opacity 500ms ease 200ms,
                transform 320ms ease,
                box-shadow 320ms ease;
}

.specimen.is-revealed {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.specimen:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px -22px rgba(42, 40, 32, 0.5);
}

.specimen:hover .specimen__plate svg .plate-stroke {
    stroke-width: 1.5;
}
.specimen:hover .specimen__title { color: var(--cabinet); }

.specimen__frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.specimen__frame svg {
    width: 100%;
    height: 100%;
    display: block;
}

.specimen__head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--copper-soft);
}

.specimen__cat {
    font-family: var(--f-cond);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--botanical);
}

.specimen__id {
    font-family: var(--f-cond);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--copper);
}

.specimen__title {
    position: relative;
    z-index: 1;
    font-family: var(--f-cond);
    font-weight: 600;
    font-size: clamp(18px, 1.5vw, 22px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--specimen-ink);
    line-height: 1.15;
    margin-bottom: 6px;
    transition: color 280ms ease;
}

.specimen__latin {
    position: relative;
    z-index: 1;
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    color: var(--copper);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.specimen__plate {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background:
        linear-gradient(180deg, rgba(232, 220, 200, 0.4), rgba(232, 220, 200, 0));
    border-top: 0.5px dashed var(--copper-soft);
    border-bottom: 0.5px dashed var(--copper-soft);
}

.specimen__plate svg {
    width: 100%;
    height: 100%;
}

.specimen__plate svg .plate-stroke {
    transition: stroke-width 280ms ease;
}

.specimen__data {
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-bottom: 12px;
}

.specimen__data li {
    font-family: var(--f-cond);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cabinet);
    padding: 3px 7px;
    border: 0.5px solid var(--cabinet-soft);
    background: var(--field-journal);
}

.specimen__data li.dat-accent {
    color: var(--teal);
    border-color: rgba(58, 120, 120, 0.3);
}

.specimen__desc {
    position: relative;
    z-index: 1;
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 14px;
    flex: 1;
}

.specimen__foot {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--copper-soft);
}

.specimen__loc,
.specimen__date {
    font-family: var(--f-cond);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.specimen__sweep {
    position: absolute;
    inset: auto 0 0 0;
    height: 100%;
    background: var(--botanical);
    transform-origin: bottom;
    transform: scaleY(0);
    z-index: 4;
    pointer-events: none;
}

.specimen.is-sweeping .specimen__sweep {
    animation: specimenSweep 700ms cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes specimenSweep {
    0% { transform: scaleY(0); transform-origin: bottom; }
    50% { transform: scaleY(1); transform-origin: bottom; }
    50.01% { transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: top; }
}

/* ============================================================
   GROWTH INTERLUDES
   ============================================================ */

.interlude {
    position: relative;
    width: 100%;
    padding: clamp(28px, 5vh, 56px) 0 clamp(20px, 3vh, 32px);
    margin: clamp(8px, 2vh, 16px) 0;
}

.interlude__label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding: 0 4px;
}

.interlude__num {
    font-family: var(--f-cond);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper);
    padding: 3px 8px;
    border: 0.5px solid var(--copper);
}

.interlude__text {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 13.5px;
    color: var(--ink-soft);
    flex: 1;
    letter-spacing: 0.02em;
}

.interlude__svg {
    width: 100%;
    height: clamp(120px, 18vh, 180px);
    display: block;
}

.interlude__svg path {
    stroke: var(--botanical);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: var(--len, 800);
    stroke-dashoffset: var(--len, 800);
}

.interlude.is-growing .interlude__svg path {
    animation: branchGrow 3000ms ease-out forwards;
    animation-delay: var(--delay, 0ms);
}

@keyframes branchGrow {
    to { stroke-dashoffset: 0; }
}

.interlude__rule {
    margin-top: clamp(20px, 3vh, 32px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cabinet-soft), transparent);
}

/* ============================================================
   TAXON SIDEBAR
   ============================================================ */

.taxon {
    position: sticky;
    top: 32px;
    background: var(--marble);
    padding: 18px 16px;
    border: 1px solid var(--cabinet-soft);
    box-shadow:
        inset 0 0 0 4px var(--marble),
        inset 0 0 0 5px var(--copper-soft);
    align-self: start;
}

.taxon__crown,
.taxon__base {
    margin: 0 -4px 10px;
}
.taxon__base { margin: 14px -4px 0; }
.taxon__crown svg,
.taxon__base svg {
    width: 100%;
    height: 24px;
    display: block;
}

.taxon__title {
    font-family: var(--f-cond);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--specimen-ink);
    text-align: center;
    margin-bottom: 4px;
}

.taxon__sub {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 11px;
    color: var(--copper);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.taxon__list {
    list-style: none;
    counter-reset: tax;
}

.taxon__item {
    counter-increment: tax;
    position: relative;
    padding: 8px 8px 8px 24px;
    cursor: pointer;
    transition: background 240ms ease, border-left-color 240ms ease, padding-left 240ms ease;
    border-left: 2px solid transparent;
    margin-bottom: 2px;
}

.taxon__item::before {
    content: counter(tax, upper-roman) ".";
    position: absolute;
    left: 6px;
    top: 8px;
    font-family: var(--f-cond);
    font-size: 9px;
    color: var(--copper);
    letter-spacing: 0.1em;
}

.taxon__item:hover {
    background: rgba(168, 120, 64, 0.08);
    border-left-color: var(--copper);
    padding-left: 28px;
}

.taxon__item.is-active {
    background: rgba(168, 120, 64, 0.12);
    border-left-color: var(--copper);
}

.taxon__name {
    display: block;
    font-family: var(--f-cond);
    font-weight: 500;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--specimen-ink);
    line-height: 1.3;
}

.taxon__count {
    display: block;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 10px;
    color: var(--ink-faint);
    margin-top: 1px;
    letter-spacing: 0.03em;
}

/* ============================================================
   FIELD NOTES
   ============================================================ */

.notes {
    background: var(--field-journal);
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 80px);
    position: relative;
}

.notes__sheet {
    max-width: 980px;
    margin: 0 auto;
    background: var(--marble);
    padding: clamp(36px, 5vh, 56px) clamp(28px, 5vw, 64px);
    border: 1px solid var(--cabinet-soft);
    box-shadow:
        inset 0 0 0 4px var(--marble),
        inset 0 0 0 5px var(--copper-soft),
        0 24px 48px -28px rgba(42, 40, 32, 0.25);
    position: relative;
}

.notes__sheet::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--copper-soft) 12%, var(--copper-soft) 88%, transparent);
    pointer-events: none;
}

.notes__plate {
    font-family: var(--f-cond);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--copper);
    text-align: center;
    margin-bottom: 12px;
}

.notes__title {
    font-family: var(--f-cond);
    font-weight: 600;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--specimen-ink);
    text-align: center;
    margin-bottom: 36px;
}

.notes__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
}

.notes__entry {
    font-family: var(--f-serif);
    font-size: 14px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin-bottom: 22px;
    text-indent: 1.4em;
}

.notes__date {
    display: inline-block;
    font-family: var(--f-cond);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-right: 10px;
    text-indent: 0;
    padding: 2px 6px;
    border: 0.5px solid rgba(58, 120, 120, 0.32);
    margin-left: -1.4em;
}

/* ============================================================
   COLOPHON
   ============================================================ */

.colophon {
    background: var(--field-journal);
    padding: clamp(40px, 6vh, 60px) clamp(20px, 5vw, 80px) clamp(60px, 10vh, 100px);
}

.colophon__rule {
    max-width: 1200px;
    margin: 0 auto clamp(40px, 6vh, 60px);
    height: 1px;
    background: var(--cabinet-soft);
    position: relative;
}

.colophon__rule::before,
.colophon__rule::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 8px;
    background:
        radial-gradient(circle at center, var(--copper) 1.5px, transparent 2px) center / 8px 8px;
}

.colophon__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.colophon__row {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 48px);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.colophon__cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.colophon__k {
    font-family: var(--f-cond);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cabinet);
}

.colophon__v {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--specimen-ink);
}

.colophon__line {
    font-family: var(--f-serif);
    font-size: 13px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto 18px;
}

.colophon__sig {
    font-family: var(--f-cond);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--copper);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .cabinet__layout {
        grid-template-columns: 1fr;
    }
    .taxon {
        position: relative;
        top: 0;
        order: -1;
    }
}

@media (max-width: 720px) {
    .notes__columns {
        grid-template-columns: 1fr;
    }
    .cover__title {
        font-size: clamp(36px, 11vw, 80px);
    }
    .cover__inner {
        padding: 30px 18px;
    }
    .cabinet__grid {
        grid-template-columns: 1fr;
    }
    .colophon__row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .cover__tendril path { stroke-dashoffset: 0; }
    .interlude__svg path { stroke-dashoffset: 0; }
    .specimen { opacity: 1; clip-path: inset(0 0 0 0); }
}
