/* ==========================================================================
   mujun.studio — a graffitied studio wall
   Palette: pastels + ink. Type: handwritten + studio mono.
   Motifs: graffiti, mixed-media, futuristic accents (subtle).
   ========================================================================== */

:root {
    --bg: #F5E6D3;            /* studio off-white */
    --coral: #FFD8CC;         /* primary accent */
    --seafoam: #C9E4D5;       /* secondary accent / sidebar */
    --peach: #FED6A5;         /* tertiary callouts */
    --lavender: #E8D5F2;      /* futuristic accents / neon glow */
    --ink: #333333;           /* primary text / borders */
    --grey: #6B6B6B;          /* secondary text */
    --warm-cream: #FFE3D6;    /* hover blend (coral + seafoam warmer) */

    --font-display: "Caveat", "Indie Flower", cursive;
    --font-body: "Indie Flower", "Caveat", cursive;
    --font-mono: "Spline Sans Mono", "JetBrains Mono", ui-monospace, monospace;

    --sidebar-w: 28%;
    --sidebar-w-tablet: 25%;

    --r-card: 6px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 0 rgba(51, 51, 51, 0.16);
    --shadow-card: 0 8px 22px rgba(51, 51, 51, 0.10), 0 1px 0 rgba(51, 51, 51, 0.18);
    --shadow-paper: 0 4px 14px rgba(51, 51, 51, 0.10);

    --max-content: 1024px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
}

body {
    position: relative;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- Background textures ---------- */
.wall-textures {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.texture-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}
.texture-bleed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    mix-blend-mode: multiply;
}

/* ---------- Layout ---------- */
.layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    min-height: 100vh;
    align-items: stretch;
}

@media (max-width: 1023px) {
    .layout { grid-template-columns: var(--sidebar-w-tablet) 1fr; }
}

@media (max-width: 767px) {
    .layout { grid-template-columns: 1fr; }
}

/* ---------- Sidebar ---------- */
.sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    overflow-y: auto;
    background: var(--seafoam);
    border-right: 1.5px dashed var(--ink);
    padding: 1.75rem 1.5rem 2rem;
    z-index: 5;
    background-image:
        repeating-linear-gradient(0deg, rgba(51,51,51,0.04) 0 1px, transparent 1px 22px),
        repeating-linear-gradient(90deg, rgba(51,51,51,0.025) 0 1px, transparent 1px 22px);
}
.sidebar::-webkit-scrollbar { width: 8px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(51,51,51,0.25); border-radius: 4px; }

.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-header {
    border-bottom: 1.4px dashed rgba(51,51,51,0.5);
    padding-bottom: 1rem;
}
.kicker {
    margin: 0 0 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey);
}
.brand {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: -0.01em;
}
.brand-dot { color: var(--coral); }
.brand-sub {
    margin: 0.4rem 0 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--grey);
    font-style: italic;
}

/* sidebar map */
.studio-map {
    background: rgba(245,230,211,0.7);
    border: 1.4px solid var(--ink);
    border-radius: var(--r-card);
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
    transform: rotate(-0.6deg);
}
.studio-map svg { width: 100%; height: auto; }

/* sidebar nav */
.sidebar-nav ul { display: flex; flex-direction: column; gap: 0.35rem; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1;
    color: var(--ink);
    border: 1.4px solid transparent;
    border-radius: var(--r-card);
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
    position: relative;
}
.sidebar-nav a:hover,
.sidebar-nav a:focus,
.sidebar-nav a.is-active {
    background: rgba(255,216,204,0.55);
    border-color: var(--ink);
    transform: translateX(2px) rotate(-0.4deg);
    animation: border-ripple-fast 2.4s ease-in-out infinite;
}
.sidebar-nav .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--c, var(--coral));
    border: 1.2px solid var(--ink);
    flex-shrink: 0;
}

/* studio status */
.studio-status {
    background: rgba(245,230,211,0.85);
    border: 1.4px solid var(--ink);
    border-radius: var(--r-card);
    padding: 0.85rem 1rem;
    box-shadow: var(--shadow-sm);
    transform: rotate(0.4deg);
}
.status-kicker {
    margin: 0 0 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey);
}
.status-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.status-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
}
.status-mono {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--peach);
    border: 1px solid var(--ink);
    box-shadow: 0 0 6px var(--peach);
}
.status-on { background: var(--coral); box-shadow: 0 0 8px var(--coral); animation: pulse 2.6s ease-in-out infinite; }
.status-foot {
    margin: 0.6rem 0 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--grey);
}

