/* ============================================================
   karmabadge.com — Bauhaus-honeyed conservatory
   Workshop-press play uses IntersectionObserver (see script.js).
   ============================================================ */

:root {
    --beeswax-cream:    #f5ecd6;
    --honey-amber:      #e8d4a3;
    --deep-amber:       #d9a441;
    --cocoa-tan:        #b06a2a;
    --walnut-ink:       #3a2a1a;
    --bauhaus-red:      #c94f3a;
    --bauhaus-blue:     #3b6ea8;
    --bauhaus-yellow:   #e8c547;
    --aurora-peach:     #f0d9b8;
    --aurora-rose:      #ead4c1;
    --gold-leaf:        #9c7c4f;

    --gutter: 28px;
    --cell-radius: 6px;
    --border-line: 2px solid var(--honey-amber);

    --ease-soft: cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

html, body {
    width: 100%;
    min-height: 100%;
}

body {
    background: var(--beeswax-cream);
    color: var(--walnut-ink);
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 15.5px;
    line-height: 1.55;
    letter-spacing: 0.005em;
    cursor: none;
    overflow-x: hidden;
    position: relative;
}

/* ----- Paper grain texture ----- */
.paper-grain {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    mix-blend-mode: multiply;
}

/* ----- Bee SVG layer ----- */
.bee-layer {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    overflow: visible;
}
.bee {
    transform: translate(-100px, -100px);
    transform-box: fill-box;
    transition: transform 0.04s linear;
    filter: drop-shadow(0 1px 1px rgba(58, 42, 26, 0.25));
}
.bee-wing {
    transform-origin: 0px -4px;
    animation: wingFlap 0.083s infinite alternate ease-in-out;
}
.wing-right {
    animation-delay: 0.04s;
}
@keyframes wingFlap {
    from { transform: rotate(-12deg) scaleY(0.85); }
    to   { transform: rotate(12deg)  scaleY(1.05); }
}
.pollen-dot {
    transition: opacity 1.4s ease-out;
}

/* ----- Masthead ----- */
.masthead {
    position: relative;
    z-index: 2;
    height: 96px;
    padding: 0 calc(var(--gutter) + 8px);
    display: flex;
    align-items: center;
}
.masthead-inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--honey-amber);
    padding-bottom: 14px;
}
.masthead-mark {
    font-family: "Fraunces", "DM Serif Display", serif;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    color: var(--walnut-ink);
    letter-spacing: -0.01em;
}
.masthead-line {
    flex: 1;
    height: 1px;
    background: var(--honey-amber);
}
.masthead-meta {
    font-size: 0.78rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: var(--gutter);
    padding: var(--gutter) calc(var(--gutter) + 8px);
    max-width: 1480px;
    margin: 0 auto;
}

/* Each cell baseline */
.cell {
    position: relative;
    background: var(--beeswax-cream);
    border: var(--border-line);
    border-radius: var(--cell-radius);
    padding: 22px 22px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: transform 0.32s var(--ease-soft), opacity 0.32s var(--ease-soft);
    box-shadow:
        0 1px 0 rgba(232, 212, 163, 0.4) inset,
        0 1px 2px rgba(58, 42, 26, 0.04);
}
.cell.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Cell title */
.cell-title {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cocoa-tan);
    margin-bottom: 14px;
}

/* ----- Specific cell placements (desktop) ----- */
.cell-mark      { grid-column: 1 / 2; grid-row: 1 / 2; }
.cell-manifesto { grid-column: 2 / 4; grid-row: 1 / 2; }
.specimen-i     { grid-column: 4 / 5; grid-row: 1 / 2; }

.cell-process   { grid-column: 1 / 2; grid-row: 2 / 4; }
.cell-aurora    { grid-column: 2 / 5; grid-row: 2 / 3; }

.specimen-ii    { grid-column: 2 / 3; grid-row: 3 / 4; }
.cell-theory    { grid-column: 3 / 4; grid-row: 3 / 4; }
.specimen-iii   { grid-column: 4 / 5; grid-row: 3 / 4; }

