        :root {
            --bg: #fdfbf7;        /* Rich Cream Background */
            --accent: #7d634a;    /* Deeper Antique Bronze for visibility */
            --gold: #b38728;      /* Deep Metallic Gold */
            --text: #1a1a1a;      /* Sharp Charcoal */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Lato', sans-serif;
            overflow: hidden; 
            height: 100svh;
            width: 100vw;
            touch-action: none;
        }

        #canvas-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100svh;
            z-index: -1;
            /* Added a subtle multiply filter to help the waves pop against white text */
            filter: contrast(1.1);
        }

        .scroll-wrapper {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            will-change: transform;
        }

        section {
            height: 100svh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            opacity: 0;
            /* Celestial Eternal Focus Effect */
            transform: scale(0.8) translateY(40px);
            filter: blur(12px);
            transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
        }

        section.active {
            opacity: 1;
            transform: scale(1) translateY(0px);
            filter: blur(0px);
        }

        /* --- TYPOGRAPHY --- */
        .eyebrow {
            font-family: 'Lato', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5em;
            font-size: 0.8rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        h1 {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(2.5rem, 8vw, 4.5rem); 
            font-weight: 900;
            line-height: 1.1;
            color: var(--text);
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .names {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(3rem, 10vw, 6.5rem);
            font-weight: 900;
            line-height: 0.9;
            color: var(--text);
        }

        .ampersand {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            display: block;
            margin: 0.8rem 0;
            color: var(--gold);
        }

        .date-hero {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(4rem, 12vw, 8.5rem);
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }

        .venue-name {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(2rem, 6vw, 3.8rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .venue-loc {
            font-family: 'Lato', sans-serif;
            font-weight: 900;
            font-size: 1.1rem;
            color: var(--accent);
            letter-spacing: 0.25em;
        }

        .hint {
            position: fixed;
            bottom: 30px; left: 50%;
            transform: translateX(-50%);
            letter-spacing: 0.4em;
            font-size: 0.6rem;
            font-weight: 900;
            opacity: 0.6;
            color: var(--accent);
        }