/* =====================================================================
   mujun.xyz — graffiti-meets-nature-worship
   Sunset over crumbling Mediterranean plaster
   ===================================================================== */

:root {
    /* Wall surfaces */
    --warm-plaster: #FFF5E8;
    --sunbaked-stucco: #F5DFC5;
    --twilight-brick: #3D2017;
    --alley-shadow: #1A0E08;

    /* Sunset accents */
    --sunset-coral: #E8614D;
    --golden-hour: #F4A636;
    --mango-flame: #FF8C42;
    --vine-green: #4A8C5C;

    /* Text */
    --charcoal-spray: #2C1A12;
    --faded-tag: #6B4D3A;

    /* Extra design tones from palette */
    --soft-peach: #F5C896;
    --antique-cream: #FAEBD7;

    /* Type stacks */
    --display: 'Permanent Marker', 'Marker Felt', cursive;
    --hand: 'Caveat', 'Bradley Hand', cursive;
    --ui: 'Kalam', 'Caveat', cursive;

    /* Easing */
    --ease-paint: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--hand);
    font-size: 20px;
    line-height: 1.75;
    color: var(--charcoal-spray);
    background: var(--warm-plaster);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Site-wide grain overlay simulating plaster noise */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.06;
    mix-blend-mode: multiply;
    background-image:
        radial-gradient(circle at 13% 27%, rgba(61, 32, 23, 0.5) 0.5px, transparent 1px),
        radial-gradient(circle at 47% 13%, rgba(61, 32, 23, 0.5) 0.5px, transparent 1px),
        radial-gradient(circle at 81% 67%, rgba(61, 32, 23, 0.5) 0.5px, transparent 1px),
        radial-gradient(circle at 33% 89%, rgba(61, 32, 23, 0.5) 0.5px, transparent 1px),
        radial-gradient(circle at 67% 49%, rgba(61, 32, 23, 0.5) 0.5px, transparent 1px);
    background-size: 7px 7px, 11px 11px, 13px 13px, 17px 17px, 19px 19px;
}

/* Scroll-driven sunset color shift overlay */
.sunset-tint {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    background: linear-gradient(180deg,
        rgba(232, 97, 77, 0) 0%,
        rgba(244, 166, 54, 0.06) 30%,
        rgba(255, 140, 66, 0.10) 55%,
        rgba(61, 32, 23, 0.12) 80%,
        rgba(26, 14, 8, 0.18) 100%);
    transition: opacity 0.4s linear;
}

/* =====================================================================
   VINE SYSTEM (left margin)
   ===================================================================== */