.cell-workshop  { grid-column: 1 / 3; grid-row: 4 / 5; }
.cell-ledger    { grid-column: 3 / 4; grid-row: 4 / 5; }
.cell-index     { grid-column: 4 / 5; grid-row: 4 / 6; }
.cell-closing   { grid-column: 1 / 2; grid-row: 5 / 6; }

/* fill remaining: workshop & ledger row 4 already; closing on row5 col1; col2-3 row5 spare */
.bento::after {
    content: "";
    grid-column: 2 / 4;
    grid-row: 5 / 6;
    border-top: 1px dashed var(--honey-amber);
    align-self: end;
    height: 1px;
    margin: 24px 0;
}

/* ============================================================
   CELL 1 — MARK
   ============================================================ */
.cell-mark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background:
        radial-gradient(circle at 85% 20%, rgba(232, 197, 71, 0.10), transparent 50%),
        var(--beeswax-cream);
}
.mark-stack {
    font-family: "Fraunces", serif;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-weight: 700;
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--deep-amber);
    text-shadow: 0 1px 0 rgba(58, 42, 26, 0.06);
}
.mark-line {
    display: block;
}
.mark-line-2 {
    color: var(--walnut-ink);
    position: relative;
    display: inline-block;
}
.mark-i-dot {
    display: inline-block;
    width: 0.42em;
    height: 0.42em;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #f4c569, var(--deep-amber) 60%, #8c6322 100%);
    box-shadow:
        inset 0 -2px 3px rgba(58, 42, 26, 0.4),
        inset 0 1px 1px rgba(255, 240, 200, 0.6),
        0 1px 1px rgba(58, 42, 26, 0.2);
    margin-left: 2px;
    transform: translateY(-0.55em);
    animation: discRotate 14s linear infinite;
}
@keyframes discRotate {
    from { transform: translateY(-0.55em) rotate(0deg); }
    to   { transform: translateY(-0.55em) rotate(360deg); }
}
.mark-sub {
    margin-top: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: var(--cocoa-tan);
    border-top: 1px solid var(--honey-amber);
    padding-top: 10px;
    width: 100%;
}

/* ============================================================
   CELL 2 — MANIFESTO
   ============================================================ */
.cell-manifesto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(245, 236, 214, 1) 0%, rgba(240, 217, 184, 0.5) 100%);
    padding: 28px 32px;
}
.manifesto {
    font-family: "Fraunces", serif;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.005em;
    color: var(--walnut-ink);
    text-align: left;
    max-width: 32ch;
}
.manifesto-text .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.4s ease-out;
}
.manifesto-text .letter.is-visible {
    opacity: 1;
}
.manifesto-rule {
    display: block;
    width: 56px;
    height: 2px;
    background: var(--deep-amber);
    margin: 18px 0 8px;
}
.manifesto-credit {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: 0.82rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.04em;
}

/* ============================================================
   SPECIMEN CELLS (shared)
   ============================================================ */
.cell-specimen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition:
        transform 0.32s var(--ease-soft),
        opacity 0.32s var(--ease-soft);
}
.cell-specimen.is-revealed:hover {
    transform: translateY(0) scale(1.02);
}
.plate-frame {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}
.plate-circle {
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--honey-amber);
    background: rgba(255, 250, 235, 0.45);
    aspect-ratio: 1 / 1;
    max-width: 80%;
    margin: 6px auto;
}
.plate-triangle {
    position: relative;
}
.specimen-svg {
    width: 100%;
    height: auto;
    max-height: 240px;
    filter: drop-shadow(1px 1px 0 rgba(176, 106, 42, 0.35));
}
.specimen-stem {
    transform-origin: 80px 200px;
    transition: transform 0.28s var(--ease-soft);
}
.specimen-caption {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    border-top: 1px solid var(--honey-amber);
    padding-top: 8px;
}
.specimen-caption .latin {
    display: block;
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 0.92rem;
    color: var(--cocoa-tan);
    font-variant: small-caps;
    letter-spacing: 0.04em;
}
.specimen-caption .commonname {
    display: block;
    font-family: "Nunito", sans-serif;
    font-size: 0.7rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.05em;
    text-transform: lowercase;
    margin-top: 2px;
    opacity: 0.85;
}

