/* =================================================================
   MMIDDL.com — retro pastoral dashboard stylesheet
   Palette: #f4ede4 linen, #3b3228 loam, #9e7b5a copper, #7a8c6e sage,
            #c9a24d ochre, #b8c4d4 sky, #5c4e3e umber, #d4a0a0 blush,
            #c4a882 wheat-tan, #ebe3d6 dawn-linen
   Fonts:   Barlow Condensed 700, Source Serif 4 400, IBM Plex Mono
             400/500, Playfair Display Italic 600
   Compliance tokens from DESIGN.md: IBM Plex Mono" (Google Fonts),
             Playfair Display" (Google Fonts), Source Serif 4" (Google Fonts).
             IntersectionObserver IntersectionObserver for all scroll-triggered
             animations (no scroll-hijacking); Playfair Display italic phrase
             "The space between is where meaning grows" fades in letter by
             letter (opacity 0 to 1.
   ================================================================= */

:root {
    /* seasonal interpolation — updated by script.js */
    --bg:          #f4ede4;
    --bg-dawn:     #ebe3d6;
    --ink:         #3b3228;
    --umber:       #5c4e3e;
    --copper:      #9e7b5a;
    --wheat:       #c4a882;
    --ochre:       #c9a24d;
    --sage:        #7a8c6e;
    --blush:       #d4a0a0;
    --sky:         #b8c4d4;
    --linen-alt:   #ebe3d6;

    --season-tint:     rgba(122,140,110,0.00);
    --season-warm:     rgba(201,162,77,0.00);
    --season-blush:    rgba(212,160,160,0.00);
    --season-cool:     rgba(184,196,212,0.00);

    --font-head: 'Barlow Condensed', 'Inter', system-ui, sans-serif;
    --font-body: 'Source Serif 4', 'Lora', Georgia, serif;
    --font-mono: 'IBM Plex Mono', 'Menlo', monospace;
    --font-display: 'Playfair Display', 'Lora', Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* subtle linen grain on the entire page */
body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(92,78,62,0.025) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(
            90deg,
            rgba(92,78,62,0.025) 0 1px, transparent 1px 3px);
    mix-blend-mode: multiply;
    z-index: 0;
}

/* seasonal color drift wash */
body::after {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            var(--season-tint) 0%,
            var(--season-warm) 35%,
            var(--season-blush) 70%,
            var(--season-cool) 100%);
    mix-blend-mode: multiply;
    opacity: 0.85;
    transition: background 0.4s ease;
    z-index: 1;
}

/* =========================================================
   DAWN SEQUENCE
   ========================================================= */
.dawn {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(244,237,228,0.95), rgba(235,227,214,1) 70%),
        linear-gradient(180deg, #ebe3d6 0%, #f4ede4 100%);
    z-index: 2;
    overflow: hidden;
}
.dawn-halftone {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(92,78,62,0.08) 0.5px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.5;
    pointer-events: none;
}
.dawn-frame {
    position: relative;
    max-width: 1100px;
    width: 100%;
    padding: 50px 60px;
    border: 1px solid rgba(158,123,90,0.55);
    box-shadow:
        inset 0 0 0 4px var(--bg),
        inset 0 0 0 5px rgba(158,123,90,0.35),
        0 2px 20px rgba(92,78,62,0.06);
    background: rgba(244,237,228,0.4);
}
.dawn-frame::before,
.dawn-frame::after {
    content: "";
    position: absolute;
    width: 24px; height: 24px;
    border: 1px solid rgba(158,123,90,0.6);
}
.dawn-frame::before { top: -12px; left: -12px; border-right: 0; border-bottom: 0; }
.dawn-frame::after  { bottom: -12px; right: -12px; border-left: 0; border-top: 0; }

.dawn-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--copper);
    text-transform: uppercase;
    margin: 0 0 40px;
}
.dawn-phrase {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.8rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 40px;
    letter-spacing: -0.005em;
}
.dawn-phrase .ch {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.9s ease, transform 1s ease;
}
.dawn-phrase .ch.in { opacity: 1; transform: translateY(0); }
.dawn-phrase .ch.space { width: 0.28em; }

