/* ============================================
   freedom.compare - Goblincore Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --parchment-fog: #f2ece0;
    --damp-stone: #d9d0c1;
    --decayed-bark: #3b2f1e;
    --damp-earth: #4a4035;
    --oxidized-copper: #6b8f71;
    --mushroom-cap: #b89f78;
    --lichen-green: #7a8555;
    --amber-spore: #c4923a;
    --root-cellar: #221c14;

    --font-display: 'Rokkitt', 'Georgia', serif;
    --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;

    --elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--parchment-fog);
    color: var(--damp-earth);
    overflow-x: hidden;
    line-height: 1.7;
    letter-spacing: 0.01em;

    /* Bokeh background */
    background-image:
        radial-gradient(circle 280px at 15% 20%, rgba(196, 146, 58, 0.07) 0%, transparent 70%),
        radial-gradient(circle 200px at 75% 15%, rgba(107, 143, 113, 0.06) 0%, transparent 70%),
        radial-gradient(circle 150px at 40% 50%, rgba(184, 159, 120, 0.08) 0%, transparent 70%),
        radial-gradient(circle 250px at 85% 60%, rgba(196, 146, 58, 0.05) 0%, transparent 70%),
        radial-gradient(circle 180px at 25% 75%, rgba(107, 143, 113, 0.07) 0%, transparent 70%),
        radial-gradient(circle 300px at 60% 85%, rgba(184, 159, 120, 0.06) 0%, transparent 70%),
        radial-gradient(circle 120px at 10% 90%, rgba(196, 146, 58, 0.09) 0%, transparent 70%),
        radial-gradient(circle 220px at 90% 35%, rgba(107, 143, 113, 0.05) 0%, transparent 70%),
        radial-gradient(circle 160px at 50% 25%, rgba(184, 159, 120, 0.07) 0%, transparent 70%),
        radial-gradient(circle 240px at 30% 40%, rgba(196, 146, 58, 0.06) 0%, transparent 70%),
        radial-gradient(circle 190px at 70% 70%, rgba(107, 143, 113, 0.08) 0%, transparent 70%),
        radial-gradient(circle 130px at 55% 10%, rgba(184, 159, 120, 0.05) 0%, transparent 70%),
        radial-gradient(circle 260px at 20% 55%, rgba(196, 146, 58, 0.04) 0%, transparent 70%),
        radial-gradient(circle 170px at 80% 80%, rgba(107, 143, 113, 0.06) 0%, transparent 70%);
    background-size: 100% 100%;
    animation: bokehDrift 60s ease-in-out infinite alternate;
}

@keyframes bokehDrift {
    0% {
        background-position:
            15% 20%, 75% 15%, 40% 50%, 85% 60%, 25% 75%,
            60% 85%, 10% 90%, 90% 35%, 50% 25%, 30% 40%,
            70% 70%, 55% 10%, 20% 55%, 80% 80%;
    }
    100% {
        background-position:
            20% 25%, 70% 20%, 45% 45%, 80% 65%, 30% 70%,
            55% 90%, 15% 85%, 85% 40%, 55% 20%, 35% 45%,
            65% 75%, 50% 15%, 25% 50%, 75% 85%;
    }
}

/* --- SVG Filters (hidden) --- */
.svg-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* --- Floating Specimens --- */
#floating-specimens {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.specimen {
    position: absolute;
    pointer-events: none;
    will-change: transform;
}

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

.specimen-1 {
    width: 50px;
    height: 65px;
    top: 8%;
    left: 12%;
    opacity: 0.12;
    animation: drift1 35s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: -8s;
}

.specimen-2 {
    width: 40px;
    height: 40px;
    top: 25%;
    left: 85%;
    opacity: 0.1;
    animation: drift2 40s cubic-bezier(0.3, 0, 0.7, 1) infinite;
    animation-delay: -15s;
}

.specimen-3 {
    width: 35px;
    height: 50px;
    top: 45%;
    left: 5%;
    opacity: 0.14;
    animation: drift3 30s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation-delay: -5s;
}

.specimen-4 {
    width: 45px;
    height: 35px;
    top: 60%;
    left: 70%;
    opacity: 0.08;
    animation: drift4 38s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: -20s;
}

.specimen-5 {
    width: 30px;
    height: 42px;
    top: 15%;
    left: 55%;
    opacity: 0.11;
    animation: drift5 32s cubic-bezier(0.35, 0, 0.65, 1) infinite;
    animation-delay: -12s;
}

.specimen-6 {
    width: 38px;
    height: 30px;
    top: 75%;
    left: 30%;
    opacity: 0.09;
    animation: drift6 42s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    animation-delay: -25s;
}

.specimen-7 {
    width: 48px;
    height: 60px;
    top: 35%;
    left: 42%;
    opacity: 0.13;
    animation: drift7 28s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: -3s;
}

.specimen-8 {
    width: 36px;
    height: 36px;
    top: 85%;
    left: 60%;
    opacity: 0.1;
    animation: drift8 36s cubic-bezier(0.3, 0, 0.7, 1) infinite;
    animation-delay: -18s;
}

