/* gabs.cafe — soft-architecture conversation atrium */
/* Animation strategy: IntersectionObserver-driven chapter inflation,
   constant ambient bobbing-life, magnetic hero tail, listening-wall pop cycle. */

:root {
    --peach-cream:    #FFE3D8;
    --buttercup:      #FFF6E0;
    --periwinkle:     #E5F1FF;
    --bubblegum:      #FFD6E8;
    --cellophane:     #FFFFFF;
    --lilac-bounce:   #C9B7FF;
    --cordovan:       #3A1A1F;
    --roasted-plum:   #7A4A55;
    --strawberry:     #FF5A5F;
    --spearmint:      #74D7B5;

    --display:  "Fraunces", "Inter", Georgia, serif;
    --body:     "Quicksand", "Inter", system-ui, -apple-system, sans-serif;
    --mono:     "DM Mono", "Inter", ui-monospace, monospace;

    --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html, body {
    background: var(--buttercup);
    color: var(--cordovan);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.66;
    word-spacing: 0.01em;
    overflow-x: hidden;
    cursor: none;
}

body {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(900px 600px at 20% 10%, rgba(255, 214, 232, 0.32), transparent 60%),
        radial-gradient(800px 700px at 80% 30%, rgba(229, 241, 255, 0.32), transparent 60%),
        radial-gradient(700px 800px at 60% 90%, rgba(201, 183, 255, 0.22), transparent 60%),
        var(--buttercup);
}

a { color: inherit; text-decoration: none; }

/* ---------- Bokeh field ---------- */
.bokeh-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bokeh-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(32px);
    will-change: transform, opacity;
}

/* ---------- Cursor companion ---------- */
.cursor-companion {
    position: fixed;
    top: 0; left: 0;
    width: 60px; height: 60px;
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(-100px, -100px, 0);
    transition: width 220ms var(--spring), height 220ms var(--spring);
    will-change: transform;
}
.cursor-companion svg {
    width: 100%; height: 100%;
    transition: transform 280ms var(--spring);
}
.cursor-companion.is-ear svg { transform: rotate(-12deg) scale(1.15); }

/* ---------- Bouquet header ---------- */
.bouquet {
    position: fixed;
    top: 22px; right: 22px;
    z-index: 50;
    display: flex;
    gap: 6px;
    padding: 10px;
    pointer-events: auto;
}
.bud {
    position: relative;
    display: block;
    width: 80px; height: 80px;
    transform-origin: 50% 60%;
    transition: transform 320ms var(--spring), filter 240ms;
    animation: bobBud 4.2s ease-in-out infinite;
    will-change: transform;
}
.bud:nth-child(2) { animation-duration: 4.6s; animation-delay: -0.6s; }
.bud:nth-child(3) { animation-duration: 3.8s; animation-delay: -1.2s; }
.bud:nth-child(4) { animation-duration: 4.4s; animation-delay: -0.3s; }
.bud:nth-child(5) { animation-duration: 4.0s; animation-delay: -1.8s; }

.bouquet:hover .bud { transform: scale(0.9); }
.bouquet .bud:hover { transform: scale(1.3); z-index: 2; }

.bud svg { width: 100%; height: 100%; overflow: visible; }
.bud-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    fill: var(--cordovan);
    fill-opacity: 0.78;
}

@keyframes bobBud {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-5px) rotate(-1.4deg); }
}

.clock-pendulum {
    transform-origin: 14px 14px;
    animation: pendulum 2.6s ease-in-out infinite;
}
@keyframes pendulum {
    0%, 100% { transform: rotate(-22deg); }
    50%      { transform: rotate(22deg); }
}

