/* ============================================================
   BRYAN & KRISTINE — WEDDING INVITATION
   Color palette: Sage Green · Ivory · Forest · Dusty Rose
   ============================================================ */

/* ── Custom Properties ── */
:root {
    --black: #0b110d;
    --black-soft: #101a12;
    --white: #f5f7f0;
    --gold: #7aaa72;
    --gold-light: #a3c99b;
    --gold-dim: #4a7244;
    --champagne: #c8d9c2;
    --cream: #e8efe5;
    --text-main: #dce8d8;
    --text-muted: #7a9e74;
    --border: rgba(122, 170, 114, .22);

    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-display: 'Cinzel', serif;
    --ff-sans: 'Lato', sans-serif;

    --transition: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

body {
    background: var(--black);
    color: var(--text-main);
    font-family: var(--ff-serif);
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 17, 13, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.navbar__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar__logo {
    font-family: var(--ff-display);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.navbar__logo .ampersand {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.1em;
    color: var(--gold-light);
    margin: 0 0.1em;
}

/* Mobile Toggle Button */
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 102;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
}

/* Desktop Links */
.navbar__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar__links a {
    text-decoration: none;
    font-family: var(--ff-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    transition: color 0.3s;
}

.navbar__links a:hover {
    color: var(--gold-light);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 17, 13, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 0;
        align-items: center;
        gap: 1.2rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    /* Toggle class added via JS to show menu */
    .navbar__links.active {
        max-height: 300px;
        opacity: 1;
    }
}

/* ── FLOATING PETALS ── */
.petals-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.petal {
    position: absolute;
    top: -60px;
    width: 8px;
    height: 8px;
    border-radius: 60% 0 60% 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    animation: petalFall linear infinite;
    transform-origin: center center;
}

@keyframes petalFall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }

    5% {
        opacity: .45;
    }

    90% {
        opacity: .15;
    }

    100% {
        transform: translateY(110vh) rotate(720deg) scale(.6);
        opacity: 0;
    }
}

/* ── SHIMMER OVERLAY ── */
.shimmer-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(122, 170, 114, .05) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 90%, rgba(122, 170, 114, .04) 0%, transparent 70%);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── SHARED SECTION UTILITIES ── */
.section-badge {
    font-family: var(--ff-display);
    font-size: .68rem;
    letter-spacing: .25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    font-weight: 500;
    color: var(--white);
    letter-spacing: .06em;
    margin-bottom: 2rem;
    padding: 0 10px;
}

section {
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(122, 170, 114, .09) 0%, transparent 60%),
        var(--black);
    padding: 90px 16px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(122, 170, 114, .04) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(122, 170, 114, .04) 0 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero__inner {
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Corner ornaments */
.hero__corner {
    position: absolute;
    width: 60px;
    height: 60px;
    color: var(--gold);
}

.hero__corner--tl {
    top: 6px;
    left: 6px;
}

.hero__corner--tr {
    top: 6px;
    right: 6px;
}

.hero__corner--bl {
    bottom: 6px;
    left: 6px;
}

.hero__corner--br {
    bottom: 6px;
    right: 6px;
}

.corner-svg {
    width: 100%;
    height: 100%;
}

.hero__ornament {
    color: var(--gold);
    margin: 0.8rem auto;
    width: 100%;
    max-width: 260px;
}

.divider-top,
.floral-divider {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.hero__prelude {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: clamp(.85rem, 3.5vw, 1.1rem);
    color: var(--champagne);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero__names {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 10vw, 5.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25em;
    flex-wrap: wrap;
    word-break: break-word;
}

.hero__names .name {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__names .ampersand {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: .6em;
    color: var(--gold);
    opacity: .8;
}

.hero__invite {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: .08em;
    margin-bottom: .5rem;
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(.8rem, 3vw, 1.2rem);
    font-weight: 400;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--champagne);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-family: var(--ff-sans);
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ═══════════════════════════════════════
   DETAILS
═══════════════════════════════════════ */
.details {
    padding: 60px 16px;
    background: var(--black-soft);
    text-align: center;
}

.details__inner {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.details__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
    .details__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1.8rem 1.2rem;
    background: rgba(122, 170, 114, .03);
}

.detail-card__icon {
    color: var(--gold);
    width: 32px;
    height: 32px;
    margin: 0 auto 0.8rem;
}

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

.detail-card__label {
    font-family: var(--ff-display);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}

.detail-card__value {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: .3rem;
}

.detail-card__sub {
    font-size: .8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.3;
}

.map-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-family: var(--ff-sans);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

/* Map Embed */
.map-wrapper {
    margin-bottom: 2.5rem;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--black-soft);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 280px;
}

/* Countdown */
.countdown-wrapper {
    text-align: center;
    width: 100%;
}

.countdown-label {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--text-muted);
    font-size: .9rem;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    flex-wrap: wrap;
}

.countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: 0 .15rem;
}

.countdown__num {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 7vw, 3rem);
    font-weight: 500;
    line-height: 1;
    color: var(--gold);
}