.vine-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 4000px;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.vine-stroke {
    fill: none;
    stroke: var(--vine-green);
    stroke-width: 5;
    stroke-linecap: round;
    filter: url(#wobble);
    stroke-dasharray: 5500;
    stroke-dashoffset: 5500;
    transition: stroke-dashoffset 0.25s linear;
}

.vine-leaf, .vine-flower {
    opacity: 0;
    transform-origin: 100px center;
    transform: scale(0) rotate(-20deg);
    transition: transform 0.5s var(--ease-paint), opacity 0.4s linear;
}

.vine-leaf.bloom {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.vine-flower.bloom {
    opacity: 1;
    animation: flowerBloom 0.7s var(--ease-paint) forwards;
}

@keyframes flowerBloom {
    0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
    60%  { transform: scale(1.18) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* =====================================================================
   NAV
   ===================================================================== */
.alley-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255, 245, 232, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px dashed rgba(107, 77, 58, 0.35);
    transition: background 0.6s linear, color 0.6s linear, border-color 0.6s linear;
}

.alley-nav.dark {
    background: rgba(26, 14, 8, 0.7);
    color: var(--warm-plaster);
    border-bottom-color: rgba(244, 166, 54, 0.3);
}

.nav-mark {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: var(--display);
    transform: rotate(-2deg);
}

.kanji-mark {
    font-size: 26px;
    color: var(--sunset-coral);
    text-shadow: 1px 1px 0 var(--golden-hour);
}

.domain-mark {
    font-size: 20px;
    color: var(--charcoal-spray);
    transition: color 0.6s linear;
}

.alley-nav.dark .domain-mark {
    color: var(--antique-cream);
}

.nav-links {
    display: flex;
    gap: 26px;
}

.nav-links a {
    font-family: var(--ui);
    font-size: 16px;
    color: var(--faded-tag);
    text-decoration: none;
    position: relative;
    padding: 4px 6px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 0;
    height: 2px;
    background: var(--sunset-coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-paint);
}

.nav-links a:hover {
    color: var(--sunset-coral);
    transform: translateY(-1px) rotate(-1deg);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.alley-nav.dark .nav-links a {
    color: var(--soft-peach);
}

.alley-nav.dark .nav-links a:hover {
    color: var(--golden-hour);
}

.nav-time {
    font-family: var(--ui);
    font-size: 14px;
    color: var(--faded-tag);
    text-align: right;
    line-height: 1.2;
    transform: rotate(1.5deg);
}

.time-label {
    display: block;
    opacity: 0.7;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

.time-value {
    font-family: var(--display);
    font-size: 20px;
    color: var(--sunset-coral);
}

.alley-nav.dark .nav-time {
    color: var(--soft-peach);
}

/* =====================================================================
   ALLEY / WALLS
   ===================================================================== */
.alley {
    position: relative;
    padding-top: 80px;
    z-index: 2;
}

.wall {
    position: relative;
    min-height: 100vh;
    padding: 120px 40px;
    overflow: hidden;
    isolation: isolate;
}

/* Wall textures via gradients + noise */
.wall-texture {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.wall-texture-plaster {
    background:
        radial-gradient(ellipse 80% 60% at 30% 30%, rgba(245, 200, 150, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 90% 70% at 80% 80%, rgba(250, 235, 215, 0.55) 0%, transparent 70%),
        linear-gradient(135deg, #FFF5E8 0%, #FAEBD7 100%);
}

.wall-texture-stucco {
    background:
        radial-gradient(ellipse 70% 50% at 70% 30%, rgba(244, 166, 54, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 20% 80%, rgba(245, 200, 150, 0.40) 0%, transparent 70%),
        linear-gradient(160deg, #F5DFC5 0%, #FAEBD7 50%, #F5C896 100%);
}

.wall-texture-brick {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 140, 66, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 20% 90%, rgba(232, 97, 77, 0.18) 0%, transparent 65%),
        linear-gradient(170deg, #F5C896 0%, #F4A636 60%, #FF8C42 100%);
}

.wall-texture-concrete {
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232, 97, 77, 0.30) 0%, transparent 65%),
        linear-gradient(180deg, #FF8C42 0%, #E8614D 70%, #6B4D3A 100%);
}

.wall-texture-twilight {
    background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(232, 97, 77, 0.30) 0%, transparent 60%),
        linear-gradient(180deg, #6B4D3A 0%, #3D2017 60%, #1A0E08 100%);
}

/* All wall textures get a subtle noise via repeating gradients */
.wall-texture::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(61, 32, 23, 0.04) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(-45deg, rgba(61, 32, 23, 0.03) 0 1px, transparent 1px 5px);
    opacity: 0.6;
}

/* Overspray halos */
.overspray {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    z-index: -1;
}

.overspray-coral {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--sunset-coral) 0%, transparent 70%);
    top: -100px;
    right: -150px;
}

.overspray-gold {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--golden-hour) 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
}

.overspray-mango {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--mango-flame) 0%, transparent 70%);
    top: 30%;
    left: -200px;
    opacity: 0.25;
}

.overspray-shift {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    opacity: 0.2;
}

.overspray-faint {
    opacity: 0.15;
}

/* Wall content container */
.wall-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 3;
}

.wall-content-hero {
    text-align: center;
    padding-top: 60px;
}

.wall-content-marble {
    max-width: 1100px;
}

/* =====================================================================
   HERO (WALL 1)
   ===================================================================== */
.wall-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mural {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.mural-sun {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 700px;
    height: 700px;
    opacity: 0.55;
    animation: sunBreathe 12s ease-in-out infinite;
}

@keyframes sunBreathe {
    0%, 100% { transform: translate(-50%, -45%) scale(1); }
    50%      { transform: translate(-50%, -45%) scale(1.04); }
}

.hero-tag {
    display: inline-block;
    font-family: var(--ui);
    font-size: 14px;
    color: var(--faded-tag);
    background: rgba(255, 245, 232, 0.6);
    border: 1px dashed var(--faded-tag);
    padding: 6px 16px;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--display);
    font-size: clamp(72px, 14vw, 200px);
    line-height: 0.95;
    color: var(--charcoal-spray);
    letter-spacing: 0.02em;
    margin: 12px 0 24px;
    position: relative;
    text-shadow:
        3px 3px 0 var(--golden-hour),
        6px 6px 0 var(--sunset-coral);
}

.hero-sub {
    font-family: var(--hand);
    font-weight: 400;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--faded-tag);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-family: var(--ui);
    font-size: 14px;
    color: var(--faded-tag);
    margin-bottom: 60px;
}

.meta-pill {
    background: rgba(245, 223, 197, 0.7);
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(232, 97, 77, 0.3);
    color: var(--charcoal-spray);
}

.meta-dot {
    width: 6px;
    height: 6px;
    background: var(--sunset-coral);
    border-radius: 50%;
}

.scroll-cue {
    margin-top: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cue-label {
    font-family: var(--display);
    font-size: 18px;
    color: var(--sunset-coral);
    transform: rotate(-2deg);
    animation: cueWobble 2.4s ease-in-out infinite;
}

@keyframes cueWobble {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50%      { transform: rotate(-1deg) translateY(4px); }
}

.cue-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--sunset-coral) 0%, transparent 100%);
}