/* ============================================================
   CELL 4 — PROCESS
   ============================================================ */
.cell-process {
    display: flex;
    flex-direction: column;
}
.process-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.process-step {
    display: grid;
    grid-template-columns: auto 28px 1fr;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--honey-amber);
}
.process-step:last-child { border-bottom: none; }
.process-num {
    font-family: "Recursive", monospace;
    font-variation-settings: "CASL" 1;
    font-weight: 500;
    font-size: 0.78rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.04em;
}
.process-glyph {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.process-glyph svg {
    width: 100%;
    height: 100%;
    filter: blur(0.3px);
}
.process-label {
    font-weight: 600;
    color: var(--walnut-ink);
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

/* ============================================================
   CELL 5 — AURORA
   ============================================================ */
.cell-aurora {
    padding: 0;
    background:
        linear-gradient(180deg, var(--beeswax-cream) 0%, #fbf3df 50%, var(--beeswax-cream) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.aurora-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: blur(0.6px);
}
.aurora-band {
    mix-blend-mode: multiply;
    transform: translateX(-25%);
}
.band-1 { animation: auroraDrift1 28s cubic-bezier(0.4, 0.1, 0.6, 0.9) infinite; }
.band-2 { animation: auroraDrift2 36s cubic-bezier(0.55, 0.05, 0.45, 0.95) infinite; }
.band-3 { animation: auroraDrift3 44s cubic-bezier(0.3, 0.2, 0.7, 0.8) infinite; }

@keyframes auroraDrift1 {
    0%   { transform: translateX(-25%); }
    50%  { transform: translateX(25%); }
    100% { transform: translateX(-25%); }
}
@keyframes auroraDrift2 {
    0%   { transform: translateX(20%); }
    50%  { transform: translateX(-22%); }
    100% { transform: translateX(20%); }
}
@keyframes auroraDrift3 {
    0%   { transform: translateX(-15%); }
    50%  { transform: translateX(28%); }
    100% { transform: translateX(-15%); }
}
.aurora-whisper {
    position: relative;
    z-index: 2;
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.06em;
    opacity: 0.65;
}

/* ============================================================
   CELL 7 — THEORY (Itten wheel)
   ============================================================ */
.cell-theory {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.itten-wheel {
    position: relative;
    width: 72%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    margin: 8px auto 4px;
    border-radius: 50%;
    border: 1px solid var(--honey-amber);
}
.itten-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: none;
    transition: transform 0.24s var(--ease-soft), box-shadow 0.24s ease;
    box-shadow: 0 1px 0 rgba(58, 42, 26, 0.15);
}
.itten-dot:hover {
    transform: translate(-50%, calc(-50% - 3px)) scale(1.1);
    box-shadow: 0 4px 8px rgba(58, 42, 26, 0.25);
}
.itten-caption {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: 0.78rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.05em;
    margin-top: 6px;
}
.itten-readout {
    display: block;
    font-family: "Nunito", sans-serif;
    font-size: 0.78rem;
    color: var(--walnut-ink);
    margin-top: 4px;
    min-height: 1.2em;
    letter-spacing: 0.02em;
}

/* ============================================================
   CELL 9 — WORKSHOP
   ============================================================ */
.cell-workshop {
    display: flex;
    flex-direction: column;
}
.workshop-stage {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 140px;
    background:
        linear-gradient(180deg, transparent 0%, transparent 60%, #ead4a3 60%, #d4b97f 100%);
    border-radius: 4px;
    overflow: hidden;
    margin: 4px 0 10px;
}
.press-table {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38%;
    background:
        linear-gradient(180deg, #c89a55 0%, #9a6e2e 100%);
    border-top: 2px solid var(--cocoa-tan);
}
.press-die {
    position: absolute;
    left: 50%;
    top: 14%;
    transform: translateX(-50%);
    width: 64px;
    height: 78px;
    background:
        linear-gradient(180deg, var(--bauhaus-yellow) 0%, #b48f1f 100%);
    border: 1px solid var(--walnut-ink);
    border-radius: 4px 4px 8px 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: inset 0 -3px 0 rgba(58, 42, 26, 0.35);
    animation: pressDown 5.4s ease-in-out infinite;
    animation-play-state: paused;
}
.cell-workshop.is-pressing .press-die {
    animation-play-state: running;
}
.press-mark {
    color: var(--walnut-ink);
    font-family: "DM Serif Display", serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
    transform: rotate(180deg);
}
.press-disc {
    position: absolute;
    left: 50%;
    bottom: 26%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, #f6cf72 0%, var(--deep-amber) 55%, #8c6322 100%);
    box-shadow:
        inset 0 -3px 6px rgba(58, 42, 26, 0.4),
        inset 0 2px 2px rgba(255, 240, 200, 0.55),
        0 2px 4px rgba(58, 42, 26, 0.2);
    animation: discAppear 5.4s ease-in-out infinite;
    animation-play-state: paused;
    opacity: 0;
}
.cell-workshop.is-pressing .press-disc {
    animation-play-state: running;
}
@keyframes pressDown {
    0%   { top: 14%; }
    35%  { top: 14%; }
    48%  { top: 32%; }
    62%  { top: 32%; }
    80%  { top: 14%; }
    100% { top: 14%; }
}
@keyframes discAppear {
    0%, 35%   { opacity: 0; transform: translateX(-50%) scale(0.6); }
    62%       { opacity: 1; transform: translateX(-50%) scale(1); }
    80%       { opacity: 1; transform: translateX(-50%) scale(1); }
    95%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
}
.workshop-caption {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: 0.82rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.04em;
}

/* ============================================================
   CELL 10 — LEDGER
   ============================================================ */
.cell-ledger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.tally {
    width: 80%;
    max-width: 180px;
    height: auto;
    margin: 14px auto;
}
.tally-mark {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: tallyDraw 0.5s var(--ease-soft) forwards;
}
.cell-ledger.is-revealed .tally-mark.m-1 { animation-delay: 0.1s; }
.cell-ledger.is-revealed .tally-mark.m-2 { animation-delay: 0.3s; }
.cell-ledger.is-revealed .tally-mark.m-3 { animation-delay: 0.5s; }
.cell-ledger.is-revealed .tally-mark.m-4 { animation-delay: 0.7s; }
.cell-ledger.is-revealed .tally-mark.m-5 { animation-delay: 0.9s; }
.cell-ledger:not(.is-revealed) .tally-mark { animation: none; }
@keyframes tallyDraw {
    to { stroke-dashoffset: 0; }
}
.ledger-caption {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: 0.82rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.04em;
    text-align: center;
}

/* ============================================================
   CELL 11 — INDEX
   ============================================================ */
.cell-index {
    display: flex;
    flex-direction: column;
}
.badge-index {
    list-style: none;
    flex: 1;
    overflow: hidden;
}
.badge-index li {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px dotted var(--honey-amber);
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}
.badge-index li:last-child { border-bottom: none; }
.bx-leaf {
    width: 14px;
    height: 14px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, #cfd9b8, #7c8b3e);
    clip-path: ellipse(50% 70% at 50% 50%);
    transform: rotate(35deg);
}
.bx-name {
    color: var(--walnut-ink);
    font-weight: 600;
}

/* ============================================================
   CELL 12 — CLOSING DISC
   ============================================================ */
.cell-closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.closing-disc {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, #f6cf72 0%, var(--deep-amber) 50%, #6e4a18 100%);
    box-shadow:
        inset 0 -8px 14px rgba(58, 42, 26, 0.45),
        inset 0 4px 6px rgba(255, 240, 200, 0.6),
        0 3px 6px rgba(58, 42, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-soft);
}
.closing-disc:hover .closing-glyph {
    transform: rotate(6deg);
}
.closing-glyph {
    font-family: "DM Serif Display", serif;
    font-size: 2.6rem;
    color: rgba(58, 42, 26, 0.85);
    text-shadow:
        inset 0 -2px 0 rgba(58, 42, 26, 0.4),
        0 1px 0 rgba(255, 240, 200, 0.45);
    transition: transform 0.4s var(--ease-soft);
    transform-origin: center;
}
.closing-caption {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    color: var(--cocoa-tan);
    font-size: 0.84rem;
    letter-spacing: 0.06em;
}

/* ============================================================
   COLOPHON
   ============================================================ */
.colophon {
    height: 64px;
    padding: 0 calc(var(--gutter) + 8px);
    display: flex;
    align-items: center;
    border-top: 1px solid var(--honey-amber);
    margin-top: 12px;
}
.colophon-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.76rem;
    color: var(--cocoa-tan);
    letter-spacing: 0.04em;
}
.hum-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--honey-amber);
    border-radius: 999px;
    padding: 6px 14px;
    font-family: "Nunito", sans-serif;
    font-size: 0.74rem;
    color: var(--cocoa-tan);
    cursor: none;
    transition: background 0.24s ease, color 0.24s ease;
}
.hum-toggle[data-on="true"] {
    background: var(--deep-amber);
    color: var(--beeswax-cream);
    border-color: var(--deep-amber);
}
.hum-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cocoa-tan);
    transition: background 0.24s ease;
}
.hum-toggle[data-on="true"] .hum-dot {
    background: var(--beeswax-cream);
    animation: humPulse 1.6s ease-in-out infinite;
}
@keyframes humPulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}