/* ---------- Layout shell ---------- */
main {
    position: relative;
    z-index: 1;
    padding-bottom: 220px;
}
.chapter {
    position: relative;
    padding: 96px clamp(20px, 5vw, 80px);
    min-height: 100vh;
}
.chapter-number {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--roasted-plum);
    opacity: 0.78;
    margin-bottom: 18px;
}
.chapter-title {
    font-family: var(--display);
    font-weight: 600;
    font-variation-settings: "opsz" 144;
    font-size: clamp(2.4rem, 5.6vw, 5.2rem);
    letter-spacing: -0.022em;
    line-height: 1.04;
    color: var(--cordovan);
    margin-bottom: 24px;
    max-width: 16ch;
}
.chapter-lede {
    max-width: 56ch;
    font-size: 1.08rem;
    color: var(--roasted-plum);
    margin-bottom: 56px;
}

/* trailing dots animation */
.trailing-dots { display: inline-block; margin-left: 4px; }
.trailing-dots span {
    display: inline-block;
    color: var(--strawberry);
    animation: dots 1.4s ease-in-out infinite;
}
.trailing-dots span:nth-child(1) { animation-delay: 0s; }
.trailing-dots span:nth-child(2) { animation-delay: 0.22s; }
.trailing-dots span:nth-child(3) { animation-delay: 0.44s; }
@keyframes dots {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
    30%           { transform: translateY(-6px); opacity: 1; }
}

.dm-mono {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--roasted-plum);
}

/* ---------- §01 The Door ---------- */
.chapter-door {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    min-height: 100vh;
    padding-top: 120px;
}
.hero-bubble {
    position: relative;
    width: min(1100px, 92vw);
    height: 78vh;
    min-height: 540px;
    transform: scale(0);
    opacity: 0;
    transition: transform 1200ms var(--spring), opacity 600ms var(--ease-out);
}
.hero-bubble.is-in {
    transform: scale(1);
    opacity: 1;
}
.hero-svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    overflow: visible;
}
.hero-copy {
    position: absolute;
    top: 18%;
    left: 10%;
    width: 64%;
    z-index: 2;
}
.hero-headline {
    font-family: var(--display);
    font-weight: 600;
    font-variation-settings: "opsz" 144;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    line-height: 1.04;
    letter-spacing: -0.022em;
    color: var(--cordovan);
}
.hero-headline .line {
    display: block;
    overflow: hidden;
    transform: translateY(110%);
    opacity: 0;
    animation: writeIn 900ms var(--ease-out) forwards;
}
.hero-bubble.is-in .hero-headline .line:nth-child(1) { animation-delay: 600ms; }
.hero-bubble.is-in .hero-headline .line:nth-child(2) { animation-delay: 820ms; }
.hero-bubble.is-in .hero-headline .line:nth-child(3) { animation-delay: 1020ms; }
@keyframes writeIn {
    0%   { transform: translateY(110%); opacity: 0; }
    100% { transform: translateY(0);     opacity: 1; }
}
.hero-sub {
    margin-top: 28px;
    max-width: 44ch;
    font-size: 1.06rem;
    color: var(--roasted-plum);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 600ms 1300ms, transform 600ms 1300ms var(--ease-out);
}
.hero-bubble.is-in .hero-sub { opacity: 1; transform: translateY(0); }
.hero-stamp {
    margin-top: 36px;
    display: flex;
    gap: 18px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--roasted-plum);
    opacity: 0.8;
}
.stamp-time::before { content: "✱ "; color: var(--strawberry); }
.stamp-table::before { content: "· "; color: var(--lilac-bounce); }

.ear-logo {
    position: absolute;
    right: 6%;
    top: 24%;
    z-index: 3;
    text-align: center;
    animation: bobBud 4.0s ease-in-out infinite;
}
.ear-caption {
    display: block;
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--roasted-plum);
    opacity: 0.7;
}

.scroll-hint {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--roasted-plum);
    opacity: 0.7;
    animation: dropHint 2.4s ease-in-out infinite;
}
@keyframes dropHint {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%      { transform: translateY(6px); opacity: 1; }
}