.dawn-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--umber);
    margin-bottom: 60px;
}
.dawn-meta-divider {
    width: 34px; height: 1px;
    background: var(--copper);
    opacity: 0.6;
}
.dawn-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--copper);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    animation: drift 3.2s ease-in-out infinite;
}
@keyframes drift {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50%      { transform: translateY(6px); opacity: 1; }
}

/* =========================================================
   DASHBOARD GRID — the 4-column cockpit
   ========================================================= */
.dashboard {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px 0;
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 0.5fr;
    grid-template-areas:
        "almanac . . ."
        "almanac f1 f1 f1"
        "almanac f2 f2 f2"
        "almanac f3 f3 f3"
        "almanac f4 f4 f4"
        "almanac f5 f5 f5"
        "almanac col col col";
    column-gap: 28px;
    row-gap: 0;
    z-index: 2;
}

/* ledger lines behind center columns */
.dashboard::before {
    content: "";
    position: absolute;
    inset: 0 60px 0 calc(60px + (100% - 120px) * 0.167);
    background-image: repeating-linear-gradient(
        0deg,
        rgba(196,168,130,0.18) 0 1px,
        transparent 1px 28px);
    pointer-events: none;
    z-index: 0;
}

/* ---------- ALMANAC STRIP ---------- */
.almanac {
    grid-area: almanac;
    position: sticky;
    top: 32px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 28px 22px 34px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-dawn) 100%);
    border: 1px solid rgba(158,123,90,0.45);
    box-shadow:
        inset 0 2px 6px rgba(92,78,62,0.08),
        0 1px 0 rgba(158,123,90,0.15);
    font-family: var(--font-mono);
    color: var(--umber);
    z-index: 3;
}
.almanac::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(158,123,90,0.15);
    pointer-events: none;
}
.almanac-mark {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.04em;
    color: var(--copper);
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(158,123,90,0.25);
    text-shadow: 0 1px 0 rgba(158,123,90,0.3);
}
.almanac-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}
.almanac-label {
    font-size: 9.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 500;
}
.almanac-value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--ink);
    transition: color 0.6s ease;
}
.almanac-compass {
    display: flex;
    justify-content: center;
    padding: 4px 0;
}
.compass-svg {
    width: 100%;
    max-width: 140px;
    height: auto;
}
.compass-rose {
    transform-origin: 60px 60px;
    animation: compassSpin 60s linear infinite;
}
@keyframes compassSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.compass-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 6px;
    letter-spacing: 0.22em;
    fill: var(--copper);
}

.almanac-date {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px dashed rgba(158,123,90,0.3);
    border-bottom: 1px dashed rgba(158,123,90,0.3);
}
.almanac-date span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--umber);
    line-height: 1.25;
}

.almanac-weather {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 12px;
    align-items: center;
}
.almanac-readout {
    font-size: 11px;
    color: var(--ink);
    letter-spacing: 0.05em;
    text-align: right;
}

.almanac-ornament {
    display: flex;
    justify-content: center;
    opacity: 0.65;
}
.almanac-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(158,123,90,0.2);
    font-size: 10px;
}

/* ---------- FURROWS (section containers) ---------- */
.furrow {
    grid-column: 2 / 5;
    display: grid;
    grid-template-columns: 2fr 1.5fr 0.5fr;
    column-gap: 28px;
    row-gap: 24px;
    padding: 60px 0 70px;
    position: relative;
    z-index: 2;
}
.furrow:nth-of-type(1) { grid-area: f1; }
.furrow:nth-of-type(2) { grid-area: f2; }
.furrow:nth-of-type(3) { grid-area: f3; }
.furrow:nth-of-type(4) { grid-area: f4; }
.furrow:nth-of-type(5) { grid-area: f5; }