/* Floating tags */
.float-tag {
    position: absolute;
    font-family: var(--hand);
    font-size: 22px;
    color: var(--sunset-coral);
    transform: rotate(-6deg);
    z-index: 4;
    text-shadow: 1px 1px 0 var(--warm-plaster);
}

.float-tag::before {
    content: "";
    position: absolute;
    inset: -6px -10px;
    background: radial-gradient(circle, rgba(232, 97, 77, 0.18), transparent 70%);
    z-index: -1;
}

.float-tag-tl {
    top: 120px;
    left: 220px;
}

.float-tag-br {
    bottom: 110px;
    right: 80px;
    transform: rotate(4deg);
    color: var(--mango-flame);
}

/* =====================================================================
   SHARED WALL TYPE
   ===================================================================== */
.section-eyebrow {
    display: inline-block;
    font-family: var(--hand);
    font-size: 26px;
    color: var(--sunset-coral);
    margin-bottom: 16px;
    transform: rotate(-2deg);
    padding-left: 4px;
}

.wall-title {
    font-family: var(--display);
    font-size: clamp(40px, 7vw, 84px);
    line-height: 1.05;
    color: var(--charcoal-spray);
    letter-spacing: 0.02em;
    margin-bottom: 48px;
    position: relative;
    text-shadow: 2px 2px 0 var(--golden-hour);
}

.wall-marble .wall-title,
.wall-notes .wall-title {
    color: var(--twilight-brick);
    text-shadow: 2px 2px 0 var(--warm-plaster);
}

.wall-dusk .wall-title {
    color: var(--warm-plaster);
    text-shadow:
        2px 2px 0 var(--sunset-coral),
        4px 4px 0 var(--golden-hour);
}

/* Spray-paint reveal mask - default visible state, JS adds 'sprayed' */
.spray-reveal {
    position: relative;
    display: block;
}

.spray-reveal > span {
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    color: inherit;
    position: relative;
}

.spray-reveal::before {
    content: "";
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at var(--spray-x, 30%) 50%,
        rgba(232, 97, 77, 0.15) 0%,
        rgba(232, 97, 77, 0) 30%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.spray-reveal.sprayed::before {
    opacity: 1;
    animation: sprayPulse 1.2s ease-out;
}

@keyframes sprayPulse {
    0%   { opacity: 0.7; transform: scale(0.4); }
    60%  { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.2); }
}

/* Tilts */
.tilt-left { transform: rotate(-1.5deg); }
.tilt-right { transform: rotate(1.5deg); }

/* =====================================================================
   WALL 2 — VINES
   ===================================================================== */
.wall-vines {
    background-color: var(--sunbaked-stucco);
}

.mural-flowers {
    bottom: -50px;
    right: -80px;
    width: 800px;
    height: 560px;
    opacity: 0.45;
    z-index: 0;
}

.wall-content-vines {
    position: relative;
    z-index: 3;
}

.prose-block {
    background: rgba(255, 245, 232, 0.7);
    padding: 36px 40px;
    border-left: 4px solid var(--sunset-coral);
    margin: 32px 0 48px;
    box-shadow: 6px 6px 0 rgba(61, 32, 23, 0.12);
    max-width: 720px;
    transform-origin: top left;
}

.prose-block p {
    margin-bottom: 16px;
    color: var(--charcoal-spray);
}

.prose-block p:last-child {
    margin-bottom: 0;
}

.prose-block em {
    font-style: italic;
    color: var(--sunset-coral);
    font-weight: 700;
}

.pull-quote {
    margin: 60px auto 48px;
    text-align: center;
    max-width: 720px;
    padding: 32px;
    border-top: 2px dashed var(--sunset-coral);
    border-bottom: 2px dashed var(--sunset-coral);
}

