/* ==========================================================================
   layer2.quest — Memphis manifesto for the second layer
   Palette:
     #F4A28C salmon-terrazzo
     #7FD8BE memphis-mint
     #5C1A22 oxblood-resolution
     #1B3FBA cobalt-manifesto
     #FFD56B butter-pop
     #F6EFE2 cream-vellum
     #16131A ink-black
   Typography:
     Cormorant Garamond  (display + body serif)
     Space Mono          (chapter markers / captions / micro)
   ========================================================================== */

:root {
    --salmon:  #F4A28C;
    --mint:    #7FD8BE;
    --oxblood: #5C1A22;
    --cobalt:  #1B3FBA;
    --butter:  #FFD56B;
    --cream:   #F6EFE2;
    --ink:     #16131A;

    --gradient-sunset: linear-gradient(112deg, #F4A28C 0%, #FFD56B 48%, #7FD8BE 100%);
    --gradient-dusk:   linear-gradient(196deg, #1B3FBA 0%, #5C1A22 100%);

    --serif: "Cormorant Garamond", "Lora", Georgia, "Times New Roman", serif;
    --mono:  "Space Mono", "Courier New", ui-monospace, monospace;

    --baseline: 8px;
    --content-pad: clamp(20px, 4.6vw, 72px);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    background: var(--cream);
}

body {
    font-family: var(--serif);
    color: var(--ink);
    background-color: var(--cream);
    /* Bacterio-Cream micro-pattern: sparse cobalt dots + cream half-circles */
    background-image:
        radial-gradient(circle at 14px 22px, var(--cobalt) 1.6px, transparent 1.8px),
        radial-gradient(circle at 76px 46px, var(--cobalt) 1.6px, transparent 1.8px),
        radial-gradient(circle at 40px 92px, var(--cobalt) 1.6px, transparent 1.8px),
        radial-gradient(circle at 108px 70px, var(--cobalt) 1.4px, transparent 1.6px),
        radial-gradient(circle at 98px 106px, var(--cobalt) 1.6px, transparent 1.8px),
        radial-gradient(ellipse 6px 4px at 36px 60px, var(--salmon) 60%, transparent 62%),
        radial-gradient(ellipse 6px 4px at 92px 14px, var(--butter) 60%, transparent 62%),
        radial-gradient(ellipse 6px 4px at 64px 102px, var(--mint) 60%, transparent 62%);
    background-size: 120px 120px;
    background-color: var(--cream);
    line-height: 1.62;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.bacterio-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.page-bacterio {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 12% 8%, rgba(244, 162, 140, 0.08), transparent 32%),
        radial-gradient(ellipse at 88% 92%, rgba(27, 63, 186, 0.07), transparent 38%);
}

main {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Brand mark (top-left, very small)
   ========================================================================== */
.brand {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 40;
    mix-blend-mode: multiply;
}

.brand-mark {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--cream);
    padding: 8px 14px 9px;
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--cobalt);
}

.brand-name {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 700;
}

.brand-meta {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cobalt);
}

/* ==========================================================================
   Right-edge chapter compass
   ========================================================================== */
.compass {
    position: fixed;
    top: 0;
    right: 0;
    width: 56px;
    height: 100vh;
    background: var(--cream);
    border-left: 2px solid var(--ink);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px 0;
    box-shadow: -4px 0 0 rgba(22, 19, 26, 0.04);
}

.compass-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 4px;
}

.compass-square {
    width: 22px;
    height: 22px;
    border: 2px solid var(--ink);
    background: var(--cream);
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease;
    cursor: pointer;
}

.compass-square:hover {
    transform: rotate(8deg);
}

.compass-square .compass-fill {
    position: absolute;
    inset: 0;
    background: var(--gradient-dusk);
    clip-path: inset(100% 0 0 0);
    transition: clip-path 360ms ease-out;
}

.compass-square[data-chapter="1"] .compass-fill {
    background: linear-gradient(196deg, #F4A28C 0%, #1B3FBA 100%);
}

.compass-square[data-chapter="2"] .compass-fill {
    background: var(--gradient-sunset);
}

.compass-square[data-chapter="3"] .compass-fill {
    background: var(--gradient-dusk);
}

.compass-tick {
    position: absolute;
    bottom: 24px;
    width: 12px;
    height: 12px;
    background: var(--ink);
    transform: rotate(45deg);
}

/* ==========================================================================
   Generic chapter container
   ========================================================================== */
.chapter {
    position: relative;
    width: 100%;
    min-height: 168vh;
    padding: 80px var(--content-pad) 80px;
    padding-right: calc(56px + var(--content-pad));
    overflow: hidden;
    isolation: isolate;
}

.terrazzo-panel,
.butter-panel,
.oxblood-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    height: 96%;
    z-index: 0;
    pointer-events: none;
}

