/* ============================================================
   monopole.studio — chrome-and-marble streetwear flagship
   inside a half-demolished neoclassical museum.
   ============================================================ */

:root {
    --bitumen: #0d0d0f;       /* leather, deep shadow, page floor */
    --leather-lift: #1a1a1d;  /* leather where light hits */
    --chrome-mid: #c6c8cc;    /* base metal grey, body text on dark, bevels */
    --chrome-hi: #eef0f3;     /* hot speculars on metal, bluish near-white */
    --chrome-lo: #7e8186;     /* lowlight on metal, mortar lines in marble */
    --marble: #cfc7ba;        /* aged stone */
    --marble-vein: #5a5550;   /* cracks, dust, weathering */
    --cone: #ff5a1f;          /* enamel pins, talk link, spray edges, buckle hardware */
    --offwhite: #e6e3da;      /* warm off-white body copy */

    --chrome-grad: linear-gradient(120deg,
        #5a5550 0%, #7e8186 14%, #c6c8cc 30%, #eef0f3 46%,
        #c6c8cc 58%, #7e8186 74%, #0d0d0f 78%, #7e8186 82%,
        #c6c8cc 92%, #eef0f3 100%);
    --chrome-grad-h: linear-gradient(180deg,
        #7e8186 0%, #c6c8cc 18%, #eef0f3 34%, #c6c8cc 50%,
        #7e8186 62%, #0d0d0f 66%, #7e8186 70%, #c6c8cc 86%, #eef0f3 100%);

    --elastic: cubic-bezier(.34, 1.56, .64, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    color: var(--offwhite);
    background-color: var(--bitumen);
    /* tiled bitumen-black leather: micro-noise + scratch streaks */
    background-image:
        repeating-linear-gradient(115deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(60deg, rgba(0,0,0,0.5) 0 2px, transparent 2px 5px),
        repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0 1px, transparent 1px 4px),
        radial-gradient(ellipse 120% 80% at 50% 50%, var(--leather-lift) 0%, var(--bitumen) 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
    font-size: 1.0625rem;
}

.svg-defs { position: absolute; }

/* ---------- global overlays ---------- */
.grain-overlay {
    position: fixed; inset: 0; z-index: 9000;
    pointer-events: none;
    filter: url(#grain);
    opacity: 0.55;
    mix-blend-mode: overlay;
}
.vignette {
    position: fixed; inset: 0; z-index: 8900;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 75% at 50% 45%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* ---------- custom cursor ---------- */
#cursor-trail {
    position: fixed; inset: 0; z-index: 9500;
    pointer-events: none;
}
#cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 9600;
    width: 12px; height: 12px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--chrome-hi), var(--chrome-mid) 45%, var(--chrome-lo) 75%, #2a2a2c 100%);
    box-shadow: 0 0 6px rgba(238,240,243,0.5), inset 0 0 2px rgba(0,0,0,0.6);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .18s var(--elastic), height .18s var(--elastic);
}
#cursor-dot.hot { width: 22px; height: 22px; }

/* ---------- left leather strap ---------- */
.strap {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 14px; z-index: 8800;
    background:
        repeating-linear-gradient(0deg, rgba(0,0,0,0.5) 0 2px, transparent 2px 5px),
        linear-gradient(90deg, #050506, #1a1a1d 50%, #050506);
    box-shadow: 2px 0 12px rgba(0,0,0,0.7), inset -1px 0 2px rgba(255,255,255,0.05);
    pointer-events: none;
}
.strap-stitch {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 2px; transform: translateX(-50%);
    background-image: repeating-linear-gradient(0deg,
        var(--marble-vein) 0 6px, transparent 6px 14px);
    box-shadow: 0 0 1px rgba(0,0,0,0.9);
    opacity: 0.85;
}
.buckle {
    position: absolute; left: 50%; transform: translateX(-50%);
    width: 26px; height: 18px;
    background: var(--chrome-grad-h);
    background-size: 100% 200%;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.7), inset 0 0 2px rgba(255,255,255,0.4);
}
.buckle::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 4px; height: 24px; border-radius: 2px;
    background: var(--cone);
    box-shadow: 0 0 4px rgba(255,90,31,0.6);
}
.buckle:nth-child(2) { top: 22vh; }
.buckle:nth-child(3) { top: 44vh; }
.buckle:nth-child(4) { top: 66vh; }
.buckle:nth-child(5) { top: 88vh; }

/* ---------- top bar ---------- */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9700;
    height: 52px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px 0 42px;
    background: linear-gradient(180deg, rgba(13,13,15,0.92), rgba(13,13,15,0.65) 60%, transparent);
    backdrop-filter: blur(2px);
}
.topbar-bevel {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--chrome-grad-h);
    background-size: 100% 200%;
    box-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.wordmark {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600; font-size: 1.25rem;
    letter-spacing: -0.02em; text-transform: lowercase;
    color: var(--chrome-mid);
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(0,0,0,0.6), 0 0 8px rgba(238,240,243,0.15);
}
.wordmark:hover { color: var(--chrome-hi); }

/* ---------- enamel pins ---------- */
.enamel-pin {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.12em; text-transform: lowercase;
    color: #2a1408;
    text-decoration: none;
    padding: 7px 14px;
    background:
        radial-gradient(circle at 30% 25%, #ff7a3f, var(--cone) 55%, #c3380e 100%);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.5),
        inset 0 -2px 4px rgba(0,0,0,0.35),
        0 2px 6px rgba(0,0,0,0.6);
    position: relative;
    transition: transform .25s var(--elastic);
}
.enamel-pin::before {
    /* scuffed enamel chips */
    content: ""; position: absolute; inset: 2px;
    border-radius: 999px;
    background-image:
        radial-gradient(circle at 70% 80%, rgba(0,0,0,0.18) 0 2px, transparent 3px),
        radial-gradient(circle at 20% 60%, rgba(255,255,255,0.25) 0 1px, transparent 2px);
    pointer-events: none;
}
.enamel-pin:hover { transform: rotate(-3deg) scale(1.06); }
.enamel-pin-big {
    font-size: 1rem; padding: 12px 22px; letter-spacing: 0.14em;
}

/* ============================================================
   PARALLAX ROOMS
   ============================================================ */
#parallax-root { position: relative; }

.room {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 6vw 80px 7vw;
    border-bottom: 14px solid transparent;
    /* leather section divider */
    background-image:
        linear-gradient(transparent, transparent),
        repeating-linear-gradient(90deg, var(--marble-vein) 0 8px, transparent 8px 18px);
    background-position: 0 0, 0 100%;
    background-size: 100% 100%, 100% 14px;
    background-repeat: no-repeat;
}

.layer { will-change: transform; }

.room-num {
    font-family: 'Bungee', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.3em;
    color: var(--chrome-lo);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.4rem;
}

.chrome-text {
    background: var(--chrome-grad);
    background-size: 220% 220%;
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px var(--bitumen);
    paint-order: stroke fill;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
}

.room-h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    line-height: 0.92; letter-spacing: -0.02em;
    text-transform: lowercase;
    margin-bottom: 1.6rem;
}

.stencil {
    font-family: 'Bungee', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--marble-vein);
}