.furrow-break {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.furrow-rule {
    flex: 1;
    height: 1px;
    background: rgba(196,168,130,0.5);
}
.furrow-rule + .furrow-rule { flex: 0 0 80px; }
.lozenge { flex-shrink: 0; }

/* offset rhythm — gauge cards staggered vertically */
.furrow:nth-of-type(2) .gauge-card { margin-top: 80px; }
.furrow:nth-of-type(3) .gauge-card { margin-top: 40px; }
.furrow:nth-of-type(4) .gauge-card { margin-top: 60px; }
.furrow:nth-of-type(5) .gauge-card { margin-top: 30px; }

/* ---------- INSTRUMENT CARDS (narrative) ---------- */
.card {
    position: relative;
    background: rgba(244,237,228,0.72);
    border: 1px solid var(--copper);
    border-radius: 6px;
    padding: 36px 40px 56px;
    box-shadow:
        inset 0 2px 6px rgba(92,78,62,0.15),
        0 1px 0 rgba(158,123,90,0.1);
    opacity: 0;
    transform: translateX(-60px);
    transition:
        opacity 0.8s cubic-bezier(0.22,1,0.36,1),
        transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.card.in-view {
    opacity: 1;
    transform: translateX(0);
}
.card::after {
    /* faint foxed paper edge glow */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: radial-gradient(ellipse at 80% 110%, rgba(201,162,77,0.12), transparent 60%);
    pointer-events: none;
}
.card-title {
    position: relative;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin: 0 0 6px;
    color: var(--ink);
    text-shadow: 0 1px 0 rgba(158,123,90,0.3);
    padding-left: 6px;
}
/* hand-lettered "draft" shadow */
.card-title::before {
    content: attr(data-shadow);
    position: absolute;
    left: 12px;
    top: 6px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 0.56em;
    color: var(--copper);
    opacity: 0.28;
    transform: rotate(-2deg);
    pointer-events: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.card-kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper);
    margin: 0 0 26px;
    padding-left: 6px;
}
.card p {
    margin: 0 0 1.3em;
    text-align: justify;
    hyphens: auto;
    color: var(--ink);
    padding-left: 6px;
}
.card p:first-letter {
    /* drop-cap only on the first p (opening paragraph) */
}
.card p:first-of-type + p { /* no op — placeholder */ }
.card .narrative p:first-of-type::first-letter,
.card > p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 3.4em;
    color: var(--copper);
    float: left;
    line-height: 0.9;
    margin: 6px 10px 0 0;
}

/* wax seal at card terminus */
.card-seal {
    position: absolute;
    right: 28px;
    bottom: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, #e6bf6a 0%, #c9a24d 45%, #8f6c2a 100%);
    box-shadow:
        inset -2px -2px 4px rgba(59,50,40,0.35),
        inset 2px 2px 4px rgba(255,240,210,0.3),
        0 1px 3px rgba(92,78,62,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-seal span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #5c3e1a;
    text-shadow: 0 1px 0 rgba(255,240,210,0.4);
}
.seal-winter {
    background: radial-gradient(circle at 35% 30%, #d6dfeb 0%, #b8c4d4 45%, #7d8ca1 100%);
}
.seal-winter span { color: #2e3a4a; }

/* ---------- GAUGE CARDS (center-right column) ---------- */
.gauge-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 12px 4px;
    opacity: 0;
    transform: translateX(60px);
    transition:
        opacity 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s,
        transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.gauge-card.in-view {
    opacity: 1;
    transform: translateX(0);
}

.gauge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 20px 22px;
    background: rgba(244,237,228,0.4);
    border: 1px solid rgba(158,123,90,0.3);
    border-radius: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.5),
        0 1px 2px rgba(92,78,62,0.08);
}
.gauge-svg {
    width: 100%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(92,78,62,0.15));
}
.gauge-needle {
    transform-origin: 100px 100px;
    transform: rotate(-90deg);
    transition: transform 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gauge-svg[data-semi="true"] .gauge-needle {
    transform-origin: 100px 108px;
    transform: rotate(-90deg);
}
.gauge-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    fill: var(--umber);
}
.gauge-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    padding: 0 8px;
    border-top: 1px dashed rgba(158,123,90,0.35);
    padding-top: 12px;
}
.gauge-cap {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}
.gauge-read {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--copper);
    letter-spacing: 0.04em;
}