.terrazzo-panel {
    background: var(--salmon);
    background-image:
        radial-gradient(circle at 18% 32%, rgba(27, 63, 186, 0.12) 6px, transparent 7px),
        radial-gradient(circle at 64% 18%, rgba(255, 213, 107, 0.45) 8px, transparent 9px),
        radial-gradient(circle at 88% 64%, rgba(127, 216, 190, 0.35) 7px, transparent 8px),
        radial-gradient(circle at 38% 78%, rgba(92, 26, 34, 0.18) 5px, transparent 6px),
        radial-gradient(circle at 76% 88%, rgba(22, 19, 26, 0.18) 4px, transparent 5px),
        radial-gradient(circle at 12% 88%, rgba(255, 213, 107, 0.4) 6px, transparent 7px);
    background-size: 280px 240px;
    box-shadow: 14px 14px 0 rgba(22, 19, 26, 0.08);
}

.butter-panel {
    background: var(--butter);
    width: 70%;
    left: auto;
    right: 0;
    background-image:
        radial-gradient(circle at 22% 28%, rgba(27, 63, 186, 0.16) 5px, transparent 6px),
        radial-gradient(circle at 70% 14%, rgba(127, 216, 190, 0.45) 8px, transparent 9px),
        radial-gradient(circle at 86% 60%, rgba(244, 162, 140, 0.55) 7px, transparent 8px),
        radial-gradient(circle at 32% 78%, rgba(92, 26, 34, 0.2) 5px, transparent 6px),
        radial-gradient(circle at 80% 92%, rgba(22, 19, 26, 0.18) 4px, transparent 5px);
    background-size: 260px 220px;
}

.oxblood-panel {
    background: var(--oxblood);
    width: 100%;
    left: 0;
    right: 0;
    height: 100%;
    background-image:
        radial-gradient(circle at 16% 22%, rgba(255, 213, 107, 0.18) 6px, transparent 7px),
        radial-gradient(circle at 72% 38%, rgba(127, 216, 190, 0.16) 7px, transparent 8px),
        radial-gradient(circle at 86% 78%, rgba(244, 162, 140, 0.18) 6px, transparent 7px),
        radial-gradient(circle at 30% 88%, rgba(246, 239, 226, 0.12) 5px, transparent 6px);
    background-size: 320px 260px;
}

/* ==========================================================================
   Z grid — three nested Zs of decreasing scale.
   We use CSS grid as a base and then nudge each cell off-grid by 8–24px
   to honor the design's anti-grid rule.
   ========================================================================== */
.z-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px 24px;
    z-index: 2;
}

.z-grid-1 {
    grid-template-rows: minmax(280px, auto) minmax(380px, auto) minmax(360px, auto);
}

.z-grid-2 {
    grid-template-rows: minmax(260px, auto) minmax(360px, auto) minmax(340px, auto);
    /* slightly smaller */
    transform: scale(0.985);
    transform-origin: top right;
}

.z-grid-3 {
    grid-template-rows: minmax(240px, auto) minmax(340px, auto) minmax(320px, auto);
    transform: scale(0.97);
    transform-origin: top center;
}

/* Cell positions form the architectural Z */
.z-origin {
    grid-column: 1 / span 7;
    grid-row: 1;
    align-self: start;
    transform: translate(-12px, 0);
    z-index: 4;
}

.z-apex {
    grid-column: 9 / span 4;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    transform: translate(8px, 18px);
    z-index: 4;
}

.z-stride {
    grid-column: 4 / span 7;
    grid-row: 2;
    justify-self: center;
    transform: translate(-14px, -8px);
    z-index: 5;
}

.z-landing {
    grid-column: 1 / span 5;
    grid-row: 3;
    align-self: end;
    transform: translate(8px, 12px);
    z-index: 4;
}

.z-resolution {
    grid-column: 7 / span 6;
    grid-row: 3;
    align-self: end;
    justify-self: end;
    transform: translate(16px, -8px);
    z-index: 4;
    text-align: right;
}

/* ==========================================================================
   Headlines (Cormorant Garamond declarations)
   ========================================================================== */