.stencil-big {
    font-family: 'Bungee', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================================
   ROOM 01 — THE POLE
   ============================================================ */
.room-01 {
    background-color: var(--bitumen);
}
.room-01 .room-bg {
    position: absolute; inset: -10% -10% -10% -10%;
    background:
        repeating-radial-gradient(circle at 50% 50%, rgba(126,129,134,0.04) 0 2px, transparent 2px 60px),
        radial-gradient(circle at 50% 48%, rgba(40,40,44,0.7), var(--bitumen) 65%);
}
.fieldlines {
    position: absolute; inset: 0;
    opacity: 0.5;
}
.fieldlines svg { width: 100%; height: 100%; }
.fieldlines path { stroke-dasharray: 4 8; opacity: 0.7; }

.pole-canvas {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: min(560px, 70vw); height: min(680px, 80vh);
    pointer-events: none;
}

.room-01 .room-content {
    position: relative; z-index: 5;
    text-align: center;
    max-width: 980px;
    align-self: flex-end;
    margin-bottom: 6vh;
}
.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: clamp(3rem, 11vw, 9rem);
    line-height: 0.92; letter-spacing: -0.02em;
    text-transform: lowercase;
}
.hero-sub {
    margin: 1.6rem auto 0;
    max-width: 540px;
    color: var(--chrome-mid);
    font-size: 1.0625rem;
}
.sticker {
    position: absolute;
    font-family: 'Bungee', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.18em;
    text-transform: uppercase;
}
.sticker-wetpaint {
    top: -3.5rem; right: 4%;
    background: var(--cone);
    color: #2a1408;
    padding: 6px 12px;
    transform: rotate(8deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.6), inset 0 1px 2px rgba(255,255,255,0.4);
    /* peeling corner */
    clip-path: polygon(0 0, 100% 0, 100% 78%, 88% 100%, 0 100%);
}
.sticker-wetpaint::after {
    content: ""; position: absolute; right: 0; bottom: 0;
    width: 14px; height: 14px;
    background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.4) 50%);
}
.scroll-cue {
    margin-top: 2.4rem;
}
.scroll-cue span {
    font-family: 'Bungee', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.3em;
    color: var(--chrome-lo);
    text-transform: uppercase;
    animation: bob 1.8s var(--elastic) infinite;
    display: inline-block;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================================
   ROOM 02 — THE CAST
   ============================================================ */
.room-02 { background-color: #121214; align-items: stretch; }

.marble-wall {
    position: absolute; inset: -8% -8% -8% -8%;
}
.marble-fill {
    position: absolute; inset: 0;
    background-color: var(--marble);
    background-image:
        repeating-linear-gradient(63deg, rgba(90,85,80,0.18) 0 1px, transparent 1px 22px),
        repeating-linear-gradient(11deg, rgba(90,85,80,0.12) 0 1px, transparent 1px 40px),
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(90,85,80,0.3), transparent 55%);
    filter: url(#marbleNoise) contrast(1.05) brightness(0.78);
    opacity: 0.85;
    box-shadow: inset 0 0 120px rgba(0,0,0,0.6);
}
.marble-wall::after {
    /* dust in crevices */
    content: ""; position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(63deg, rgba(0,0,0,0.12) 0 1px, transparent 1px 22px);
    mix-blend-mode: multiply;
    opacity: 0.4;
}

.doric-column {
    position: absolute; left: 1%; bottom: -6%;
    width: 110px; height: 90vh;
    transform: rotate(7deg);
    transform-origin: bottom left;
}
.doric-column .shaft {
    position: absolute; left: 0; bottom: 0; width: 100%; height: 100%;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.35), rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.18) 50%, rgba(0,0,0,0.3));
    background-color: var(--marble);
    filter: url(#marbleNoise) brightness(0.85);
    border-radius: 6px 6px 0 0;
}
.doric-column .flute {
    position: absolute; bottom: 0; width: 3px; height: 86%;
    background: rgba(0,0,0,0.25);
}
.doric-column .flute:nth-child(3) { left: 28px; }
.doric-column .flute:nth-child(4) { left: 53px; }
.doric-column .flute:nth-child(5) { left: 78px; }
.doric-column .capital {
    position: absolute; top: 0; left: -14px; width: 138px; height: 36px;
    background: var(--marble);
    filter: url(#marbleNoise) brightness(0.9);
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.3);
    border-radius: 2px;
}
.doric-column .crack {
    position: absolute; left: 30%; top: 35%; width: 60%; height: 4px;
    background: var(--bitumen);
    transform: rotate(-18deg);
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.doric-column .chrome-cap {
    position: absolute; left: 28%; top: 32%; width: 64%; height: 14px;
    background: var(--chrome-grad-h);
    background-size: 100% 200%;
    transform: rotate(-18deg);
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.6), inset 0 0 2px rgba(255,255,255,0.5);
}

