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

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Colour tokens ────────────────────────────────── */
:root {
    --paper:      #F5D8B8;
    --text:       #1A0800;
    --accent:     #8A2800;
    --mauve:      #C8907A;
    --celadon:    #8AB4BC;
    --olive:      #7AAA20;
    --chartreuse: #A8C020;
    --orange:     #F07020;
    --amber:      #F5B818;
    --frosted:    rgba(245, 216, 184, 0.82);
}

/* ── Typography ───────────────────────────────────── */
html { font-size: 16px; }
body {
    font-family: 'Josefin Sans', system-ui, sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* ── Watercolor background (fixed) ───────────────── */
.wc-bg {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 0;
    pointer-events: none;
}

.wc-bg > div {
    position: absolute;
    mix-blend-mode: multiply;
    transform: translateZ(0);
}

.wc-bg__mauve {
    width: 72vw; height: 72vw;
    top: -22vw; left: -18vw;
    border-radius: 50%;
    clip-path: inset(0 round 50%);
    border: 10vw solid var(--mauve);
    opacity: 0.65;
}

.wc-bg__celadon {
    width: 46vw; height: 46vw;
    top: -10vw; left: -4vw;
    border-radius: 50%;
    clip-path: inset(0 round 50%);
    background: var(--celadon);
    opacity: 0.55;
}

.wc-bg__olive {
    width: 38vw; height: 38vw;
    bottom: 3vh; left: -6vw;
    background: var(--olive);
    border-radius: 60% 40% 70% 30% / 50% 65% 35% 50%;
    clip-path: inset(0 round 60% 40% 70% 30% / 50% 65% 35% 50%);
    opacity: 0.50;
}

.wc-bg__chartreuse {
    width: 12vw; height: 85vh;
    top: 6vh; left: 47vw;
    background: var(--chartreuse);
    border-radius: 50%;
    clip-path: inset(0 round 50%);
    opacity: 0.42;
}

.wc-bg__orange-inner {
    width: 20vw; height: 120vh;
    top: -14vh; right: 14vw;
    background: var(--orange);
    border-radius: 40% 30% 35% 45%;
    clip-path: inset(0 round 40% 30% 35% 45%);
    opacity: 0.52;
}

.wc-bg__orange-outer {
    width: 15vw; height: 120vh;
    top: -10vh; right: 0;
    background: #D05010;
    border-radius: 30% 0 0 30%;
    clip-path: inset(0 round 30% 0 0 30%);
    opacity: 0.58;
}

.wc-bg__amber {
    width: 30vw; height: 32vw;
    top: 4vh; right: 10vw;
    background: var(--amber);
    border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%;
    clip-path: inset(0 round 55% 45% 60% 40% / 45% 60% 40% 55%);
    opacity: 0.58;
}

/* ── Scroll-snap container ────────────────────────── */
.snap-wrap {
    position: relative;
    z-index: 1;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}
.snap-wrap::-webkit-scrollbar { display: none; }

.snap-section {
    height: 100dvh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ── Side navigation ──────────────────────────────── */
.side-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: opacity 0.2s;
}
.side-nav[inert] { opacity: 0; }

.side-nav__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(26, 8, 0, 0.28);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
    position: relative;
}

.side-nav__dot::before {
    content: '';
    position: absolute;
    inset: -8px;
}

.side-nav__dot::after {
    content: attr(title);
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26,8,0,0.75);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}

.side-nav__dot:hover::after {
    opacity: 1;
    transition: opacity 0.2s 0.3s;
}

.side-nav__dot--active {
    background: var(--accent);
    transform: scale(1.35);
}

/* ── Floating SVG elements ───────────────────────── */
@keyframes floatGoose {
    0%, 100% { transform: rotate(12deg) translate(0, 0); }
    35%       { transform: rotate(18deg) translate(22px, -64px); }
    70%       { transform: rotate(6deg) translate(-16px, -30px); }
}

@keyframes floatStar {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    40%       { transform: translate(-28px, -70px) rotate(25deg); }
    75%       { transform: translate(16px, -32px) rotate(-12deg); }
}