.countdown__word {
    font-family: var(--ff-sans);
    font-size: .55rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: .3rem;
}

.countdown__sep {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--gold-dim);
    line-height: 1;
    padding-top: .05em;
}

/* ═══════════════════════════════════════
   PROGRAMME / TIMELINE
═══════════════════════════════════════ */
.programme {
    padding: 60px 16px;
    background: var(--black);
    text-align: center;
}

.programme__inner {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

.timeline {
    position: relative;
    padding: 0.5rem 0;
    width: 100%;
}

@media (min-width: 640px) {
    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: var(--gold-dim);
        transform: translateX(-50%);
        opacity: .7;
    }

    .timeline__item {
        display: grid;
        grid-template-columns: 1fr 32px 1fr;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .timeline__item:nth-child(odd) .timeline__time {
        text-align: right;
    }

    .timeline__item:nth-child(odd) .timeline__content {
        text-align: left;
    }

    .timeline__item:nth-child(even) .timeline__time {
        text-align: left;
        order: 2;
    }

    .timeline__item:nth-child(even) .timeline__dot {
        order: 1;
    }

    .timeline__item:nth-child(even) .timeline__content {
        text-align: right;
        order: 0;
    }
}

@media (max-width: 639px) {
    .timeline::before {
        left: 14px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: var(--gold-dim);
        position: absolute;
    }

    .timeline__item {
        display: grid;
        grid-template-columns: 28px 1fr;
        gap: 0.8rem;
        margin-bottom: 1.8rem;
        text-align: left;
    }

    .timeline__dot {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        margin-top: 4px;
    }

    .timeline__time {
        grid-column: 2;
        grid-row: 1;
        text-align: left !important;
        font-size: .75rem;
    }

    .timeline__content {
        grid-column: 2;
        grid-row: 2;
        text-align: left !important;
    }
}

.timeline__time {
    font-family: var(--ff-display);
    font-size: .75rem;
    letter-spacing: .12em;
    color: var(--gold);
}

.timeline__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid var(--gold);
    justify-self: center;
    position: relative;
    z-index: 1;
}