/* ---------- foam-bands ---------- */
.foam-band {
    position: relative;
    height: 160px;
    margin: -20px 0;
    transform: rotate(-7deg);
    overflow: visible;
    pointer-events: none;
    z-index: 0;
}
.foam-band.reverse { transform: rotate(7deg); }
.foam-bubble {
    position: absolute;
    top: 50%;
    width: calc(var(--bs, 50) * 1px);
    height: calc(var(--bs, 50) * 1px);
    background: radial-gradient(circle at 30% 28%, rgba(255,255,255,0.85), var(--periwinkle) 60%, var(--lilac-bounce) 110%);
    border-radius: 52% 48% 50% 50% / 48% 52% 48% 52%;
    box-shadow:
        inset -6px -8px 14px rgba(201,183,255,0.40),
        0 8px 18px rgba(58,26,31,0.07);
    transform: translate(-50%, -50%);
    opacity: 0.9;
}

/* ---------- §02 Brews — honeycomb ---------- */
.chapter-brews {
    background:
        radial-gradient(800px 500px at 30% 20%, rgba(255, 214, 232, 0.22), transparent 60%),
        radial-gradient(700px 600px at 80% 70%, rgba(116, 215, 181, 0.10), transparent 60%);
}
.honeycomb {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 320px;
    gap: 28px 32px;
    margin-top: 40px;
    max-width: 1280px;
}
.honeycomb > .hex-bubble:nth-child(2n) { transform: translateY(40px); }
.honeycomb > .hex-bubble:nth-child(3n) { transform: translateY(20px); }

.hex-bubble {
    position: relative;
    width: 100%; height: 320px;
    padding: 36px 36px 56px;
    transform-origin: center;
    opacity: 0;
    transform: translateY(80px) scale(0.84);
    transition: transform 540ms var(--spring), opacity 540ms var(--ease-out), filter 220ms;
    will-change: transform;
}
.hex-bubble.is-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.honeycomb > .hex-bubble:nth-child(2n).is-in { transform: translateY(40px) scale(1); }
.honeycomb > .hex-bubble:nth-child(3n).is-in { transform: translateY(20px) scale(1); }

.hex-bubble:hover { transform: translateY(0) scale(1.08) !important; z-index: 3; }
.hex-bubble.is-pressed { transform: translateY(4px) scale(1.04) !important; }

.bubble-shape {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}
.hex-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8px;
}
.hex-content h3 {
    font-family: var(--display);
    font-weight: 600;
    font-variation-settings: "opsz" 144;
    font-size: 1.7rem;
    line-height: 1.06;
    letter-spacing: -0.022em;
    color: var(--cordovan);
    margin-bottom: 8px;
    max-width: 14ch;
}
.hex-content p {
    color: var(--cordovan);
    opacity: 0.86;
    font-size: 0.96rem;
    line-height: 1.5;
    max-width: 26ch;
}
.fresh-badge {
    position: absolute;
    top: 36px; left: 36px;
    z-index: 3;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--cordovan);
    background: var(--spearmint);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 8px rgba(58,26,31,0.10);
}
.price-scribble {
    position: absolute;
    right: -10px;
    bottom: 16px;
    z-index: 3;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--cordovan);
    opacity: 0.78;
    transform: rotate(-6deg);
}
.kettle-tail {
    position: absolute;
    bottom: -22px; left: -22px;
    width: 60px; height: 60px;
    z-index: 4;
    transform-origin: 80% 80%;
    transition: transform 480ms var(--spring);
}
.hex-bubble:hover .kettle-tail { transform: rotate(-28deg) translate(2px, -2px); }