.headline {
    font-family: var(--serif);
    margin: 0;
    color: var(--ink);
    line-height: 0.96;
    letter-spacing: -0.018em;
    font-feature-settings: "liga", "dlig", "kern";
    word-break: keep-all;
}

.headline.opener {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(3.4rem, 11vw, 9.5rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-top: 14px;
}

.headline.resolution {
    font-weight: 500;
    font-style: normal;
    font-size: clamp(2rem, 6vw, 4.4rem);
    letter-spacing: -0.005em;
    line-height: 1.04;
}

.headline-line {
    display: inline-block;
}

.opener-3 {
    font-style: normal;
    font-weight: 500;
}

.on-oxblood,
.on-oxblood * {
    color: var(--cream);
}

.period-cobalt {
    color: var(--cobalt);
}

.period-butter {
    color: var(--butter);
}

.quest-gradient {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    padding: 0 0.04em;
}

/* ==========================================================================
   Mono microtype
   ========================================================================== */
.chapter-marker,
.byline-mono,
.caption-mono,
.coda-mono,
.footer-mono {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

.chapter-marker {
    margin-bottom: 18px;
    color: var(--cobalt);
    display: inline-block;
    padding: 6px 10px;
    background: var(--cream);
    border: 1.5px solid var(--ink);
    box-shadow: 3px 3px 0 var(--cobalt);
}

.chapter-marker-light {
    color: var(--butter);
    background: transparent;
    border-color: var(--cream);
    box-shadow: 3px 3px 0 var(--butter);
}

.byline-mono {
    color: var(--cobalt);
    margin-top: 18px;
    font-size: 11px;
}

.byline-light {
    color: var(--butter);
}

.caption-mono {
    font-size: 11px;
    color: var(--ink);
    margin-top: 8px;
}

.caption-apex {
    margin-top: 4px;
    color: var(--cobalt);
}

.caption-light {
    color: var(--cream);
}

.coda-mono {
    font-size: 13px;
    color: var(--cream);
    text-align: center;
    margin-top: 24px;
    letter-spacing: 0.34em;
}

/* ==========================================================================
   Body prose
   ========================================================================== */
.prose {
    font-family: var(--serif);
    font-size: 1.18rem;
    line-height: 1.62;
    max-width: 62ch;
    color: var(--ink);
    margin: 0;
    padding: 24px 28px;
    background: var(--cream);
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 var(--cobalt);
    position: relative;
    z-index: 6;
}

.prose em {
    font-style: italic;
    color: var(--oxblood);
}

.prose .ink-cobalt {
    color: var(--cobalt);
    font-weight: 500;
}

.ink-on-butter {
    border-color: var(--cobalt);
    box-shadow: 8px 8px 0 var(--oxblood);
    background: var(--cream);
}

.prose-light {
    background: rgba(22, 19, 26, 0.55);
    color: var(--cream);
    border-color: var(--butter);
    box-shadow: 8px 8px 0 var(--cobalt);
    backdrop-filter: blur(2px);
}

.prose-light .ink-cobalt,
.prose-light .ink-butter {
    color: var(--butter);
    font-weight: 500;
}

/* ==========================================================================
   Photographic plate (duotoned svg illustrations playing the role of duotoned photos)
   ========================================================================== */
.plate {
    position: relative;
    margin: 0;
    width: clamp(280px, 32vw, 480px);
    aspect-ratio: 480 / 640;
    background: var(--cream);
    padding: 14px 14px 36px;
    border: 1.5px solid rgba(22, 19, 26, 0.16);
    box-shadow: 0 18px 40px -12px rgba(22, 19, 26, 0.32);
    transform-origin: center;
}

.plate::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(22, 19, 26, 0.18);
    pointer-events: none;
}

.plate-1 {
    transform: rotate(-3deg);
    filter: contrast(1.05) saturate(0.92);
}

.plate-1 .plate-svg {
    filter: grayscale(0.18);
}

.plate-2 {
    transform: rotate(5deg);
    box-shadow: 0 22px 40px -12px rgba(27, 63, 186, 0.36);
}

.plate-3 {
    transform: rotate(0deg);
    background: var(--cream);
}

.plate-svg {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--ink);
}

.plate figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    text-align: left;
    color: var(--ink);
}

.plate-3 figcaption {
    color: var(--ink);
}

/* ==========================================================================
   Memphis interrupt shapes — absolute, rotated, non-grid
   ========================================================================== */
.memphis-svg {
    display: block;
    overflow: visible;
    transition: transform 1400ms ease-out, filter 1400ms ease-out;
    will-change: transform;
}