.sidebar-foot {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1.4px dashed rgba(51,51,51,0.5);
    font-family: var(--font-body);
    color: var(--grey);
    font-size: 0.95rem;
}

/* ---------- Hamburger (mobile only) ---------- */
.hamburger {
    display: none;
    position: fixed;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 30;
    background: var(--coral);
    border: 1.4px solid var(--ink);
    padding: 0.55rem 0.8rem 0.55rem 0.7rem;
    border-radius: var(--r-card);
    cursor: pointer;
    box-shadow: var(--shadow-card);
    align-items: center;
    gap: 0.5rem;
}
.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 4px 0;
    transition: transform 220ms ease, opacity 220ms ease;
}
.hamburger-label {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1;
}

@media (max-width: 767px) {
    .hamburger { display: inline-flex; }
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 86%;
        max-width: 360px;
        transform: translateX(-105%);
        transition: transform 360ms cubic-bezier(0.65, 0, 0.35, 1);
        border-right: 1.5px dashed var(--ink);
        box-shadow: 12px 0 24px rgba(51,51,51,0.18);
    }
    .sidebar.is-open { transform: translateX(0); }
    body.menu-open { overflow: hidden; }
}

.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Main wall ---------- */
.wall {
    position: relative;
    padding: 2rem clamp(1rem, 4vw, 3rem) 4rem;
    min-width: 0; /* prevent grid overflow */
}
@media (max-width: 767px) {
    .wall { padding-top: 4.5rem; }
}

.section {
    position: relative;
    padding: 2.5rem 0 1.5rem;
    max-width: var(--max-content);
}

.section-head {
    margin-bottom: 1.5rem;
}
.section-kicker {
    margin: 0 0 0.6rem;
}
.section-kicker .mono {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--coral);
    border: 1.2px solid var(--ink);
    padding: 0.25rem 0.6rem;
    border-radius: var(--r-pill);
}
.display { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.005em; margin: 0; }
.section-title {
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    margin: 0 0 0.5rem;
}
.section-lede {
    margin: 0;
    max-width: 60ch;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--ink);
}

/* ---------- Hero ---------- */
.section-hero { padding-top: 1.25rem; }
.hero-tape {
    position: absolute;
    top: -0.5rem;
    right: 0;
    width: 240px;
    height: 60px;
    pointer-events: none;
}
.tape {
    position: absolute;
    width: 110px;
    height: 26px;
    background: rgba(232,213,242,0.7);
    border: 1px dashed rgba(51,51,51,0.5);
    box-shadow: var(--shadow-sm);
}
.tape-1 { top: 4px; right: 14px; transform: rotate(7deg); }
.tape-2 { top: 28px; right: 70px; transform: rotate(-12deg); background: rgba(254,214,165,0.7); }

.headline {
    font-size: clamp(2.8rem, 6.4vw, 5rem);
    margin: 0.6rem 0 1.2rem;
}
.headline .line { display: block; }
.headline .line-shimmer {
    background: linear-gradient(90deg, var(--coral), var(--lavender), var(--peach), var(--coral));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 9s linear infinite;
    filter: drop-shadow(0 0 8px rgba(232,213,242,0.55));
}
.lede {
    margin: 0 0 1.5rem;
    max-width: 60ch;
    font-family: var(--font-body);
    font-size: 1.18rem;
}
.hero-stamps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.7rem;
    margin-bottom: 1.5rem;
}
.stamp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border: 1.2px solid var(--ink);
    border-radius: var(--r-pill);
    background: var(--peach);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.stamp:nth-child(2) { background: var(--seafoam); }
.stamp:nth-child(3) { background: var(--lavender); }
.mono { font-family: var(--font-mono); }
.neon {
    color: var(--ink);
    text-shadow:
        0 0 6px var(--lavender),
        0 0 12px rgba(232,213,242,0.6);
}

.scrawl {
    width: min(620px, 100%);
    margin: 1.2rem 0 1.6rem;
    opacity: 0.95;
}
.scrawl svg { width: 100%; height: auto; }
#scrawl-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: draw 3.4s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}

/* dividers */
.divider {
    margin: 2.5rem 0 0.5rem;
    width: 100%;
    height: 30px;
}
.divider svg { width: 100%; height: 100%; }
.divider-path {
    stroke-dasharray: 6 3;
    animation: ripple-glow 7s ease-in-out infinite;
}