.drift-blob {
    position: absolute; right: 14%; top: 22%;
    width: 200px; height: 200px;
    border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%;
    background:
        conic-gradient(from 45deg, #7e8186, #c6c8cc, #eef0f3, #c6c8cc, #7e8186, #2a2a2c, #7e8186, #eef0f3, #7e8186);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset -10px -10px 24px rgba(0,0,0,0.4), inset 8px 8px 18px rgba(255,255,255,0.5);
    filter: blur(0.3px);
    animation: morphDrift 14s ease-in-out infinite;
    opacity: 0.92;
}
@keyframes morphDrift {
    0%, 100% { border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%; transform: rotate(0deg) scale(1); }
    33% { border-radius: 60% 40% 45% 55% / 40% 60% 40% 60%; transform: rotate(8deg) scale(1.06); }
    66% { border-radius: 40% 60% 55% 45% / 60% 40% 55% 45%; transform: rotate(-6deg) scale(0.96); }
}

.plinth-stack {
    position: relative; z-index: 5;
    width: 100%; max-width: 1100px;
    align-self: center;
    padding-top: 4vh;
}
.plinth-stack .room-num,
.plinth-stack .room-h2 { display: block; margin-left: 2vw; }

.plinth {
    position: relative;
    width: min(620px, 78vw);
    min-height: 220px;
    margin: -12vh 0 0 auto;
    background-color: var(--marble);
    background-image:
        repeating-linear-gradient(58deg, rgba(90,85,80,0.16) 0 1px, transparent 1px 26px),
        radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.14), transparent 60%);
    filter: url(#marbleNoise) brightness(0.86) contrast(1.04);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.7),
        inset 0 -10px 24px rgba(0,0,0,0.35),
        inset 0 3px 6px rgba(255,255,255,0.18);
    padding: 2.6rem 2rem 1.6rem;
    border-radius: 2px;
}
.plinth:first-of-type { margin-top: 0; }
.plinth-a { margin-right: auto; margin-left: 2vw; }
.plinth-b { margin-left: auto; margin-right: 4vw; }
.plinth-c { margin-left: 8vw; margin-right: auto; }