.specimen-9 {
    width: 42px;
    height: 55px;
    top: 50%;
    left: 90%;
    opacity: 0.15;
    animation: drift9 33s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: -10s;
}

.specimen-10 {
    width: 32px;
    height: 45px;
    top: 70%;
    left: 15%;
    opacity: 0.11;
    animation: drift10 45s cubic-bezier(0.35, 0, 0.65, 1) infinite;
    animation-delay: -22s;
}

@keyframes drift1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(80px, 40px) rotate(5deg); }
    50% { transform: translate(-30px, 100px) rotate(-3deg); }
    75% { transform: translate(50px, -20px) rotate(7deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-60px, 70px) rotate(-4deg); }
    50% { transform: translate(40px, -50px) rotate(6deg); }
    75% { transform: translate(-80px, 30px) rotate(-2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -30px) rotate(8deg); }
    50% { transform: translate(50px, 80px) rotate(-5deg); }
    75% { transform: translate(-40px, 40px) rotate(3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-70px, -60px) rotate(-6deg); }
    50% { transform: translate(30px, 50px) rotate(4deg); }
    75% { transform: translate(60px, -40px) rotate(-8deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift5 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, 90px) rotate(3deg); }
    50% { transform: translate(-60px, 20px) rotate(-7deg); }
    75% { transform: translate(20px, -70px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift6 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(90px, -40px) rotate(-5deg); }
    50% { transform: translate(-20px, -80px) rotate(4deg); }
    75% { transform: translate(-60px, 60px) rotate(-3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift7 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-50px, 60px) rotate(6deg); }
    50% { transform: translate(70px, -30px) rotate(-4deg); }
    75% { transform: translate(-30px, -50px) rotate(2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift8 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, 40px) rotate(-3deg); }
    50% { transform: translate(-40px, -60px) rotate(5deg); }
    75% { transform: translate(80px, -20px) rotate(-7deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift9 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-80px, 50px) rotate(4deg); }
    50% { transform: translate(20px, -40px) rotate(-6deg); }
    75% { transform: translate(-50px, -30px) rotate(3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift10 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(70px, -50px) rotate(-4deg); }
    50% { transform: translate(-30px, 70px) rotate(7deg); }
    75% { transform: translate(40px, 30px) rotate(-2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* --- Spread (Section) --- */
.spread {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

/* --- Hero Section --- */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle 300px at 30% 40%, rgba(196, 146, 58, 0.22) 0%, transparent 60%),
        radial-gradient(circle 250px at 60% 30%, rgba(107, 143, 113, 0.18) 0%, transparent 60%),
        radial-gradient(circle 200px at 50% 60%, rgba(184, 159, 120, 0.25) 0%, transparent 60%),
        radial-gradient(circle 280px at 80% 50%, rgba(196, 146, 58, 0.15) 0%, transparent 60%),
        radial-gradient(circle 220px at 20% 70%, rgba(107, 143, 113, 0.20) 0%, transparent 60%);
    z-index: -1;
    animation: heroFogLift 3s ease-out forwards;
}

@keyframes heroFogLift {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

.hero-content {
    text-align: center;
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--decayed-bark);
    letter-spacing: 0.02em;
    line-height: 1.05;
    text-shadow: 1px 1px 0px rgba(139, 119, 80, 0.3);
    opacity: 0;
    animation: titleFadeIn 3s ease-out 0.5s forwards;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charReveal 0.6s var(--elastic) forwards;
}

@keyframes titleFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes charReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    color: var(--damp-earth);
    margin-top: 1.5rem;
    opacity: 0;
    animation: subtitleFadeIn 2s ease-out 2.5s forwards;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@keyframes subtitleFadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Terrarium Panels --- */
.terrarium-panel {
    background: var(--damp-stone);
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(34, 28, 20, 0.3);
    padding: clamp(2rem, 4vw, 4rem);
    position: relative;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
}

.terrarium-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    filter: url(#noise);
    pointer-events: none;
    z-index: 0;
}

.terrarium-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.terrarium-grid.layout-alt {
    direction: rtl;
}

.terrarium-grid.layout-alt > * {
    direction: ltr;
}

.terrarium-grid.layout-stacked {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
}

.terrarium-grid.layout-stacked .terrarium-divider {
    width: 100%;
}

.terrarium-human,
.terrarium-wild {
    padding: 1rem 0;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.8s ease-out, transform 1s var(--elastic);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal .terrarium-human {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out 0.3s, transform 0.8s var(--elastic) 0.3s;
}

.reveal.visible .terrarium-human {
    opacity: 1;
    transform: translateX(0);
}

.reveal .terrarium-wild {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out 0.5s, transform 0.8s var(--elastic) 0.5s;
}

.reveal.visible .terrarium-wild {
    opacity: 1;
    transform: translateX(0);
}

/* --- Divider --- */
.terrarium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4px;
}

.terrarium-divider.horizontal {
    width: 100%;
    height: 4px;
}

.hand-drawn-line {
    width: 4px;
    height: 100%;
    min-height: 200px;
}

.hand-drawn-line.horizontal-line {
    width: 100%;
    height: 4px;
    min-height: auto;
}

.hand-drawn-line path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2s ease-out;
}

.reveal.visible .hand-drawn-line path {
    stroke-dashoffset: 0;
}

/* --- Typography --- */
.spread-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--decayed-bark);
    letter-spacing: 0.02em;
    line-height: 1.05;
    text-shadow: 1px 1px 0px rgba(139, 119, 80, 0.3);
    margin-bottom: 1.2rem;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.cluster-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--decayed-bark);
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-shadow: 1px 1px 0px rgba(139, 119, 80, 0.3);
    margin-bottom: 0.8rem;
}