/* ---------- Zones ---------- */
.zone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}
@media (max-width: 720px) {
    .zone-grid { grid-template-columns: 1fr; }
}
.zone-card {
    position: relative;
    padding: 1.25rem 1.25rem 1.1rem;
    background: var(--bg);
    border: 2.4px solid var(--ink);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-card);
    transform: rotate(calc(var(--tilt, 0) * 1deg));
    transition: transform 320ms cubic-bezier(0.65, 0, 0.35, 1), box-shadow 320ms ease;
    overflow: hidden;
}
.zone-card[data-tilt] { --tilt: attr(data-tilt number, 0); }
.zone-card.wide { grid-column: 1 / -1; }
.zone-card::before {
    /* border ripple effect */
    content: "";
    position: absolute;
    inset: -2.4px;
    border-radius: inherit;
    border: 2.4px solid transparent;
    background: linear-gradient(135deg, var(--coral), var(--seafoam), var(--peach), var(--lavender)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 320ms ease;
    animation: border-ripple 9s ease-in-out infinite;
}
.zone-card:hover, .zone-card:focus-within {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 0 14px 28px rgba(51,51,51,0.16), 0 1px 0 rgba(51,51,51,0.25);
}
.zone-card:hover::before, .zone-card:focus-within::before {
    opacity: 1;
    animation: border-ripple-fast 2.4s ease-in-out infinite;
}
.zone-card--coral    { background: linear-gradient(180deg, var(--coral) 0%, var(--bg) 90%); }
.zone-card--seafoam  { background: linear-gradient(180deg, var(--seafoam) 0%, var(--bg) 90%); }
.zone-card--peach    { background: linear-gradient(180deg, var(--peach) 0%, var(--bg) 90%); }
.zone-card--lavender { background: linear-gradient(180deg, var(--lavender) 0%, var(--bg) 90%); }
.zone-card--sand     { background: linear-gradient(180deg, var(--bg) 0%, #efdcc6 100%); }
.zone-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.35rem;
}
.zone-title {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.05;
}
.zone-desc {
    margin: 0 0 0.75rem;
    max-width: 50ch;
    font-family: var(--font-body);
}
.zone-meta { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.78rem; color: var(--ink); }
.zone-meta li { letter-spacing: 0.04em; }

/* ---------- Artifacts (polaroids) ---------- */
.polaroid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 1.25rem;
    align-items: end;
    margin-top: 1rem;
}
@media (max-width: 1023px) { .polaroid-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .polaroid-row { grid-template-columns: 1fr; } }

.polaroid {
    background: #fff;
    padding: 0.5rem 0.5rem 1.2rem;
    border: 1.2px solid var(--ink);
    box-shadow: var(--shadow-card);
    margin: 0;
    transition: transform 360ms cubic-bezier(0.65, 0, 0.35, 1), box-shadow 360ms ease;
}
.polaroid:hover { transform: translateY(-4px) rotate(0deg) !important; box-shadow: 0 14px 28px rgba(51,51,51,0.16); }
.polaroid-1 { transform: rotate(-2.4deg); }
.polaroid-2 { transform: rotate(1.8deg); }
.polaroid-3 { transform: rotate(-1.2deg); }
.polaroid-4 { transform: rotate(2.6deg); }

.polaroid-photo {
    aspect-ratio: 5 / 4;
    overflow: hidden;
    margin-bottom: 0.55rem;
    border: 1px solid rgba(51,51,51,0.2);
}
.polaroid-photo svg { width: 100%; height: 100%; }
.polaroid figcaption {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--ink);
    text-align: center;
    line-height: 1.2;
}

.annotation {
    margin: 1.5rem 0 0;
    padding: 0.9rem 1rem;
    background: rgba(255,216,204,0.55);
    border: 1.2px dashed var(--ink);
    border-radius: var(--r-card);
    transform: rotate(-0.6deg);
    max-width: 60ch;
    font-family: var(--font-body);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.annotation p { margin: 0; }

/* ---------- Future ---------- */
.section-future .display .shimmer {
    background: linear-gradient(90deg, var(--lavender), var(--peach), var(--coral), var(--lavender));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 9s linear infinite;
}
.future-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
    margin-top: 1.25rem;
}
@media (max-width: 900px) { .future-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .future-grid { grid-template-columns: 1fr; } }