.timeline__content h3 {
    font-family: var(--ff-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .1rem;
}

.timeline__content p {
    font-size: .82rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ═══════════════════════════════════════
   QUOTE
═══════════════════════════════════════ */
.quote-section {
    padding: 80px 16px;
    background: linear-gradient(135deg, #090f0a 0%, #0f1a10 50%, #090f0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section__inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.quote-mark {
    font-family: var(--ff-serif);
    font-size: 5rem;
    line-height: .4;
    color: var(--gold);
    opacity: .15;
    margin-bottom: 0.8rem;
    font-style: italic;
}

blockquote {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: clamp(1.1rem, 4vw, 1.8rem);
    color: var(--champagne);
    line-height: 1.5;
    font-weight: 300;
    padding: 0 10px;
}

.quote-attribution {
    margin-top: 1.2rem;
    font-family: var(--ff-display);
    font-size: .7rem;
    letter-spacing: .2em;
    color: var(--gold);
}

/* ═══════════════════════════════════════
   GALLERY / SLIDESHOW
═══════════════════════════════════════ */
.gallery {
    padding: 60px 16px;
    background: var(--black);
    text-align: center;
}

.gallery__inner {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.slideshow {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto 1.2rem;
    border-radius: 3px;
    overflow: hidden;
    background: var(--black-soft);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
}

.slideshow__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slideshow__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(122, 170, 114, .35);
    background: rgba(11, 17, 13, .6);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.slideshow__btn svg {
    width: 16px;
    height: 16px;
}

.slideshow__btn--prev {
    left: 8px;
}

.slideshow__btn--next {
    right: 8px;
}

.slideshow__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 5px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(200, 217, 194, .3);
    border: 1px solid rgba(122, 170, 114, .4);
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
    width: 14px;
    border-radius: 3px;
}

.gallery__caption {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: .85rem;
    color: var(--text-muted);
    min-height: 1.4em;
    padding: 0 10px;
}

/* ═══════════════════════════════════════
   DRESS CODE
═══════════════════════════════════════ */
.dresscode {
    padding: 60px 16px;
    background: var(--black-soft);
    text-align: center;
}

.dresscode__inner {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
}

.dresscode__desc {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: .95rem;
    padding: 0 10px;
}

.dresscode__palette {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.palette-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.dresscode__theme {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: .1em;
    margin-bottom: .6rem;
}

.dresscode__note {
    font-size: .8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
    padding: 0 10px;
}

/* ═══════════════════════════════════════
   RSVP
═══════════════════════════════════════ */
.rsvp {
    padding: 60px 16px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(122, 170, 114, .06) 0%, transparent 60%),
        var(--black);
    text-align: center;
}

.rsvp__inner {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.rsvp__sub {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: .9rem;
    padding: 0 10px;
}

.rsvp__sub strong {
    color: var(--gold);
    font-style: normal;
    font-weight: 400;
}

.rsvp__form {
    text-align: left;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 540px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    width: 100%;
}

.form-group--full {
    margin-bottom: 1rem;
    width: 100%;
}

.form-group label {
    font-family: var(--ff-display);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text-main);
    font-family: var(--ff-serif);
    font-size: 16px;
    /* Critical rule to stop iOS zoom on focus */
    padding: .75rem;
    outline: none;
    width: 100%;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--text-main);
}

/* Radio */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: .7rem;
    cursor: pointer;
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--text-muted);
}

.radio-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 4px var(--gold);
    background: rgba(122, 170, 114, .1);
}

/* Submit button */
.form-submit {
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--ff-display);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 540px) {
    .btn-submit {
        width: auto;
        min-width: 260px;
    }
}

/* Success state */
.rsvp__success {
    display: none;
    text-align: center;
    padding: 2.5rem 1rem;
}

.rsvp__success.visible {
    display: block;
}

.success-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.rsvp__success h3 {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: .4rem;
}

.rsvp__success p {
    color: var(--text-muted);
    font-style: italic;
    font-size: .9rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    padding: 40px 16px;
    background: var(--black);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer__inner {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.footer__monogram {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--champagne));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .3rem;
}

.footer__names {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--champagne);
    margin-bottom: .2rem;
}

.footer__date {
    font-family: var(--ff-display);
    font-size: .65rem;
    letter-spacing: .2em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer__divider {
    color: var(--gold-dim);
    width: 80px;
    margin: 0.8rem auto;
}

.footer__divider svg {
    width: 100%;
    height: auto;
}

.footer__closing {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 10px;
}

/* ═══════════════════════════════════════
   WATERMARK
═══════════════════════════════════════ */
.watermark {
    position: relative;
    z-index: 2;
    background: #070d08;
    border-top: 1px solid rgba(122, 170, 114, .08);
    padding: 10px 16px;
    text-align: center;
}

.watermark__text {
    font-family: var(--ff-display);
    font-size: .55rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(122, 170, 114, .28);
}

/* ── MUSIC BUTTON ── */
.music-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 17, 13, 0.85);
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.music-btn svg {
    width: 18px;
    height: 18px;
}