/* ============================================================
   HIDDEN SPECIMEN — Trifolium dubium
   ============================================================ */
.hidden-specimen {
    position: fixed;
    bottom: 80px;
    right: 28px;
    width: 110px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px) rotate(-4deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 5;
}
.hidden-specimen.is-revealed {
    opacity: 0.85;
    transform: translateY(0) rotate(-4deg);
}
.hidden-specimen svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(1px 1px 0 rgba(176, 106, 42, 0.35));
}
.hidden-latin {
    display: block;
    text-align: center;
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: 0.66rem;
    color: var(--cocoa-tan);
    margin-top: 4px;
    letter-spacing: 0.03em;
    font-variant: small-caps;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    .cell-mark      { grid-column: 1 / 2; grid-row: 1 / 2; }
    .cell-manifesto { grid-column: 1 / 3; grid-row: 2 / 3; }
    .specimen-i     { grid-column: 2 / 3; grid-row: 1 / 2; }
    .cell-process   { grid-column: 1 / 2; grid-row: 3 / 5; }
    .cell-aurora    { grid-column: 1 / 3; grid-row: 5 / 6; }
    .specimen-ii    { grid-column: 2 / 3; grid-row: 3 / 4; }
    .cell-theory    { grid-column: 2 / 3; grid-row: 4 / 5; }
    .specimen-iii   { grid-column: 1 / 2; grid-row: 6 / 7; }
    .cell-workshop  { grid-column: 1 / 3; grid-row: 7 / 8; }
    .cell-ledger    { grid-column: 2 / 3; grid-row: 6 / 7; }
    .cell-index     { grid-column: 1 / 3; grid-row: 8 / 9; }
    .cell-closing   { grid-column: 1 / 3; grid-row: 9 / 10; }
    .bento::after { display: none; }
}
@media (max-width: 639px) {
    body { cursor: auto; }
    .bee-layer { display: none; }
    .bento {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }
    .cell {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
    .cell-manifesto { order: 1; }
    .cell-mark      { order: 2; }
    .specimen-i     { order: 3; }
    .specimen-ii    { order: 4; }
    .specimen-iii   { order: 5; }
    .cell-process   { order: 6; }
    .cell-theory    { order: 7; }
    .cell-aurora    { order: 8; }
    .cell-workshop  { order: 9; }
    .cell-ledger    { order: 10; }
    .cell-index     { order: 11; }
    .cell-closing   { order: 12; }
    .masthead-meta { display: none; }
    .colophon-inner { flex-wrap: wrap; gap: 10px; }
    .hidden-specimen { display: none; }
}