.plinth-top {
    position: absolute; left: 0; right: 0; top: -8px;
    height: 10px;
    background: var(--chrome-grad-h);
    background-size: 100% 200%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 0 3px rgba(255,255,255,0.6);
}
.plinth::after {
    /* chrome drip down marble shelf edge */
    content: ""; position: absolute; right: 18%; bottom: -28px;
    width: 8px; height: 36px;
    background: var(--chrome-grad-h);
    background-size: 100% 300%;
    border-radius: 0 0 4px 4px;
    box-shadow: inset 0 0 2px rgba(255,255,255,0.5);
}
.fragment {
    position: absolute; right: 8%; top: -42px;
    width: 90px; height: 110px;
    background: var(--marble);
    background-image:
        radial-gradient(ellipse at 35% 25%, rgba(255,255,255,0.18), transparent 55%),
        repeating-linear-gradient(50deg, rgba(90,85,80,0.18) 0 1px, transparent 1px 14px);
    filter: url(#marbleNoise) brightness(0.92);
    box-shadow: 0 12px 24px rgba(0,0,0,0.5), inset 0 0 8px rgba(0,0,0,0.3);
}
.fragment::before {
    /* chip */
    content: ""; position: absolute; right: -6px; top: 20%;
    width: 20px; height: 16px;
    background: #121214;
    transform: rotate(20deg);
    clip-path: polygon(0 0, 100% 30%, 60% 100%);
}
.fragment::after {
    /* chrome cap on break */
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 12px;
    background: var(--chrome-grad-h);
    background-size: 100% 200%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.6), inset 0 0 2px rgba(255,255,255,0.5);
}
.fragment-hand { border-radius: 40% 40% 20% 20% / 60% 60% 30% 30%; }
.fragment-ear  { border-radius: 70% 30% 60% 40% / 60% 40% 70% 30%; width: 70px; }
.fragment-torso{ border-radius: 30% 30% 20% 20% / 40% 40% 30% 30%; width: 110px; }