/* drop ink */
.ink-drop {
    position: absolute;
    width: 14px; height: 18px;
    background: radial-gradient(circle at 40% 30%, var(--cordovan), #1d0a0d 80%);
    border-radius: 50% 50% 60% 40% / 60% 60% 40% 40%;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    animation: dropDown 700ms var(--ease-out) forwards;
}
@keyframes dropDown {
    0%   { transform: translate(0, 0) scale(1); opacity: 1; }
    70%  { transform: translate(0, 60px) scale(1.1); opacity: 1; }
    100% { transform: translate(0, 80px) scale(0.4); opacity: 0; }
}
.hex-bubble.is-stained .bubble-shape path:first-of-type {
    transition: filter 600ms;
    filter: hue-rotate(-12deg) saturate(1.2);
}

/* pigeon */
.pigeon-track {
    position: absolute;
    bottom: 30px; left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    pointer-events: none;
}
.pigeon {
    position: absolute;
    bottom: 0;
    left: -120px;
    width: 100px;
    will-change: transform;
}
.pigeon.is-walking {
    animation: walk 47s linear forwards;
}
@keyframes walk {
    0%   { transform: translateX(0) translateY(0); }
    100% { transform: translateX(calc(100vw + 200px)) translateY(0); }
}
.pigeon svg { animation: bobPigeon 0.6s ease-in-out infinite; }
@keyframes bobPigeon {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* ---------- §03 Eavesdrop ---------- */
.chapter-eavesdrop {
    background:
        radial-gradient(900px 500px at 70% 30%, rgba(229, 241, 255, 0.40), transparent 60%);
    overflow: hidden;
}
.whisper-field {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 480px;
    margin-top: 24px;
}
.whisper {
    position: absolute;
    left: var(--x);
    top:  var(--y);
    transform: translate(-50%, -50%) rotate(var(--rot));
    background: var(--periwinkle);
    color: var(--cordovan);
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    line-height: 1.2;
    padding: 18px 24px 22px;
    border-radius: 56% 44% 50% 50% / 48% 52% 48% 52%;
    box-shadow:
        inset 0 -12px 22px rgba(201,183,255,0.40),
        inset 4px 6px 10px rgba(255,255,255,0.55),
        0 8px 18px rgba(58,26,31,0.08);
    opacity: 0.55;
    will-change: transform;
}
.whisper time {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--roasted-plum);
    opacity: 0.7;
}
.whisper:hover { opacity: 1; }

/* ---------- §04 Recipes ---------- */
.chapter-recipes {
    background:
        radial-gradient(900px 600px at 20% 20%, rgba(255,227,216,0.40), transparent 60%),
        radial-gradient(900px 600px at 80% 80%, rgba(255,214,232,0.30), transparent 60%);
}
.recipe-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
    max-width: 1100px;
}
.holler-bubble {
    position: relative;
    width: 100%;
    min-height: 460px;
    padding: 64px clamp(36px, 5vw, 72px) 100px;
    opacity: 0;
    transform: scale(0.86);
    transition: transform 720ms var(--spring), opacity 540ms var(--ease-out);
}
.holler-bubble.is-in {
    opacity: 1;
    transform: scale(1);
}
.holler-shape {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}
.holler-offset { align-self: flex-end; max-width: 92%; transform: scale(0.86) translateX(8%); }
.holler-offset.is-in { transform: scale(1) translateX(0); }

.recipe-content {
    position: relative;
    z-index: 2;
}
.recipe-name {
    display: block;
    margin-bottom: 8px;
    color: var(--roasted-plum);
}
.recipe-content h3 {
    font-family: var(--display);
    font-weight: 600;
    font-variation-settings: "opsz" 144;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--cordovan);
    margin-bottom: 20px;
    max-width: 18ch;
}
.dialog p {
    margin-bottom: 8px;
    font-size: 1.04rem;
    color: var(--cordovan);
    max-width: 56ch;
}
.dialog .speaker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--strawberry);
    margin-right: 6px;
    text-transform: uppercase;
}