/* Default sizes for shape types */
.squiggle { width: 280px; height: 340px; }
.pill     { width: 200px; height: 60px; }
.bolt     { width: 80px;  height: 140px; }
.eyebrow  { width: 120px; height: 36px; }
.halfdisc { width: 200px; height: 100px; }
.triangle { width: 160px; height: 160px; }
.dotfield { width: 240px; height: 120px; }
.arc      { width: 240px; height: 80px; }
.checker-cube { width: 220px; height: 220px; }

/* Apex placements */
.z-apex .squiggle {
    transform: rotate(12deg);
}
.z-apex .checker-cube {
    transform: rotate(-9deg);
}
.z-apex .arc {
    transform: rotate(2deg);
    width: 280px;
    height: 110px;
}

/* In-stride floating shapes */
.z-stride {
    position: relative;
}

.z-stride .pill {
    position: absolute;
    top: -28px;
    right: -36px;
    transform: rotate(-14deg);
    z-index: 7;
}

.z-stride .bolt {
    position: absolute;
    bottom: -52px;
    left: -28px;
    transform: rotate(7deg);
    z-index: 7;
}

.z-stride .eyebrow {
    position: absolute;
    top: 40%;
    right: 56%;
    transform: rotate(19deg);
    z-index: 6;
}

.z-stride .arc {
    position: absolute;
    top: -44px;
    left: 30%;
    transform: rotate(-5deg);
    z-index: 7;
}

.z-stride .pill-mint {
    top: auto;
    bottom: -32px;
    right: 8%;
    transform: rotate(-22deg);
}

.z-stride .bolt-2 {
    bottom: -64px;
    left: auto;
    right: -18px;
    transform: rotate(-12deg);
}

.z-stride .halfdisc-2 {
    top: 38%;
    left: -56px;
    right: auto;
    transform: rotate(-90deg);
    bottom: auto;
    position: absolute;
    z-index: 6;
}

.z-stride .triangle-2 {
    position: absolute;
    bottom: -30px;
    left: 22%;
    transform: rotate(28deg);
    z-index: 7;
}

.z-stride .eyebrow-3 {
    position: absolute;
    bottom: -36px;
    left: 30%;
    transform: rotate(8deg);
    z-index: 7;
}

/* Free-floating chapter shapes */
.shape-float-a {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: rotate(-19deg);
    z-index: 1;
    opacity: 0.95;
}

.shape-float-b {
    position: absolute;
    top: 16%;
    right: 24%;
    transform: rotate(34deg);
    z-index: 1;
    opacity: 0.95;
}

.shape-float-c {
    position: absolute;
    bottom: 12%;
    right: 12%;
    transform: rotate(-12deg);
    z-index: 1;
    opacity: 0.92;
}

.chapter-2 .shape-float-a {
    left: 4%;
    top: 70%;
    transform: rotate(22deg);
}

.chapter-2 .shape-float-b {
    top: 8%;
    right: 10%;
    transform: rotate(-7deg);
}

.chapter-2 .shape-float-c {
    bottom: 8%;
    right: 18%;
    transform: rotate(14deg);
}

/* Squiggle path subtle hand-drawn breath */
.squiggle-path {
    transition: stroke-width 1400ms ease-out, d 1400ms ease-out;
}

/* Bolt poly subtle morph */
.bolt-poly {
    transition: transform 1400ms ease-out, fill 600ms ease-out;
    transform-origin: center;
    transform-box: fill-box;
}

/* When a Memphis shape becomes "morphed" via JS (proximity), we tweak its CSS variable.
   The script sets --warp on the element. */
.morph-shape.is-warped {
    filter: drop-shadow(0 4px 0 rgba(22, 19, 26, 0.18));
}

.morph-shape.is-warped .squiggle-path {
    stroke-width: 3.4;
}

.morph-shape.is-warped .bolt-poly {
    transform: scale(1.06);
}

.morph-shape.is-warped[data-shape="pill"] {
    transform: rotate(var(--rot, 0deg)) scaleX(0.96) scaleY(1.08);
}

.morph-shape.is-warped[data-shape="triangle"] {
    transform: rotate(var(--rot, 0deg)) skewX(2deg) scaleY(1.04);
}

.morph-shape.is-warped[data-shape="halfdisc"] {
    transform: rotate(var(--rot, 0deg)) scaleY(1.06) scaleX(1.04);
}

.morph-shape.is-warped[data-shape="checker"] {
    transform: rotate(var(--rot, 0deg)) skewY(-3deg);
}

