/* miris.xyz — Blobitecture HUD Burgundy */

:root {
    --primary-dark: #1A0610;
    --primary-deep: #3E0E1C;
    --primary-mid: #6B1D35;
    --warm-highlight: #A83250;
    --muted-rose: #D4A0A8;
    --pale-blush: #E8C8CC;
    --amber-shaft: #C9873A;
    --deep-shadow: #0D0308;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background-color: var(--primary-dark);
    color: var(--pale-blush);
    overflow-x: hidden;
    line-height: 1.7;
}

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

/* ========== HUD Overlay ========== */
.hud-top {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 10px 28px;
    background: rgba(62, 14, 28, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(107, 29, 53, 0.3);
    opacity: 0;
    animation: hudFadeIn 0.6s ease 0.3s forwards;
}

.hud-label,
.hud-scroll-pct,
.hud-chamber-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-rose);
    opacity: 0.8;
    white-space: nowrap;
}

.hud-chamber-name {
    color: var(--amber-shaft);
    opacity: 0.6;
    font-size: 10px;
}

.hud-right {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 100;
    width: 20px;
    height: 200px;
    background: rgba(62, 14, 28, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(107, 29, 53, 0.3);
    overflow: hidden;
    opacity: 0;
    animation: hudFadeIn 0.6s ease 0.45s forwards;
}

.hud-wave-svg {
    width: 100%;
    height: 100%;
}

.hud-wave-path {
    fill: none;
    stroke: var(--warm-highlight);
    stroke-width: 1.5;
    opacity: 0.6;
    transition: d 200ms ease;
}

.hud-logo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    width: 48px;
    height: 48px;
    background: rgba(62, 14, 28, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 1px solid rgba(107, 29, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    opacity: 0;
    animation: hudFadeIn 0.6s ease 0.6s forwards;
}

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

.hud-top { animation: hudFadeInCenter 0.6s ease 0.3s forwards; }
@keyframes hudFadeInCenter {
    from { opacity: 0; transform: translateX(-50%) translateY(6px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hud-right { animation: hudFadeInRight 0.6s ease 0.45s forwards; }
@keyframes hudFadeInRight {
    from { opacity: 0; transform: translateY(-50%) translateX(6px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.blob-logo {
    width: 100%;
    height: 100%;
}

.blob-logo path {
    fill: var(--warm-highlight);
    opacity: 0.7;
}

/* HUD Dim in closing */
.hud-dimmed .hud-top,
.hud-dimmed .hud-right,
.hud-dimmed .hud-logo {
    opacity: 0.3 !important;
    transition: opacity 500ms ease;
}

/* ========== Chambers ========== */
.chamber {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ========== Chamber 1: Hero ========== */
.chamber-hero {
    background: radial-gradient(ellipse at 35% 45%, var(--primary-deep), var(--primary-dark) 70%);
}

.hero-conic-bg {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 220deg at 40% 60%, var(--primary-deep), var(--primary-mid), var(--primary-dark));
    opacity: 0.4;
    animation: heroRotate 120s linear infinite;
    will-change: transform;
}

@keyframes heroRotate {
    to { transform: rotate(360deg); }
}

.hero-blob-text {
    position: relative;
    z-index: 2;
    clip-path: url(#blob-hero);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 12vw, 9rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: transparent;
    background: linear-gradient(135deg, var(--warm-highlight), var(--amber-shaft), var(--primary-mid), var(--muted-rose));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: heroGradient 8s ease-in-out infinite;
    padding: 0.15em 0.3em;
    white-space: nowrap;
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 100% 0%; }
    66% { background-position: 50% 100%; }
}

.hero-bg-glow {
    position: absolute;
    width: 55vmin;
    height: 55vmin;
    border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
    background: radial-gradient(circle, var(--primary-mid), transparent 70%);
    opacity: 0.25;
    animation: glowPulse 6s ease-in-out infinite, glowMorph 15s ease-in-out infinite;
    z-index: 1;
    will-change: transform, border-radius;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50% { transform: scale(1.08); opacity: 0.35; }
}

@keyframes glowMorph {
    0%, 100% { border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%; }
    25% { border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%; }
    50% { border-radius: 50% 50% 60% 40% / 55% 45% 45% 55%; }
    75% { border-radius: 45% 55% 50% 50% / 40% 60% 55% 45%; }
}

/* ========== Chamber 2: Manifesto ========== */
.chamber-manifesto {
    background: radial-gradient(ellipse at 60% 40%, var(--primary-deep), var(--primary-dark) 75%);
    padding: 4rem 3vw;
}

.manifesto-wrap {
    position: relative;
    max-width: 800px;
    width: 90%;
}

.manifesto-blob-shape {
    float: right;
    width: 200px;
    height: 240px;
    margin: 0 0 1.5rem 2rem;
    clip-path: url(#blob-manifesto);
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 6px,
            rgba(168, 50, 80, 0.18) 6px,
            rgba(168, 50, 80, 0.18) 7px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 18px,
            rgba(107, 29, 53, 0.12) 18px,
            rgba(107, 29, 53, 0.12) 19px
        );
    background-color: rgba(62, 14, 28, 0.5);
    shape-outside: ellipse(50% 50%);
    shape-margin: 1.5rem;
}

.manifesto-text {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: var(--pale-blush);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1), color 800ms ease;
}

.manifesto-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wavy underline micro-motif */
.wavy-underline {
    position: relative;
    text-decoration: none;
}

.wavy-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 4px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 4'%3E%3Cpath d='M0,2 Q3,0 6,2 Q9,4 12,2 Q15,0 18,2 Q21,4 24,2' fill='none' stroke='%23A83250' stroke-width='1'/%3E%3C/svg%3E") repeat-x;
    background-size: 12px 4px;
    opacity: 0.7;
}

/* ========== Chamber 3: Collage ========== */
.chamber-collage {
    min-height: 200vh;
    background: radial-gradient(ellipse at 45% 30%, var(--primary-deep), var(--primary-dark) 80%);
    align-items: flex-start;
    padding: 10vh 0;
}

.collage-field {
    position: relative;
    width: 85vw;
    max-width: 1100px;
    min-height: 160vh;
}

.collage-fragment {
    position: absolute;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.collage-fragment.visible {
    opacity: 1;
    transform: scale(1) rotate(var(--rot, 0deg));
}

.fragment-interior {
    width: 100%;
    height: 100%;
}

/* Torn edge overlays */
.tear-edge {
    position: absolute;
    left: 0;
    right: 0;
    height: 15%;
    pointer-events: none;
}

.tear-top {
    top: 0;
    background: var(--primary-dark);
    clip-path: polygon(
        0% 0%, 100% 0%,
        100% 40%, 95% 65%, 88% 35%, 80% 70%, 72% 30%, 65% 55%, 58% 25%, 50% 60%,
        42% 20%, 35% 50%, 28% 30%, 20% 65%, 12% 40%, 5% 55%, 0% 35%
    );
    opacity: 0.5;
}

.tear-bottom {
    bottom: 0;
    background: var(--primary-dark);
    clip-path: polygon(
        0% 60%, 8% 35%, 15% 70%, 22% 40%, 30% 65%, 38% 30%, 45% 55%, 52% 25%,
        60% 50%, 68% 35%, 75% 60%, 82% 30%, 90% 55%, 95% 40%, 100% 60%,
        100% 100%, 0% 100%
    );
    opacity: 0.5;
}

/* Fragment positions and shapes — each with unique blob-radius */
.fragment-1 {
    width: 280px;
    height: 200px;
    top: 5%;
    left: 8%;
    clip-path: url(#blob-1);
    --rot: 1deg;
}

.fragment-2 {
    width: 220px;
    height: 260px;
    top: 3%;
    right: 12%;
    clip-path: url(#blob-2);
    --rot: -2deg;
}

.fragment-3 {
    width: 250px;
    height: 180px;
    top: 28%;
    left: 25%;
    clip-path: url(#blob-3);
    mix-blend-mode: multiply;
    --rot: 2deg;
}

.fragment-4 {
    width: 200px;
    height: 240px;
    top: 25%;
    right: 5%;
    clip-path: url(#blob-4);
    --rot: -1deg;
}

.fragment-5 {
    width: 300px;
    height: 200px;
    top: 50%;
    left: 5%;
    clip-path: url(#blob-5);
    --rot: -1deg;
}

.fragment-6 {
    width: 240px;
    height: 220px;
    top: 55%;
    left: 40%;
    clip-path: url(#blob-6);
    mix-blend-mode: multiply;
    --rot: 3deg;
}

.fragment-7 {
    width: 200px;
    height: 180px;
    top: 75%;
    right: 15%;
    clip-path: url(#blob-7);
    --rot: 3deg;
}

.fragment-8 {
    width: 220px;
    height: 200px;
    top: 82%;
    left: 15%;
    clip-path: url(#blob-8);
    --rot: -2deg;
}

.fragment-9 {
    width: 190px;
    height: 170px;
    top: 90%;
    right: 30%;
    clip-path: url(#blob-3);
    --rot: 1deg;
}

/* Fragment CSS patterns — topographic lines, grid paper, crosshatch, waves, anatomy */
.topo-lines {
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
            rgba(168, 50, 80, 0.2) 5px,
            rgba(168, 50, 80, 0.2) 6px
        );
    background-color: rgba(62, 14, 28, 0.6);
}

.topo-lines-alt {
    background:
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 4px,
            rgba(212, 160, 168, 0.12) 4px,
            rgba(212, 160, 168, 0.12) 5px
        );
    background-color: rgba(107, 29, 53, 0.4);
}

.grid-paper {
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 15px,
            rgba(168, 50, 80, 0.15) 15px,
            rgba(168, 50, 80, 0.15) 16px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 15px,
            rgba(168, 50, 80, 0.15) 15px,
            rgba(168, 50, 80, 0.15) 16px
        );
    background-color: rgba(26, 6, 16, 0.7);
}

.grid-paper-alt {
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(201, 135, 58, 0.1) 20px,
            rgba(201, 135, 58, 0.1) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(201, 135, 58, 0.1) 20px,
            rgba(201, 135, 58, 0.1) 21px
        );
    background-color: rgba(62, 14, 28, 0.5);
}

.crosshatch {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 4px,
            rgba(168, 50, 80, 0.12) 4px,
            rgba(168, 50, 80, 0.12) 5px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 4px,
            rgba(168, 50, 80, 0.12) 4px,
            rgba(168, 50, 80, 0.12) 5px
        );
    background-color: rgba(62, 14, 28, 0.6);
}

.crosshatch-alt {
    background:
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 6px,
            rgba(212, 160, 168, 0.08) 6px,
            rgba(212, 160, 168, 0.08) 7px
        ),
        repeating-linear-gradient(
            -30deg,
            transparent,
            transparent 6px,
            rgba(212, 160, 168, 0.08) 6px,
            rgba(212, 160, 168, 0.08) 7px
        );
    background-color: rgba(107, 29, 53, 0.35);
}

.wave-pattern {
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(201, 135, 58, 0.12) 8px,
            rgba(201, 135, 58, 0.12) 9px
        );
    background-color: rgba(26, 6, 16, 0.65);
}

.tide-chart {
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 10px,
            rgba(168, 50, 80, 0.1) 10px,
            rgba(168, 50, 80, 0.1) 11px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 7px,
            rgba(201, 135, 58, 0.08) 7px,
            rgba(201, 135, 58, 0.08) 8px
        );
    background-color: rgba(62, 14, 28, 0.55);
}

.anatomy-lines {
    background:
        repeating-linear-gradient(
            75deg,
            transparent,
            transparent 3px,
            rgba(212, 160, 168, 0.1) 3px,
            rgba(212, 160, 168, 0.1) 4px
        ),
        repeating-linear-gradient(
            -15deg,
            transparent,
            transparent 8px,
            rgba(107, 29, 53, 0.12) 8px,
            rgba(107, 29, 53, 0.12) 9px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 16px,
            rgba(168, 50, 80, 0.06) 16px,
            rgba(168, 50, 80, 0.06) 17px
        );
    background-color: rgba(26, 6, 16, 0.6);
}

/* ========== Chamber 4: Waves ========== */
.chamber-waves {
    min-height: 100vh;
    flex-direction: column;
    gap: 2rem;
    padding: 8vh 3vw;
    background: radial-gradient(ellipse at 50% 50%, var(--primary-deep), var(--primary-dark) 70%);
}

.wave-composition {
    width: 100%;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 600ms ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wave-composition.visible {
    opacity: 1;
    transform: translateY(0);
}

.wave-svg {
    width: 100%;
    height: 120px;
    display: block;
}

.wave-path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.wave-path-a { stroke: #6B1D35; opacity: 0.8; }
.wave-path-b { stroke: #A83250; opacity: 0.5; }
.wave-path-c { stroke: #D4A0A8; opacity: 0.3; }
.wave-path-d { stroke: #A83250; opacity: 0.7; }
.wave-path-e { stroke: #C9873A; opacity: 0.4; }
.wave-path-f { stroke: #6B1D35; opacity: 0.6; }
.wave-path-g { stroke: #A83250; opacity: 0.4; }
.wave-path-h { stroke: #C9873A; opacity: 0.25; }

.wave-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 2s ease-out;
}

.wave-composition.visible .wave-path {
    stroke-dashoffset: 0;
    animation: waveDrift 12s linear infinite;
}

@keyframes waveDrift {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

.wave-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-style: oblique 8deg;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--muted-rose);
    text-align: center;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wave-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Chamber 5: Closing ========== */
.chamber-closing {
    background: var(--deep-shadow);
    flex-direction: column;
}

.closing-blob {
    width: 60vmin;
    height: 60vmin;
    max-width: 450px;
    max-height: 450px;
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
    background: radial-gradient(circle at 40% 45%, var(--primary-mid), var(--primary-deep) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: blobPulse 4s ease-in-out infinite, blobMorphClose 18s ease-in-out infinite;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 800ms ease;
    will-change: transform, border-radius;
}

.closing-blob.visible {
    opacity: 1;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes blobMorphClose {
    0%, 100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; }
    25% { border-radius: 55% 45% 48% 52% / 42% 58% 45% 55%; }
    50% { border-radius: 48% 52% 42% 58% / 55% 45% 52% 48%; }
    75% { border-radius: 45% 55% 52% 48% / 58% 42% 45% 55%; }
}

.closing-statement {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--pale-blush);
    line-height: 1.2;
}

/* Closing Particles */
.closing-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--warm-highlight);
    opacity: 0;
    animation: particleFloat 18s ease-in-out infinite;
}

.p1 { width: 4px; height: 4px; left: 20%; bottom: -10px; animation-delay: 0s; }
.p2 { width: 3px; height: 3px; left: 45%; bottom: -10px; animation-delay: -3s; }
.p3 { width: 5px; height: 5px; left: 65%; bottom: -10px; animation-delay: -6s; }
.p4 { width: 3px; height: 3px; left: 80%; bottom: -10px; animation-delay: -9s; }
.p5 { width: 4px; height: 4px; left: 35%; bottom: -10px; animation-delay: -12s; }
.p6 { width: 3px; height: 3px; left: 55%; bottom: -10px; animation-delay: -15s; }

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    5% { opacity: 0.3; }
    50% { transform: translateY(-50vh) translateX(10px); opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(-5px); opacity: 0; }
}

/* ========== Section Divider Waves ========== */
.chamber-manifesto::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,30 C150,10 300,50 450,25 S750,45 900,20 S1100,40 1200,30' fill='none' stroke='%236B1D35' stroke-width='1.5' opacity='0.4'/%3E%3Cpath d='M0,35 C200,15 350,50 500,28 S800,48 950,22 S1100,38 1200,32' fill='none' stroke='%23A83250' stroke-width='1' opacity='0.25'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 60px;
    pointer-events: none;
    z-index: 3;
}

.chamber-collage::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,28 C180,8 400,52 600,22 S900,48 1200,28' fill='none' stroke='%236B1D35' stroke-width='1.5' opacity='0.35'/%3E%3Cpath d='M0,32 C250,50 500,12 750,38 S1050,18 1200,35' fill='none' stroke='%23D4A0A8' stroke-width='0.8' opacity='0.2'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 60px;
    pointer-events: none;
    z-index: 3;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .hud-right {
        display: none;
    }

    .hud-top {
        padding: 8px 20px;
        gap: 1rem;
    }

    .hud-chamber-name {
        display: none;
    }

    .manifesto-blob-shape {
        width: 130px;
        height: 160px;
        margin: 0 0 1rem 1rem;
    }

    .collage-field {
        width: 92vw;
    }

    .fragment-1 { width: 180px; height: 130px; }
    .fragment-2 { width: 150px; height: 180px; }
    .fragment-3 { width: 170px; height: 120px; }
    .fragment-4 { width: 140px; height: 170px; }
    .fragment-5 { width: 200px; height: 140px; }
    .fragment-6 { width: 160px; height: 150px; }
    .fragment-7 { width: 140px; height: 120px; }
    .fragment-8 { width: 160px; height: 140px; }
    .fragment-9 { width: 130px; height: 120px; }

    .closing-blob {
        width: 75vmin;
        height: 75vmin;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .hud-logo {
        width: 36px;
        height: 36px;
    }

    .manifesto-blob-shape {
        float: none;
        width: 100%;
        height: 100px;
        margin: 0 0 1.5rem 0;
        shape-outside: none;
    }

    .collage-fragment {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 1rem auto;
        display: block;
    }

    .collage-field {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .chamber-collage {
        min-height: auto;
        padding: 6vh 0;
    }

    .wave-svg {
        height: 80px;
    }

    .closing-blob {
        width: 85vmin;
        height: 85vmin;
    }

    .closing-statement {
        font-size: 1.4rem;
    }
}