.pull-quote blockquote {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    color: var(--twilight-brick);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.pull-quote figcaption {
    font-size: 22px;
    color: var(--faded-tag);
    transform: rotate(-1deg);
}

.latin-tag-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 40px;
    justify-content: center;
}

.latin-tag {
    display: inline-block;
    font-size: 24px;
    color: var(--sunset-coral);
    background: rgba(255, 245, 232, 0.6);
    padding: 6px 18px;
    border-radius: 4px;
    transform: rotate(var(--rot, -2deg));
    text-shadow: 1px 1px 0 var(--warm-plaster);
    position: relative;
}

.latin-tag:nth-child(2) { --rot: 3deg; color: var(--mango-flame); }
.latin-tag:nth-child(3) { --rot: -1deg; color: var(--vine-green); }
.latin-tag:nth-child(4) { --rot: 2deg; color: var(--golden-hour); }

.latin-tag::before {
    content: "";
    position: absolute;
    inset: -6px -8px;
    background: radial-gradient(circle, currentColor, transparent 70%);
    opacity: 0.12;
    z-index: -1;
    border-radius: 50%;
}

/* =====================================================================
   WALL 3 — MARBLE
   ===================================================================== */
.wall-marble {
    background-color: var(--soft-peach);
}

.marble-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0 60px;
}

.marble-card {
    background: rgba(255, 245, 232, 0.78);
    padding: 28px;
    border: 1px solid rgba(61, 32, 23, 0.2);
    box-shadow:
        8px 8px 0 rgba(61, 32, 23, 0.15),
        inset 0 0 30px rgba(245, 223, 197, 0.5);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s var(--ease-paint), box-shadow 0.3s var(--ease-paint);
}

.marble-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
        rgba(244, 166, 54, 0) 0%,
        rgba(244, 166, 54, 0) 40%);
    pointer-events: none;
    transition: background 0.3s ease;
}

.marble-card.illuminated::before {
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
        rgba(244, 166, 54, 0.25) 0%,
        rgba(244, 166, 54, 0) 50%);
}

.marble-card:hover {
    transform: translate(var(--shift-x, 0), var(--shift-y, 0)) rotate(0deg);
    box-shadow:
        12px 12px 0 rgba(61, 32, 23, 0.18),
        inset 0 0 40px rgba(244, 166, 54, 0.25);
}

.marble-art {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    background: linear-gradient(160deg, var(--antique-cream) 0%, var(--soft-peach) 100%);
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.marble-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

.marble-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(61, 32, 23, 0.03) 0 1px, transparent 1px 6px),
        repeating-linear-gradient(90deg, rgba(61, 32, 23, 0.02) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.marble-title {
    font-family: var(--display);
    font-size: 28px;
    color: var(--twilight-brick);
    line-height: 1.05;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.marble-meta {
    font-size: 20px;
    color: var(--faded-tag);
}

.marble-caption {
    text-align: center;
    font-size: 28px;
    color: var(--twilight-brick);
    max-width: 700px;
    margin: 40px auto 0;
    line-height: 1.4;
    transform: rotate(-1deg);
    border-top: 1px dashed var(--twilight-brick);
    border-bottom: 1px dashed var(--twilight-brick);
    padding: 20px 0;
}

/* =====================================================================
   WALL 4 — FIELD NOTES
   ===================================================================== */
.wall-notes {
    background-color: var(--mango-flame);
}

.wall-notes .section-eyebrow {
    color: var(--twilight-brick);
}

.notes-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.note-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    align-items: start;
    background: rgba(255, 245, 232, 0.85);
    padding: 24px 30px;
    border-left: 4px solid var(--sunset-coral);
    box-shadow: 6px 6px 0 rgba(61, 32, 23, 0.18);
    position: relative;
}

.note-item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 16px;
    height: 16px;
    background: var(--sunset-coral);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(255, 245, 232, 0.85);
}

.note-time {
    font-size: 28px;
    color: var(--sunset-coral);
    font-weight: 700;
    line-height: 1;
}

.note-item p {
    font-size: 22px;
    color: var(--charcoal-spray);
    line-height: 1.6;
}

.note-item em {
    font-family: var(--display);
    font-style: normal;
    color: var(--sunset-coral);
    font-size: 24px;
    letter-spacing: 0.02em;
}

/* =====================================================================
   WALL 5 — DUSK / FOOTER
   ===================================================================== */
.wall-dusk {
    background-color: var(--twilight-brick);
    color: var(--warm-plaster);
    min-height: 100vh;
    padding-bottom: 60px;
}