.ingredient-tree {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}
.ingredient {
    position: absolute;
    left: var(--ix);
    top:  var(--iy);
    transform: translate(-50%, -50%) rotate(-5deg);
    background: var(--periwinkle);
    color: var(--cordovan);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow:
        inset 0 -6px 10px rgba(201,183,255,0.40),
        inset 2px 4px 8px rgba(255,255,255,0.6),
        0 4px 8px rgba(58,26,31,0.08);
}
.ingredient:nth-child(2n) { transform: translate(-50%, -50%) rotate(4deg); background: var(--bubblegum); }
.ingredient:nth-child(3n) { background: var(--peach-cream); }

/* cat */
.cat-corner {
    position: absolute;
    bottom: 60px; right: 40px;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms 600ms, transform 800ms 600ms var(--spring);
    animation: bobBud 4.6s ease-in-out infinite;
}
.chapter-recipes.is-in .cat-corner { opacity: 1; transform: translateY(0); }

/* ---------- §05 Listening Wall ---------- */
.chapter-listening {
    background:
        radial-gradient(900px 600px at 20% 80%, rgba(229,241,255,0.50), transparent 60%);
}
.listening-wall {
    position: relative;
    width: 100%;
    min-height: 70vh;
    margin-top: 24px;
}
.listen-card {
    position: absolute;
    width: 280px;
    padding: 24px 28px 30px;
    background: var(--periwinkle);
    color: var(--cordovan);
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.32;
    border-radius: 54% 46% 50% 50% / 50% 50% 46% 54%;
    box-shadow:
        inset 0 -14px 26px rgba(201,183,255,0.45),
        inset 4px 6px 10px rgba(255,255,255,0.55),
        0 10px 22px rgba(58,26,31,0.10);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 540ms var(--spring), opacity 360ms;
    will-change: transform;
}
.listen-card.is-in {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.listen-card.is-popping {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0;
    transition: transform 380ms var(--ease-out), opacity 380ms;
}
.listen-card .stamp {
    display: block;
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--roasted-plum);
    opacity: 0.78;
}

.pop-particle {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--bubblegum);
    box-shadow: inset -2px -3px 6px rgba(201,183,255,0.50), inset 1px 2px 4px rgba(255,255,255,0.7);
    pointer-events: none;
    opacity: 1;
    animation: popUp 600ms var(--ease-out) forwards;
}
@keyframes popUp {
    0%   { transform: translate(0, 0) scale(0.6); opacity: 1; }
    100% { transform: translate(var(--dx, 0), var(--dy, -60px)) scale(1.1); opacity: 0; }
}

/* ---------- §06 Find Us ---------- */
.chapter-findus {
    background:
        radial-gradient(700px 500px at 80% 20%, rgba(255,246,224,0.60), transparent 60%);
}
.findus-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: center;
}
@media (max-width: 880px) {
    .findus-grid { grid-template-columns: 1fr; }
}
.bubble-map {
    position: relative;
    height: 540px;
}
.map-bubble {
    position: absolute;
    transform-origin: center;
    animation: bobBud 4.6s ease-in-out infinite;
}
.map-bubble svg { width: 100%; height: 100%; overflow: visible; }
.map-bubble.street { left: 0; top: 0; width: 60%; animation-delay: -0.3s; }
.map-bubble.door   { right: 0; top: 28%; width: 50%; animation-delay: -1.1s; }
.map-bubble.chair  { left: 14%; bottom: 0; width: 46%; animation-delay: -1.8s; }
.map-label {
    position: absolute;
    bottom: -6px; left: 50%;
    transform: translateX(-50%);
    background: var(--buttercup);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 8px rgba(58,26,31,0.10);
    white-space: nowrap;
}