.morph-shape.is-warped[data-shape="arc"] {
    transform: rotate(var(--rot, 0deg)) translateY(-4px);
}

.morph-shape.is-warped[data-shape="eyebrow"] {
    transform: rotate(var(--rot, 0deg)) scaleX(1.08);
}

/* ==========================================================================
   Organic blob (gravitational anchor)
   ========================================================================== */
.blob-wrap {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    filter: blur(0.4px);
}

.blob-wrap-1 {
    width: 720px;
    height: 640px;
    bottom: -240px;
    right: -120px;
    transform: rotate(-12deg);
    opacity: 0.92;
}

.blob-wrap-2 {
    width: 640px;
    height: 580px;
    top: 38%;
    left: -180px;
    transform: rotate(18deg);
    opacity: 0.95;
}

.blob-wrap-3 {
    width: 700px;
    height: 620px;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%) rotate(-6deg);
    opacity: 0.94;
}

.blob {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.blob-path {
    transition: d 4200ms cubic-bezier(0.45, 0.05, 0.35, 0.95);
}

/* The breathing animation is set up via @keyframes on transform — JS handles
   the path interpolation for the morph itself. */
.blob {
    animation: blob-breath 22s ease-in-out infinite;
}

.blob-wrap-1 .blob { animation-delay: -2s; }
.blob-wrap-2 .blob { animation-delay: -7s; }
.blob-wrap-3 .blob { animation-delay: -13s; }

@keyframes blob-breath {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25%      { transform: rotate(2deg) scale(1.018); }
    50%      { transform: rotate(-1deg) scale(0.992); }
    75%      { transform: rotate(1.6deg) scale(1.012); }
}

/* ==========================================================================
   Coda (centered final blob)
   ========================================================================== */
.coda {
    position: relative;
    z-index: 4;
    margin-top: 80px;
    padding: 60px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coda-blob {
    width: clamp(260px, 38vw, 480px);
    height: auto;
    display: block;
    animation: blob-breath 26s ease-in-out infinite;
    filter: drop-shadow(0 24px 60px rgba(22, 19, 26, 0.4));
}

/* ==========================================================================
   Inline ink helpers (for span color inversions)
   ========================================================================== */
.ink-cobalt {
    color: var(--cobalt);
}

.ink-butter {
    color: var(--butter);
    font-style: italic;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.page-footer {
    position: relative;
    z-index: 2;
    padding: 36px var(--content-pad) 56px;
    padding-right: calc(56px + var(--content-pad));
    background: var(--cream);
    border-top: 2px solid var(--ink);
}

.footer-mono {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--ink);
    margin: 0;
    text-align: center;
}

/* ==========================================================================
   Mid-size — keep Z structure but tighten gutters
   ========================================================================== */
@media (max-width: 1100px) {
    .chapter {
        min-height: auto;
        padding-bottom: 120px;
    }

    .z-origin { grid-column: 1 / span 12; transform: translate(0, 0); }
    .z-apex { grid-column: 8 / span 5; transform: translate(0, 6px); }
    .z-stride { grid-column: 1 / span 12; transform: translate(0, 0); margin-top: 24px; }
    .z-landing { grid-column: 1 / span 7; transform: translate(0, 0); }
    .z-resolution { grid-column: 7 / span 6; transform: translate(0, 0); }

    .terrazzo-panel,
    .butter-panel { width: 84%; }
}

@media (max-width: 700px) {
    .chapter {
        padding: 60px 18px 100px;
        padding-right: 18px;
    }

    .compass {
        width: 36px;
    }

    .compass-label { font-size: 8px; letter-spacing: 0.22em; }
    .compass-square { width: 16px; height: 16px; }

    .z-origin,
    .z-apex,
    .z-stride,
    .z-landing,
    .z-resolution {
        grid-column: 1 / -1;
        text-align: left;
    }

    .z-apex {
        justify-self: start;
    }

    .z-resolution {
        text-align: left;
        justify-self: start;
    }

    .squiggle, .checker-cube, .triangle, .halfdisc, .pill, .bolt, .arc, .dotfield {
        width: 60vw;
        height: auto;
    }

    .plate {
        width: 80vw;
    }

    .blob-wrap-1,
    .blob-wrap-2,
    .blob-wrap-3 {
        opacity: 0.6;
    }

    .terrazzo-panel,
    .butter-panel {
        width: 100%;
    }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .blob,
    .coda-blob {
        animation: none !important;
    }
    .memphis-svg {
        transition: none !important;
    }
    .blob-path {
        transition: none !important;
    }
}