.lot-sticker {
    position: absolute; left: 1.4rem; top: -16px;
    font-family: 'Bungee', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.16em;
    background: var(--cone);
    color: #2a1408;
    padding: 4px 8px;
    transform: rotate(-4deg);
    box-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.plinth figcaption {
    margin-top: 3.4rem;
    font-size: 1rem;
    color: var(--bitumen);
    line-height: 1.4;
    max-width: 70%;
}

/* ============================================================
   ROOM 03 — THE WORKBENCH
   ============================================================ */
.room-03 { background-color: #0c0c0e; }
.room-bg-leather {
    position: absolute; inset: -8% -8% -8% -8%;
    background-color: var(--bitumen);
    background-image:
        repeating-linear-gradient(105deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(50deg, rgba(0,0,0,0.4) 0 2px, transparent 2px 6px),
        radial-gradient(ellipse at 50% 50%, rgba(26,26,29,0.8), var(--bitumen) 70%);
}
.workbench {
    position: relative; z-index: 5;
    width: 100%; max-width: 1100px;
}
.bench-top {
    position: relative;
    margin-top: 2.4rem;
    background-color: var(--leather-lift);
    background-image:
        repeating-linear-gradient(0deg, rgba(0,0,0,0.4) 0 2px, transparent 2px 6px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 5px),
        radial-gradient(ellipse at 50% 30%, rgba(45,45,48,0.9), #141416 80%);
    border: 12px solid #060607;
    border-radius: 6px;
    box-shadow:
        inset 0 0 80px rgba(0,0,0,0.7),
        0 26px 50px rgba(0,0,0,0.6);
    padding: 3.4rem 2.6rem 4rem;
}
.bench-top::before {
    /* stitching around bench leather edge */
    content: ""; position: absolute; inset: 6px;
    border: 2px dashed var(--marble-vein);
    border-radius: 4px;
    pointer-events: none;
    opacity: 0.5;
}
.tool {
    position: absolute;
    background: var(--chrome-grad-h);
    background-size: 100% 250%;
    box-shadow: 0 6px 14px rgba(0,0,0,0.6), inset 0 0 3px rgba(255,255,255,0.5);
    border-radius: 3px;
}
.tool-chisel {
    top: 1.4rem; left: 50%; width: 14px; height: 130px;
    transform: rotate(-22deg);
}
.tool-chisel::after {
    content: ""; position: absolute; bottom: -16px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 9px solid transparent; border-right: 9px solid transparent;
    border-top: 18px solid #eef0f3;
}
.tool-mallet {
    bottom: 1.6rem; right: 8%; width: 80px; height: 30px;
    transform: rotate(12deg);
    border-radius: 6px;
}
.tool-mallet::after {
    content: ""; position: absolute; left: -36px; top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 40px; height: 10px;
    background: #2a1f12;
    border-radius: 4px;
}
.bench-cards {
    display: flex; gap: 1.6rem; flex-wrap: wrap;
    position: relative; z-index: 3;
    margin-top: 1rem;
}
.index-card {
    flex: 1 1 240px;
    background: #f4f1e8;
    background-image:
        repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 22px);
    color: #1c1a16;
    padding: 1.6rem 1.4rem 2.2rem;
    position: relative;
    box-shadow: 0 14px 30px rgba(0,0,0,0.55);
    transform: rotate(-1.4deg);
}
.index-card:nth-child(2) { transform: rotate(1deg); }
.index-card:nth-child(3) { transform: rotate(-0.6deg); }
.index-card::before {
    /* tape */
    content: ""; position: absolute; left: 50%; top: -14px;
    transform: translateX(-50%) rotate(-2deg);
    width: 90px; height: 26px;
    background: rgba(207,199,186,0.55);
    border-left: 1px dashed rgba(90,85,80,0.5);
    border-right: 1px dashed rgba(90,85,80,0.5);
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.card-label {
    display: block;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600; font-size: 0.7rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #5a5550;
    margin-bottom: 0.8rem;
}
.index-card p { font-size: 0.95rem; line-height: 1.5; }
.reg-cross {
    position: absolute; right: 8px; bottom: 6px;
    font-size: 0.9rem; color: var(--cone);
    opacity: 0.85;
}
.chrome-drip {
    position: absolute; right: 22%; bottom: -52px;
    width: 12px; height: 64px;
    background: var(--chrome-grad-h);
    background-size: 100% 300%;
    border-radius: 0 0 6px 6px;
    box-shadow: inset 0 0 3px rgba(255,255,255,0.6), 0 8px 20px rgba(0,0,0,0.5);
}
.chrome-drip::after {
    content: ""; position: absolute; left: 50%; bottom: -10px;
    transform: translateX(-50%);
    width: 16px; height: 16px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--chrome-hi), var(--chrome-mid) 55%, var(--chrome-lo));
}

/* ============================================================
   ROOM 04 — THE DROP (loudest room)
   ============================================================ */
.room-04 { background-color: #131311; }

.marble-billboard {
    position: absolute; inset: 8% 6% 8% 6%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.65), inset 0 0 100px rgba(0,0,0,0.5);
}
.marble-billboard .marble-fill {
    filter: url(#marbleNoise) brightness(0.82) contrast(1.06);
}
.chevrons {
    position: absolute; left: 0; right: 0; height: 28px;
    background-image: repeating-linear-gradient(135deg,
        var(--cone) 0 22px, #1a1a1d 22px 44px);
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
}
.chevrons-top { top: 0; }
.chevrons-bottom { bottom: 0; }

.big-blob {
    position: absolute; left: 50%; top: 48%;
    transform: translate(-50%, -50%);
    width: min(420px, 56vw); height: min(420px, 56vw);
    border-radius: 50% 50% 55% 45% / 50% 50% 50% 50%;
    background:
        conic-gradient(from 0deg, #7e8186, #c6c8cc, #eef0f3, #c6c8cc, #2a2a2c, #7e8186, #eef0f3, #c6c8cc, #7e8186);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.7),
        inset -16px -16px 36px rgba(0,0,0,0.45),
        inset 14px 14px 28px rgba(255,255,255,0.55);
    animation: morphFast 5s ease-in-out infinite;
    z-index: 2;
}
@keyframes morphFast {
    0%, 100% { border-radius: 50% 50% 55% 45% / 50% 50% 50% 50%; transform: translate(-50%,-50%) rotate(0deg) scale(1); }
    25% { border-radius: 62% 38% 48% 52% / 42% 58% 42% 58%; transform: translate(-50%,-50%) rotate(10deg) scale(1.08); }
    50% { border-radius: 40% 60% 52% 48% / 58% 42% 56% 44%; transform: translate(-50%,-50%) rotate(-8deg) scale(0.94); }
    75% { border-radius: 55% 45% 40% 60% / 48% 52% 60% 40%; transform: translate(-50%,-50%) rotate(6deg) scale(1.04); }
}

.room-04 .room-content {
    position: relative; z-index: 5;
    text-align: center;
    max-width: 880px;
}
.drop-headline {
    font-size: clamp(1.6rem, 5.5vw, 4rem);
    color: var(--marble-vein);
    -webkit-text-stroke: 1.5px rgba(13,13,15,0.7);
    text-shadow:
        2px 2px 0 rgba(255,90,31,0.0),
        0 0 14px rgba(255,90,31,0.18);
    line-height: 1; letter-spacing: 0.04em;
    /* spray-stencil ragged edge */
    filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.4));
    margin-bottom: 1.6rem;
}
.drop-line {
    color: var(--bitumen);
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 480px; margin: 0 auto 2.6rem;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
.shelf {
    position: relative;
    display: inline-block;
    padding: 1.2rem 2rem 2rem;
}
.shelf::before {
    /* marble shelf slab */
    content: ""; position: absolute; left: -10%; right: -10%; bottom: 0;
    height: 22px;
    background-color: var(--marble);
    background-image: repeating-linear-gradient(58deg, rgba(90,85,80,0.2) 0 1px, transparent 1px 18px);
    filter: url(#marbleNoise) brightness(0.78);
    box-shadow: 0 14px 30px rgba(0,0,0,0.55), inset 0 -6px 12px rgba(0,0,0,0.3);
}
.shelf::after {
    /* chrome edge on shelf */
    content: ""; position: absolute; left: -10%; right: -10%; bottom: 22px;
    height: 4px;
    background: var(--chrome-grad-h);
    background-size: 100% 200%;
}
#talk-pin { position: relative; z-index: 2; }
#talk-pin.wiggle { animation: pinWiggle 0.6s var(--elastic); }
@keyframes pinWiggle {
    0% { transform: rotate(0) scale(1); }
    30% { transform: rotate(-8deg) scale(1.12); }
    55% { transform: rotate(6deg) scale(1.05); }
    80% { transform: rotate(-3deg) scale(1.02); }
    100% { transform: rotate(0) scale(1); }
}

/* ============================================================
   ROOM 05 — THE CONTACT SHEET
   ============================================================ */
.room-05 {
    background-color: #0b0b0d;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding-bottom: 0;
}
.contact-area {
    position: relative; z-index: 5;
    width: 100%;
    flex: 1;
    display: flex; flex-direction: column; justify-content: center;
    padding-bottom: 4vh;
}
.contact-caption {
    font-size: 1rem; color: var(--chrome-mid);
    margin: 1.2rem 0 2rem;
}
.contact-strip {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 1.5rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.contact-strip.dragging { cursor: grabbing; }
.contact-track {
    display: flex; gap: 2.4rem;
    padding: 0 6vw;
    transform: translate3d(0,0,0);
    will-change: transform;
}
.frame {
    flex: 0 0 auto;
    width: clamp(220px, 26vw, 340px);
    position: relative;
}
.frame-thumb {
    width: 100%; aspect-ratio: 4 / 5;
    background-color: var(--marble);
    background-image:
        repeating-linear-gradient(54deg, rgba(90,85,80,0.18) 0 1px, transparent 1px 22px),
        repeating-linear-gradient(8deg, rgba(90,85,80,0.12) 0 1px, transparent 1px 40px),
        radial-gradient(ellipse at 25% 15%, rgba(255,255,255,0.18), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(90,85,80,0.32), transparent 55%);
    filter: url(#marbleNoise) brightness(0.84) contrast(1.06);
    box-shadow: 0 20px 44px rgba(0,0,0,0.6), inset 0 0 30px rgba(0,0,0,0.35);
}
.frame figcaption {
    margin-top: 0.8rem;
    color: var(--chrome-lo);
}
/* hard non-rectangular clips */
.frame-1 .frame-thumb { clip-path: polygon(0 6%, 100% 0, 96% 100%, 4% 94%); }
.frame-2 .frame-thumb { clip-path: polygon(4% 0, 100% 8%, 100% 92%, 0 100%); }
.frame-3 .frame-thumb { clip-path: polygon(0 0, 94% 4%, 100% 100%, 6% 96%); transform: rotate(-2deg); }
.frame-4 .frame-thumb { clip-path: polygon(6% 4%, 100% 0, 92% 96%, 0 100%); }
.frame-5 .frame-thumb { clip-path: polygon(0 8%, 96% 0, 100% 94%, 4% 100%); transform: rotate(1.5deg); }
.frame-6 .frame-thumb { clip-path: polygon(0 0, 100% 6%, 96% 100%, 4% 92%); }
/* crate-label hazard tick */
.frame::before {
    content: ""; position: absolute; left: 0; top: -10px;
    width: 36px; height: 8px;
    background-image: repeating-linear-gradient(135deg, var(--cone) 0 6px, #1a1a1d 6px 12px);
}
.drag-hint {
    margin-top: 1.6rem;
    font-family: 'Bungee', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.24em;
    color: var(--chrome-lo);
    text-transform: uppercase;
    text-align: center;
}

/* ---------- footer ---------- */
.footer {
    position: relative;
    background-color: #050506;
    background-image:
        repeating-linear-gradient(105deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(48deg, rgba(0,0,0,0.45) 0 2px, transparent 2px 6px);
    padding: 3rem 6vw 3.4rem 8vw;
    box-shadow: inset 0 14px 30px rgba(0,0,0,0.7);
}
.footer-stitch {
    position: absolute; left: 6vw; right: 6vw; top: 14px;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, var(--marble-vein) 0 7px, transparent 7px 16px);
    opacity: 0.7;
}
.footer-inner {
    display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
}
.monopole-glyph {
    font-size: 2rem;
    color: var(--chrome-mid);
    background: var(--chrome-grad);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    filter: drop-shadow(0 1px 1px rgba(255,255,255,0.1));
}
.footer-wordmark {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600; font-size: 1.4rem;
    letter-spacing: -0.02em; text-transform: lowercase;
    color: var(--chrome-mid);
}
.footer-link {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600; font-size: 0.8rem;
    letter-spacing: 0.16em; text-transform: lowercase;
    color: var(--cone);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,90,31,0.5);
    padding-bottom: 2px;
}
.footer-link:hover { color: #ff7a3f; }
.footer-wet {
    margin-left: auto;
    font-family: 'Bungee', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cone);
    opacity: 0.85;
}

/* ============================================================
   reduced motion — collapse parallax but keep texture alive
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .drift-blob, .big-blob { animation-duration: 30s; }
    .scroll-cue span { animation: none; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 760px) {
    body { font-size: 1rem; }
    .room { padding: 70px 5vw 70px 6vw; }
    .pole-canvas { width: 86vw; height: 70vh; }
    .plinth { width: 90vw; margin-left: 0 !important; margin-right: 0 !important; }
    .plinth-stack .room-num, .plinth-stack .room-h2 { margin-left: 0; }
    .drift-blob { width: 130px; height: 130px; right: 4%; }
    .doric-column { display: none; }
    .bench-cards { flex-direction: column; }
    .tool-chisel { display: none; }
    .footer-wet { margin-left: 0; width: 100%; }
    .topbar { padding: 0 16px 0 26px; }
    #cursor-dot, #cursor-trail { display: none; }
    body { cursor: auto; }
}