.findus-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.info-bubble {
    position: relative;
    background: var(--peach-cream);
    padding: 28px 34px 32px;
    border-radius: 54% 46% 50% 50% / 50% 54% 46% 50%;
    box-shadow:
        inset 0 -14px 26px rgba(201,183,255,0.40),
        inset 6px 8px 14px rgba(255,255,255,0.55),
        0 10px 22px rgba(58,26,31,0.10);
    animation: bobBud 4.4s ease-in-out infinite;
}
.info-bubble:nth-child(2) { background: var(--periwinkle); animation-delay: -1s; }
.info-bubble:nth-child(3) { background: var(--bubblegum);  animation-delay: -2s; }
.info-bubble h3 {
    font-family: var(--display);
    font-weight: 600;
    font-variation-settings: "opsz" 144;
    font-size: 1.6rem;
    line-height: 1.06;
    letter-spacing: -0.022em;
    margin-bottom: 8px;
}
.info-bubble p {
    color: var(--cordovan);
    opacity: 0.86;
    font-size: 1rem;
}

.drop-note form {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.drop-note input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
    color: var(--cordovan);
    font-family: var(--body);
    font-size: 0.98rem;
    box-shadow: inset 0 2px 6px rgba(58,26,31,0.10);
    outline: none;
}
.drop-note button {
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: var(--strawberry);
    color: var(--cellophane);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform 220ms var(--spring);
}
.drop-note button:hover { transform: scale(1.06); }
.drop-note button:active { transform: scale(0.96); }
.note-thanks {
    margin-top: 10px;
    color: var(--strawberry);
    opacity: 0;
    transition: opacity 320ms;
}
.note-thanks.is-on { opacity: 1; }

.closing-line {
    margin-top: 100px;
    font-family: var(--display);
    font-weight: 600;
    font-variation-settings: "opsz" 144;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--cordovan);
    text-align: center;
    letter-spacing: -0.022em;
}

/* dissolving footer */
.footer-pop {
    position: relative;
    margin-top: 80px;
    height: 200px;
    display: flex;
    justify-content: center;
    gap: 26px;
}
.pop-bubble {
    width: 48px; height: 48px;
    border-radius: 52% 48% 50% 50% / 48% 52% 48% 52%;
    background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.85), var(--peach-cream) 60%, var(--lilac-bounce) 110%);
    box-shadow: inset -4px -6px 12px rgba(201,183,255,0.40);
    opacity: 0.75;
    animation: dissolveUp 5s ease-in-out infinite;
    animation-delay: var(--pd);
}
.pop-bubble:nth-child(2n) { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.85), var(--bubblegum) 60%, var(--lilac-bounce) 110%); }
.pop-bubble:nth-child(3n) { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.85), var(--periwinkle) 60%, var(--lilac-bounce) 110%); }
@keyframes dissolveUp {
    0%   { transform: translateY(40px) scale(0.6); opacity: 0; }
    30%  { transform: translateY(0) scale(1);     opacity: 0.8; }
    100% { transform: translateY(-220px) scale(0.4); opacity: 0; }
}

/* ---------- ambient bobs (set via JS as transform on shapes) ---------- */
.bob {
    will-change: transform;
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
    body { cursor: auto; }
    .cursor-companion { display: none; }
    .bouquet { gap: 2px; padding: 6px; transform: scale(0.78); transform-origin: top right; }
    .hero-copy { width: 80%; left: 8%; top: 14%; }
    .ear-logo { right: 6%; top: 64%; }
    .honeycomb { grid-template-columns: 1fr; grid-auto-rows: 320px; gap: 40px; }
    .honeycomb > .hex-bubble:nth-child(2n),
    .honeycomb > .hex-bubble:nth-child(3n) { transform: translateY(0); }
    .honeycomb > .hex-bubble:nth-child(2n).is-in,
    .honeycomb > .hex-bubble:nth-child(3n).is-in { transform: translateY(0) scale(1); }
    .holler-offset { align-self: stretch; max-width: 100%; transform: scale(0.86); }
    .bubble-map { height: 380px; }
    .findus-grid { gap: 32px; }
    .chapter { padding: 72px 20px; }
}