@keyframes floatFlower {
    0%, 100% { transform: translate(0, 0) rotate(-4deg); }
    30%       { transform: translate(20px, -52px) rotate(10deg); }
    65%       { transform: translate(-14px, -80px) rotate(-14deg); }
}

@keyframes floatSwirl {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    45%       { transform: translate(26px, -62px) rotate(-18deg); }
    80%       { transform: translate(-16px, -24px) rotate(12deg); }
}

.float {
    position: absolute;
    pointer-events: none;
    color: var(--text);
    opacity: 0.18;
}

.float svg {
    display: block;
    width: 100%;
    height: 100%;
}

.float--goose-top-right {
    width: clamp(78px, 10vw, 135px);
    animation: floatGoose 9s ease-in-out infinite;
}

.float--star-bottom-left {
    width: clamp(80px, 10vw, 140px);
    animation: floatStar 12s ease-in-out infinite 1.5s;
}

.float--flower-top-left {
    width: clamp(62px, 8.5vw, 110px);
    animation: floatFlower 10s ease-in-out infinite 3s;
}

.float--swirl-bottom-right {
    width: clamp(54px, 7vw, 96px);
    animation: floatSwirl 11s ease-in-out infinite 0.5s;
}

/* ── Section 1 — Birth Announcement ─────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.announce {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.announce__tagline {
    font-size: 0.78rem;
    font-style: italic;
    letter-spacing: 0.15em;
    color: rgba(138, 40, 0, 0.72);
    background: var(--frosted);
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(138, 40, 0, 0.3);
    animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

.announce__name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    color: var(--text);
    text-shadow: 0 2px 32px rgba(26,8,0,0.07);
    animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}

.announce__bunting {
    display: block;
    width: min(50rem, 85vw);
    height: auto;
}

.announce__surname {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-style: normal;
    font-size: 0.2em;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.5em;
}

.announce__divider {
    width: 3.5rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(138,40,0,0.3), transparent);
    margin: -0.5rem 0;
    animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.75s both;
}

.announce__date {
    font-size: 0.8rem;
    font-variant: small-caps;
    letter-spacing: 0.25em;
    background: var(--frosted);
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 400;
    animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.9s both;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 1.2s both;
}

.scroll-hint svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text);
    animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0);   opacity: 0.28; }
    50%       { transform: translateY(6px); opacity: 0.58; }
}

/* ── Section 2 — Stats ───────────────────────────── */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 680px;
    width: 100%;
    padding: 2rem;
}

.stat-card {
    background: var(--frosted);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    border: 1px solid var(--accent);
}

.stat-card__icon {
    width: 2.5rem; height: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.stat-card__icon svg { width: 100%; height: 100%; }

.stat-card__label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.8;
}

.stat-card__value {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
}

@media (max-width: 600px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Section 3 — Fun Facts (scattered) ──────────── */
.facts-row {
    position: absolute;
    inset: 0;
}

/* Outer card — positioning and perspective only, no visual styling */
.fact-card {
    position: absolute;
    width: 170px;
    height: 230px;
    border-radius: 1rem;
    cursor: pointer;
    perspective: 900px;
    transform: rotate(var(--angle, 0deg));
    z-index: 1;
}

.fact-card:hover { z-index: 10; }
.fact-card.flipped { z-index: 10; }

/* Inner — the full visual card that flips entirely */
.fact-card__inner {
    position: absolute;
    inset: 0;
    background: var(--paper);
    border-radius: 1rem;
    box-shadow: 2px 4px 18px rgba(0,0,0,0.14);
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
}

.fact-card:hover .fact-card__inner { box-shadow: 4px 8px 28px rgba(0,0,0,0.22); }
.fact-card.flipped .fact-card__inner { transform: rotateY(180deg); }

.fact-card__front,
.fact-card__back {
    position: absolute;
    inset: 10px;
    border-radius: 0.6rem;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 0.75rem;
    border: 1px solid var(--accent);
}

.fact-card__front {
    background: var(--paper);
}

.fact-card__back {
    background: #E0EDCA;
    transform: rotateY(180deg);
    overflow: hidden;
}

.fact-card__label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.fact-card__icon {
    width: 3rem; height: 3rem;
    color: var(--text);
    opacity: 0.25;
}
.fact-card__icon svg { width: 100%; height: 100%; }

.fact-card__hint {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.35;
}

.fact-card__text {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
    text-align: center;
}

.fact-card__number {
    position: absolute;
    bottom: -0.5rem;
    right: 0.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5rem;
    font-style: italic;
    color: var(--text);
    opacity: 0.06;
    line-height: 1;
    user-select: none;
}

/* ── Section 4 — Gallery (locked) ───────────────── */
.gallery-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.gallery-lock__card {
    background: var(--frosted);
    backdrop-filter: blur(14px);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 340px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--accent);
}