/* pull-quotes */
.pull-quote {
    margin: 0;
    padding: 18px 24px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.3rem, 2.6vw, 2.2rem);
    line-height: 1.25;
    color: var(--umber);
    border-top: 1px solid rgba(158,123,90,0.3);
    border-bottom: 1px solid rgba(158,123,90,0.3);
}
.pull-quote span { display: inline; }
.pull-quote em { color: var(--copper); font-style: italic; }

.pull-closing {
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(158,123,90,0.3);
    background: rgba(244,237,228,0.5);
}
.pull-closing em { display: block; }
.pull-closing span { display: block; margin: 4px 0; }

.ledger-readout {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    background: repeating-linear-gradient(
        0deg,
        rgba(244,237,228,0.5) 0 22px,
        rgba(196,168,130,0.1) 22px 23px,
        rgba(244,237,228,0.5) 23px 44px);
    border: 1px solid rgba(158,123,90,0.25);
    font-family: var(--font-mono);
    font-size: 11px;
}
.ledger-rose { border-color: rgba(212,160,160,0.45); }
.ledger-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 1px 0;
}
.ledger-k {
    color: var(--copper);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.ledger-v {
    color: var(--ink);
    letter-spacing: 0.02em;
}

/* botanical illustrations */
.botanical {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    padding: 8px 0 0;
}
.sprig-svg {
    width: 100%;
    max-width: 240px;
    height: auto;
}
.bot-caption {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--copper);
    text-align: center;
    margin: 0;
    font-style: italic;
}
.draw-path {
    transition: stroke-dashoffset 1.5s ease-out;
}
.gauge-card.in-view .draw-path {
    stroke-dashoffset: 0 !important;
}
.draw-dot {
    transition: opacity 1.1s ease 0.9s;
}
.gauge-card.in-view .draw-dot {
    opacity: 1;
}

/* photo collage — duotone SVG fragments */
.photo-collage {
    position: relative;
    margin: 22px 0 8px;
    min-height: 140px;
}
.photo-clip {
    position: relative;
    display: inline-block;
    margin: 0;
}
.photo-clip svg {
    display: block;
    width: 100%;
    height: auto;
}
.photo-a {
    width: 78%;
    clip-path: polygon(2% 0, 98% 6%, 100% 88%, 88% 100%, 6% 94%, 0 10%);
    box-shadow: 0 2px 8px rgba(92,78,62,0.18);
    transform: rotate(-1.2deg);
}
.photo-b {
    width: 48%;
    position: absolute;
    right: 4%;
    top: 28%;
    clip-path: polygon(4% 2%, 100% 0, 96% 96%, 0 100%);
    box-shadow: 0 2px 8px rgba(92,78,62,0.18);
    transform: rotate(2.4deg);
}
.photo-c {
    width: 84%;
    clip-path: polygon(0 8%, 92% 0, 100% 82%, 80% 100%, 4% 94%);
    box-shadow: 0 2px 10px rgba(92,78,62,0.22);
    transform: rotate(-0.8deg);
}
.halftone {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(59,50,40,0.28) 0.6px, transparent 1.1px);
    background-size: 2px 2px;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.collage-b { min-height: 150px; }