.future-card {
    position: relative;
    padding: 1.1rem 1.1rem 1rem;
    background: var(--bg);
    border: 1.6px solid var(--ink);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.future-card::after {
    /* circuitry pattern overlay */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 12%, var(--ink) 1.2px, transparent 1.6px),
        radial-gradient(circle at 88% 88%, var(--ink) 1.2px, transparent 1.6px);
    background-size: 80px 80px;
    opacity: 0.12;
    pointer-events: none;
}
.future-card .badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border: 1.2px solid var(--ink);
    border-radius: var(--r-pill);
    background: var(--lavender);
    margin-bottom: 0.6rem;
}
.future-card h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.1;
}
.future-card p {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
}

/* holographic banner */
.holo-banner {
    margin: 1.5rem 0 0;
    padding: 0.85rem 1rem;
    border: 1.6px solid var(--ink);
    border-radius: var(--r-pill);
    background:
        linear-gradient(90deg,
            rgba(255,216,204,0.7) 0%,
            rgba(232,213,242,0.7) 25%,
            rgba(201,228,213,0.7) 50%,
            rgba(254,214,165,0.7) 75%,
            rgba(255,216,204,0.7) 100%);
    background-size: 300% 100%;
    animation: shimmer 8s linear infinite;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.holo-banner-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
}

/* ---------- Field notes ---------- */
.notes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    margin-top: 1rem;
}
@media (max-width: 720px) { .notes-list { grid-template-columns: 1fr; } }
.note {
    position: relative;
    padding: 1rem 1.1rem 1.1rem;
    background: var(--bg);
    border: 1.4px solid var(--ink);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-card);
    transform: rotate(-0.3deg);
}
.note:nth-child(2n) { transform: rotate(0.4deg); background: linear-gradient(180deg, rgba(201,228,213,0.4), var(--bg)); }
.note:nth-child(3n) { transform: rotate(-0.6deg); background: linear-gradient(180deg, rgba(254,214,165,0.35), var(--bg)); }
.note::before {
    /* push pin */
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 35% 35%, var(--coral) 0 6px, var(--ink) 7px 8px, transparent 9px);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(51,51,51,0.4);
}
.note-date {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey);
}
.note-body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
}

/* ---------- Contact ---------- */
.contact-card {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg);
    border: 1.6px solid var(--ink);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-card);
}
@media (max-width: 720px) {
    .contact-card { grid-template-columns: 1fr; }
    .contact-tag { justify-self: center; }
}
.contact-line {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
}
.contact-line .ink {
    background: var(--coral);
    border: 1.2px solid var(--ink);
    border-radius: 50%;
    padding: 0 0.25rem;
    margin: 0 0.1rem;
    display: inline-block;
    transform: translateY(-2px);
}
.contact-sub {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey);
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
}
.contact-list .mono { display: inline-block; min-width: 4ch; color: var(--ink); }
.contact-tag svg { width: 200px; height: 200px; transform: rotate(-4deg); transition: transform 320ms ease; }
.contact-tag:hover svg { transform: rotate(0deg) scale(1.04); }

/* footer */
.wall-footer {
    margin-top: 2.2rem;
    padding-top: 1rem;
    border-top: 1.2px dashed rgba(51,51,51,0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
}
.wall-footer p { margin: 0; }
.footer-tag { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ---------- Animations ---------- */
@keyframes draw {
    to { stroke-dashoffset: 0; }
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 6px var(--coral); transform: scale(1); }
    50% { box-shadow: 0 0 14px var(--coral); transform: scale(1.15); }
}
@keyframes border-ripple {
    0%, 100% { filter: blur(0px) brightness(1); opacity: 0.85; }
    50% { filter: blur(0.6px) brightness(1.15); opacity: 1; }
}
@keyframes border-ripple-fast {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,216,204,0.0); }
    50% { box-shadow: 0 0 0 3px rgba(255,216,204,0.55); }
}
@keyframes ripple-glow {
    0%, 100% { filter: drop-shadow(0 0 0px rgba(51,51,51,0)); opacity: 0.7; }
    50% { filter: drop-shadow(0 0 4px rgba(232,213,242,0.7)); opacity: 1; }
}

/* reveal */
.section, .zone-card, .polaroid, .future-card, .note, .contact-card {
    opacity: 1;
}
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
    #scrawl-path { stroke-dashoffset: 0; }
}