.gallery-lock__icon {
    width: 3.5rem; height: 3.5rem;
    color: var(--accent);
}
.gallery-lock__icon svg { width: 100%; height: 100%; }

.gallery-lock__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text);
}

.gallery-lock__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.gallery-lock__input-wrap {
    position: relative;
}

.gallery-lock__input {
    width: 100%;
    border: 1px solid rgba(26,8,0,0.2);
    background: rgba(255,255,255,0.55);
    border-radius: 0.5rem;
    padding: 0.65rem 2.75rem 0.65rem 1rem;
    font-size: 1rem;
    color: var(--text);
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
}
.gallery-lock__input:focus { border-color: var(--accent); }
.gallery-lock__input--error { border-color: #c0392b; }

.gallery-lock__reveal {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(26,8,0,0.38);
    padding: 0.25rem;
    line-height: 0;
    transition: color 0.2s;
}
.gallery-lock__reveal:hover { color: var(--text); }
.gallery-lock__reveal svg { width: 1.1rem; height: 1.1rem; display: block; }

.gallery-lock__error {
    font-size: 0.78rem;
    color: #c0392b;
    text-align: center;
    margin: -0.25rem 0;
}

.gallery-lock__btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: opacity 0.2s;
}
.gallery-lock__btn:hover { opacity: 0.85; }

/* ── Section 4 — Gallery (unlocked / scrapbook) ── */
.gallery-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
    padding: 2rem;
}

.scrapbook {
    position: relative;
    width: min(300px, 78vw);
    flex-shrink: 0;
}

.scrapbook__page {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.scrapbook__page--back3 { transform: rotate(-4deg) translate(-4px, 4px); }
.scrapbook__page--back2 { transform: rotate(3deg)  translate(3px,  3px); }
.scrapbook__page--back1 { transform: rotate(-2deg) translate(-2px, 2px); }

.scrapbook__page--front {
    position: relative;
    padding: 0.75rem 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.4s ease;
}

.scrapbook__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.scrapbook__caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0;
}

.scrapbook__caption-date {
    font-size: 0.65rem;
    color: rgba(26,8,0,0.45);
    letter-spacing: 0.05em;
}

.scrapbook__caption-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--text);
}

.scrapbook__tape {
    position: absolute;
    width: 38px; height: 13px;
    border-radius: 3px;
    opacity: 0.88;
    z-index: 2;
}
.scrapbook__tape::after {
    content: '';
    position: absolute; inset: 0; border-radius: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.0) 0px, rgba(255,255,255,0.0) 2px,
        rgba(255,255,255,0.12) 3px, rgba(255,255,255,0.12) 4px
    );
}