.wall-dusk .section-eyebrow {
    color: var(--golden-hour);
}

.mural-mountain {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
    opacity: 0.85;
}

.wall-content-dusk {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 1200px;
}

.dusk-title {
    margin-top: 40px;
    margin-bottom: 30px;
}

.dusk-sub {
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--soft-peach);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

.dusk-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 60px auto 80px;
}

.sig-line {
    height: 1px;
    width: 80px;
    background: var(--golden-hour);
}

.sig-name {
    font-family: var(--hand);
    font-size: 26px;
    color: var(--golden-hour);
}

/* Footer grid */
.alley-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px dashed var(--soft-peach);
    text-align: left;
}

.footer-h {
    font-family: var(--display);
    font-size: 22px;
    color: var(--golden-hour);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li {
    font-family: var(--hand);
    font-size: 20px;
    color: var(--antique-cream);
    line-height: 1.4;
}

.footer-col a {
    color: var(--antique-cream);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color 0.25s, border-color 0.25s;
}

.footer-col a:hover {
    color: var(--golden-hour);
    border-bottom-color: var(--golden-hour);
}

.footer-col-tag {
    text-align: center;
}

.big-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-3deg);
    padding: 16px 24px;
    border: 2px solid var(--sunset-coral);
    margin-bottom: 16px;
    background: rgba(232, 97, 77, 0.15);
    position: relative;
}

.big-tag::before {
    content: "";
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle, rgba(232, 97, 77, 0.4), transparent 70%);
    z-index: -1;
    filter: blur(15px);
}

.big-tag-kanji {
    font-family: var(--display);
    font-size: 56px;
    color: var(--sunset-coral);
    line-height: 1;
    text-shadow: 2px 2px 0 var(--golden-hour);
}

.big-tag-roman {
    font-family: var(--display);
    font-size: 18px;
    color: var(--golden-hour);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.footer-fine {
    font-size: 16px;
    color: var(--soft-peach);
    opacity: 0.8;
}

/* =====================================================================
   DRIP DIVIDERS
   ===================================================================== */
.drip-divider {
    display: block;
    width: 100%;
    height: 60px;
    margin: -1px 0;
    z-index: 4;
    position: relative;
}

.drip-divider-gold path { fill: var(--golden-hour); }
.drip-divider-coral path { fill: var(--sunset-coral); }
.drip-divider-twilight path { fill: var(--twilight-brick); }

/* =====================================================================
   REVEAL ANIMATION (skeleton -> painted)
   ===================================================================== */
.reveal-block {
    opacity: 0;
    transform: translateY(20px) rotate(var(--reveal-tilt, 0deg));
    filter: blur(6px);
    transition:
        opacity 0.9s var(--ease-paint),
        transform 0.9s var(--ease-paint),
        filter 0.9s var(--ease-paint);
}

.tilt-left.reveal-block { --reveal-tilt: -1.5deg; }
.tilt-right.reveal-block { --reveal-tilt: 1.5deg; }

.reveal-block.painted {
    opacity: 1;
    transform: translateY(0) rotate(var(--reveal-tilt, 0deg));
    filter: blur(0);
}

/* Skeleton state (shown briefly before painted) */
.reveal-block.skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(245, 200, 150, 0.3) 0%,
        rgba(250, 235, 215, 0.6) 50%,
        rgba(245, 200, 150, 0.3) 100%);
    background-size: 200% 100%;
    animation: skeletonBreathe 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes skeletonBreathe {
    0%, 100% { background-position: 200% 0; opacity: 0.7; }
    50%      { background-position: 0% 0; opacity: 0.4; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1199px) {
    .vine-system {
        width: 100px;
        opacity: 0.7;
    }

    .float-tag-tl {
        left: 130px;
    }

    .marble-grid {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .wall {
        padding: 80px 28px;
    }

    .alley-nav {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

    .marble-grid {
        grid-template-columns: 1fr;
    }

    .alley-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .vine-system {
        width: 60px;
        opacity: 0.4;
    }

    .float-tag-tl {
        top: 90px;
        left: 80px;
        font-size: 18px;
    }

    .float-tag-br {
        right: 24px;
        bottom: 80px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 18px;
    }

    .wall {
        padding: 70px 20px;
    }

    .hero-title {
        font-size: 80px;
    }

    .wall-title {
        font-size: 40px;
    }

    .alley-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .note-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pull-quote blockquote {
        font-size: 28px;
    }

    .vine-system {
        display: none;
    }

    .float-tag {
        font-size: 16px;
    }

    .nav-time {
        display: none;
    }
}