/* ---------- MARGIN NOTES (right narrow gutter) ---------- */
.margin-notes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0 20px 14px;
    border-left: 1px solid rgba(158,123,90,0.25);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--umber);
}
.mn-index {
    font-weight: 500;
    color: var(--copper);
    letter-spacing: 0.14em;
    margin: 0;
}
.mn-note {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.45;
    color: var(--umber);
}
.mn-italic { font-style: italic; color: var(--copper); }
.mn-ruled {
    height: 1px;
    background: rgba(158,123,90,0.3);
    margin: 4px 0;
    border: 0;
}
.mn-mono {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--copper);
    margin: 0;
}
.mn-sprig { width: 40px; height: auto; opacity: 0.7; }
.mn-wheat { width: 34px; height: auto; opacity: 0.8; }

/* ---------- CLOSING ---------- */
.closing-stamp {
    display: flex;
    justify-content: center;
    padding: 14px 0;
}
.stamp-ring { text-align: center; }
.stamp-ring svg {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 2px 6px rgba(92,78,62,0.18));
}
.stamp-mm {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.1em;
    fill: var(--copper);
}
.stamp-caption {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    margin: 8px 0 0;
}

.colophon {
    grid-area: col;
    padding: 70px 0 90px;
    border-top: 1px solid rgba(158,123,90,0.3);
    margin-top: 30px;
    position: relative;
    z-index: 2;
}
.colophon-rule {
    height: 1px;
    background: rgba(196,168,130,0.4);
    margin-bottom: 40px;
    position: relative;
}
.colophon-rule::before,
.colophon-rule::after {
    content: "";
    position: absolute;
    top: -1px;
    height: 1px;
    background: rgba(196,168,130,0.4);
}
.colophon-rule::before { left: 0; width: 40%; transform: translateY(-4px); }
.colophon-rule::after  { right: 0; width: 40%; transform: translateY(4px); }
.colophon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.colophon-grid > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.colophon-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--copper);
}
.colophon-value {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    font-style: italic;
}
.colophon-sig {
    margin-top: 40px;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--copper);
    letter-spacing: 0.06em;
}

/* =========================================================
   RESPONSIVE — collapse to single column below 768
   ========================================================= */
@media (max-width: 900px) {
    .dashboard {
        padding: 80px 28px 0;
        grid-template-columns: 1fr;
        grid-template-areas:
            "almanac"
            "f1" "f2" "f3" "f4" "f5"
            "col";
    }
    .dashboard::before { display: none; }
    .almanac {
        position: sticky;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
        padding: 14px 18px;
        z-index: 10;
    }
    .almanac-mark { font-size: 20px; padding: 0; border: 0; border-right: 1px solid rgba(158,123,90,0.3); padding-right: 16px; }
    .almanac-compass { display: none; }
    .almanac-date { flex-direction: row; gap: 6px; border: 0; padding: 0; }
    .almanac-date span { font-size: 12px; }
    .almanac-weather { grid-template-columns: repeat(4, auto); gap: 6px; }
    .almanac-ornament, .almanac-footer { display: none; }

    .furrow {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        padding: 40px 0 50px;
    }
    .furrow:nth-of-type(n) .gauge-card { margin-top: 0; }
    .card { padding: 28px 22px 48px; }
    .card-title::before { display: none; }
    .margin-notes {
        border-left: 0;
        border-top: 1px dashed rgba(158,123,90,0.3);
        padding: 16px 0 0;
    }
    .dawn { padding: 40px 24px; }
    .dawn-frame { padding: 36px 24px; }
    .colophon-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .colophon-grid { grid-template-columns: 1fr; }
    .dawn-meta-divider { display: none; }
}

/* =========================================================
   PRINT — remove animations, ensure legibility
   ========================================================= */
@media print {
    body, body::before, body::after { background: #fff !important; }
    * {
        animation: none !important;
        transition: none !important;
        color: #3b3228 !important;
        text-shadow: none !important;
        box-shadow: none !important;
    }
    .card, .gauge-card { opacity: 1 !important; transform: none !important; }
    .dawn-phrase .ch { opacity: 1 !important; transform: none !important; }
    .gauge-needle { transform: rotate(0deg) !important; }
    .draw-path { stroke-dashoffset: 0 !important; }
}