.scrapbook__tape--tl { top: 6px;     left: -7px;  background: var(--amber);   transform: rotate(-18deg); }
.scrapbook__tape--tr { top: 6px;     right: -7px; background: var(--celadon); transform: rotate(14deg);  }
.scrapbook__tape--bl { bottom: -6px; left: -7px;  background: #C8EAB0;        transform: rotate(12deg);  }
.scrapbook__tape--br { bottom: -6px; right: -7px; background: var(--mauve);   transform: rotate(-14deg); }

.scrapbook__photo-wrap { position: relative; }

.gallery-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gallery-nav__arrow {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: var(--frosted);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(26,8,0,0.15);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-nav__arrow:hover { background: rgba(245,216,184,0.95); }
.gallery-nav__arrow:disabled { opacity: 0.3; cursor: default; }

.gallery-nav__counter {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text);
    min-width: 3.5rem;
    text-align: center;
}

.gallery-dots {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    max-width: 300px;
    align-items: center;
}

.gallery-dots__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(26,8,0,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: background 0.2s, transform 0.2s ease;
    flex-shrink: 0;
}
.gallery-dots__dot::before {
    content: '';
    position: absolute;
    inset: -8px;
}
.gallery-dots__dot--active { background: var(--orange); }

/* ── Gallery lightbox ────────────────────────────── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(245,216,184,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem;
}

.gallery-lightbox__card {
    position: relative;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    width: min(90vw, 560px);
    padding: 0.9rem 0.9rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-lightbox__photo {
    width: 100%;
    height: min(62vh, 560px);
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.gallery-lightbox__caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0;
}

.gallery-lightbox__date {
    font-size: 0.65rem;
    color: rgba(26,8,0,0.45);
    letter-spacing: 0.05em;
}

.gallery-lightbox__text {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--text);
}

.gallery-lightbox__close {
    position: absolute;
    top: -0.9rem; right: -0.9rem;
    width: 1.9rem; height: 1.9rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

@media (max-width: 600px) {
    .gallery-lightbox__close { top: 0.5rem; right: 0.5rem; }
}

.gallery-lightbox__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.scrapbook__photo { cursor: zoom-in; }

/* ── Mobile fact card carousel ───────────────────── */
.facts-nav { display: none; }

@media (max-width: 768px) {
    .fact-card {
        left: 50% !important;
        top: 50% !important;
        width: 200px !important;
        height: 270px !important;
        transform: translate(-50%, -50%) !important;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.4s ease;
        z-index: 1 !important;
    }

    .fact-card.carousel-active {
        opacity: 1;
        pointer-events: auto;
        z-index: 5 !important;
        transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) !important;
    }

    .fact-card.carousel-behind-1 {
        opacity: 0.7;
        z-index: 3 !important;
        transform: translate(-45%, -52%) rotate(5deg) !important;
    }

    .fact-card.carousel-behind-2 {
        opacity: 0.45;
        z-index: 2 !important;
        transform: translate(-55%, -54%) rotate(-6deg) !important;
    }

    .fact-card:hover .fact-card__inner { box-shadow: 2px 4px 18px rgba(0,0,0,0.14); }

    .facts-nav {
        display: flex;
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        gap: 1rem;
        z-index: 20;
    }

    .facts-nav__arrow {
        width: 2.5rem; height: 2.5rem;
        border-radius: 50%;
        background: var(--frosted);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(26,8,0,0.15);
        cursor: pointer;
        font-size: 1.1rem;
        color: var(--text);
        display: flex; align-items: center; justify-content: center;
        transition: background 0.2s;
    }
    .facts-nav__arrow:hover { background: rgba(245,216,184,0.95); }
    .facts-nav__arrow:disabled { opacity: 0.3; cursor: default; }

    .facts-nav__dots { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; max-width: 160px; }

    .facts-nav__dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: rgba(26,8,0,0.2);
        border: none; cursor: pointer; padding: 0;
        position: relative;
        transition: background 0.2s;
    }
    .facts-nav__dot::before { content: ''; position: absolute; inset: -8px; }
    .facts-nav__dot--active { background: var(--orange); }
}

/* ── Facts swipe hint ────────────────────────────── */
.facts-swipe-hint { display: none; }

@media (max-width: 768px) {
    .facts-swipe-hint {
        display: block;
        position: absolute;
        bottom: 0.4rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        color: rgba(26,8,0,0.38);
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        animation: fadeHint 4s ease forwards 1s;
    }
}

@keyframes fadeHint {
    0%   { opacity: 0; }
    15%  { opacity: 1; }
    75%  { opacity: 1; }
    100% { opacity: 0; }
}

/* ── Section entrance animation ─────────────────── */
.snap-section { opacity: 0; }
.snap-section.visible { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; opacity: 1; }
#s-announcement { opacity: 1; animation: none; }
