﻿:root {
    --black: #0b0906;
    --panel: #15110c;
    --panel2: #1c160f;
    --gold-hi: #f6dd8c;
    --gold: #cc9a3f;
    --gold-deep: #7a5a1e;
    --red-hi: #ff5a45;
    --red: #c31f2e;
    --red-deep: #6e0b16;
    --cream: #f3ead9;
    --muted: #b6a98c;
    --hair: rgba(204,154,63,0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--cream);
    font-family: 'Jost',sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

    /* film grain / vignette atmosphere */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        background: radial-gradient(ellipse at 50% 0%, rgba(204,154,63,0.10), transparent 55%), radial-gradient(ellipse at 50% 100%, rgba(195,31,46,0.08), transparent 55%);
    }

.grain {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .eyebrow, .scene-label {
    font-family: 'Cinzel',serif;
    letter-spacing: 0.06em;
}

.script {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--red-hi);
    line-height: 1;
}

a {
    color: inherit;
}

/* ============ CARPET SPINE ============ */
.carpet-spine {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 64px;
    transform: translateX(-50%);
    z-index: 0;
    background: repeating-linear-gradient(180deg, rgba(0,0,0,0.18) 0 3px, transparent 3px 26px), linear-gradient(90deg, var(--red-deep), var(--red) 20%, var(--red-hi) 50%, var(--red) 80%, var(--red-deep));
    box-shadow: 0 0 40px 6px rgba(195,31,46,0.25);
    opacity: 0.9;
}

    .carpet-spine::before, .carpet-spine::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 6px;
        background: linear-gradient(180deg, var(--gold-hi), var(--gold) 40%, var(--gold-deep));
    }

    .carpet-spine::before {
        left: -3px;
    }

    .carpet-spine::after {
        right: -3px;
    }

@media (max-width: 900px) {
    .carpet-spine {
        display: none;
    }
}

/* ============ LAYOUT SHELL ============ */
.wrap {
    position: relative;
    z-index: 3;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    background: radial-gradient(ellipse 90% 60% at 50% 8%, rgba(204,154,63,0.14), transparent 60%), var(--black);
    border-bottom: 1px solid var(--hair);
}

.hero-logo {
    max-width: min(680px, 88vw);
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(195,31,46,0.35)) drop-shadow(0 0 60px rgba(204,154,63,0.15));
    margin-bottom: 18px;
}

.venue-tag {
    font-family: 'Cinzel',serif;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    color: var(--gold-hi);
    text-shadow: 0 2px 18px rgba(204,154,63,0.35);
    margin: 8px 0 4px;
    font-weight: 700;
    line-height: 1.25;
}

.hero .sub {
    max-width: 640px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

    .hero .sub strong {
        color: var(--cream);
        font-weight: 500;
    }

.hero-line {
    margin-top: 34px;
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 2.2rem;
    color: var(--red-hi);
}

.scroll-hint {
    margin-top: 46px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold-deep);
    text-transform: uppercase;
    opacity: 0.8;
}

/* ============ ROPE DIVIDER (stanchion) ============ */
.rope-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 34px 0;
    position: relative;
}

    .rope-divider .post {
        width: 3px;
        height: 34px;
        background: linear-gradient(180deg,var(--gold-hi),var(--gold-deep));
        border-radius: 2px;
        flex-shrink: 0;
    }

    .rope-divider svg {
        width: min(420px,70%);
        height: 26px;
        flex-shrink: 1;
    }

/* ============ SCENES ============ */
.scene {
    position: relative;
    padding: 70px 0;
}

.scene-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    max-width: 760px;
}

.scene.align-right .scene-inner {
    margin-left: auto;
    text-align: left;
}

.scene.align-left .scene-inner {
    margin-right: auto;
    text-align: left;
}

.scene-label {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red-hi);
    display: flex;
    align-items: center;
    gap: 12px;
}

.scene.align-right .scene-label {
    justify-content: flex-start;
}

.scene-label .num {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold-hi);
    font-size: 1rem;
}

.scene h2 {
    font-size: clamp(1.5rem, 3.4vw, 2.3rem);
    color: var(--gold-hi);
    margin: 10px 0 6px;
    font-weight: 700;
}

.scene .lede {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--red-hi);
    font-size: 1.5rem;
    margin: 0 0 6px;
}

.scene p {
    color: var(--cream);
    font-size: 1.02rem;
    line-height: 1.9;
    margin: 0 0 0px;
    font-weight: 300;
}

    .scene p.tight {
        margin-bottom: 2px;
    }

.scene .muted-line {
    color: var(--muted);
}

.scene-card {
    background: linear-gradient(180deg, var(--panel), var(--panel2));
    border: 1px solid var(--hair);
    border-radius: 2px;
    padding: 34px clamp(20px,4vw,46px);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
    position: relative;
}

    .scene-card::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border: 1px solid rgba(204,154,63,0.18);
        pointer-events: none;
    }

/* ============ FINALE ============ */
.finale {
    padding: 100px 0 60px;
    text-align: center;
}

    .finale .marquee {
        font-family: 'Cinzel Decorative', serif;
        font-size: clamp(1.6rem,4.4vw,2.8rem);
        color: var(--gold-hi);
        line-height: 1.5;
        text-shadow: 0 2px 18px rgba(204,154,63,0.3);
    }

        .finale .marquee span {
            display: block;
        }

    .finale .tagline {
        margin-top: 30px;
        font-family: 'Mrs Saint Delafield', cursive;
        color: var(--red-hi);
        font-size: 2.4rem;
    }

    .finale .closing {
        margin-top: 36px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        color: var(--muted);
        line-height: 1.9;
    }

        .finale .closing strong {
            color: var(--cream);
        }

footer {
    text-align: center;
    padding: 36px 20px 60px;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border-top: 1px solid var(--hair);
}

@media (max-width: 900px) {
    .scene .scene-inner {
        max-width: 100%;
    }

    .scene.align-right .scene-inner, .scene.align-left .scene-inner {
        text-align: left;
        margin: 0;
    }

    .scene.align-right .scene-label {
        justify-content: flex-start;
    }

    .scene {
        padding: 50px 0;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.9s ease, transform 0.9s ease;
    }

        .reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }
}

::selection {
    background: var(--red);
    color: var(--cream);
}