.body-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    color: var(--damp-earth);
    line-height: 1.7;
    letter-spacing: 0.01em;
    max-width: 42ch;
    margin-bottom: 1rem;
}

.pull-quote {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--oxidized-copper);
    padding: 1rem 0 1rem 1.2rem;
    border-left: 3px solid var(--mushroom-cap);
    margin-top: 1.5rem;
    line-height: 1.4;
    max-width: 36ch;
}

/* --- Specimen Labels --- */
.specimen-label {
    display: inline-block;
    border: 1px dashed var(--mushroom-cap);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
    background: rgba(242, 236, 224, 0.5);
}

.label-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--lichen-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* --- Terrarium Cluster (3 mini terrariums) --- */
.terrarium-cluster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.mini-terrarium {
    background: var(--damp-stone);
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(34, 28, 20, 0.25);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    overflow: hidden;
}

.mini-terrarium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    filter: url(#noise);
    pointer-events: none;
}

.terrarium-cluster .mini-terrarium {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.8s var(--elastic);
}

.terrarium-cluster.visible .mini-terrarium:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.terrarium-cluster.visible .mini-terrarium:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.terrarium-cluster.visible .mini-terrarium:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

/* --- Root Network Section --- */
#root-network {
    min-height: 100vh;
    position: relative;
}

#root-network .specimen {
    opacity: 0.25;
}

.network-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mycelium-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mycelium-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 8s ease-out;
}

.network-container.visible .mycelium-path {
    stroke-dashoffset: 0;
}

.network-texts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-out, transform 0.8s var(--elastic);
}

.network-container.visible .network-node {
    opacity: 1;
    transform: scale(1);
}

.network-container.visible .network-node:nth-child(1) { transition-delay: 2s; }
.network-container.visible .network-node:nth-child(2) { transition-delay: 3s; }
.network-container.visible .network-node:nth-child(3) { transition-delay: 4s; }
.network-container.visible .network-node:nth-child(4) { transition-delay: 5s; }
.network-container.visible .network-node:nth-child(5) { transition-delay: 6s; }

.node-text {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--decayed-bark);
    background: rgba(242, 236, 224, 0.85);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
}

.closing-meditation {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.closing-text {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--oxidized-copper);
    opacity: 0;
    transition: opacity 2s ease-out 7s;
    max-width: 40ch;
    margin: 0 auto;
    line-height: 1.4;
}

.network-container.visible .closing-text {
    opacity: 1;
}

.closing-text .word {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.closing-text .word.visible {
    opacity: 1;
}

/* --- Specimen Navigation --- */
#specimen-nav {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 120px;
    justify-content: flex-end;
    align-items: flex-end;
}

.nav-stone {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.4s var(--elastic), box-shadow 0.3s ease;
    box-shadow: 2px 2px 8px rgba(34, 28, 20, 0.2);
}

.nav-stone:hover {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 3px 3px 12px rgba(34, 28, 20, 0.3);
}

.nav-stone::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--root-cellar);
    color: var(--parchment-fog);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.nav-stone:hover::after {
    opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .terrarium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .terrarium-grid.layout-alt {
        direction: ltr;
    }

    .terrarium-divider {
        width: 100%;
        height: 4px;
    }

    .hand-drawn-line {
        width: 100%;
        height: 4px;
        min-height: auto;
    }

    .hand-drawn-line path {
        stroke-dasharray: 1200;
    }

    .terrarium-cluster {
        grid-template-columns: 1fr;
    }

    .specimen-3,
    .specimen-6,
    .specimen-8,
    .specimen-9,
    .specimen-10 {
        display: none;
    }

    .specimen-1,
    .specimen-2,
    .specimen-4,
    .specimen-5,
    .specimen-7 {
        opacity: 0.06;
    }

    .network-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        margin: 0.5rem 0;
    }

    .network-texts {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }

    .node-text {
        white-space: normal;
        text-align: center;
    }

    .closing-meditation {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
    }

    #specimen-nav {
        bottom: 1rem;
        right: 1rem;
        max-width: 100px;
    }

    .nav-stone::after {
        display: none;
    }

    .spread {
        padding: 3rem 1rem;
    }

    .body-text {
        max-width: none;
    }

    .pull-quote {
        max-width: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}

@media (max-width: 480px) {
    .spread {
        padding: 2rem 0.75rem;
    }

    .terrarium-panel {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .mini-terrarium {
        padding: 1.2rem;
        border-radius: 14px;
    }
}
