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

        :root {
            --cream: #f9f5ef;
            --warm-white: #fefcf8;
            --blush: #e8c9bb;
            --dusty-rose: #c9897a;
            --deep-rose: #8b4a42;
            --gold: #b8965a;
            --charcoal: #2c2420;
            --light-charcoal: #333;
        }

        html, body {
            height: 100%;
        }

        body {
            font-family: 'Jost', sans-serif;
            background-color: var(--cream);
            color: var(--charcoal);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        /* Decorative background */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 20% 10%, rgba(232,201,187,0.4) 0%, transparent 60%),
                radial-gradient(ellipse 60% 80% at 80% 90%, rgba(201,137,122,0.2) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 50% 50%, rgba(249,245,239,0.8) 0%, transparent 80%);
            pointer-events: none;
            z-index: 0;
        }

        /* Botanical SVG corners */
        .botanical {
            position: fixed;
            opacity: 0.12;
            pointer-events: none;
        }
        .botanical-tl { top: -20px; left: -20px; transform: rotate(0deg); }
        .botanical-br { bottom: -20px; right: -20px; transform: rotate(180deg); }
        .botanical-tr { top: -20px; right: -20px; transform: rotate(90deg); }
        .botanical-bl { bottom: -20px; left: -20px; transform: rotate(270deg); }

        .page-wrapper {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 520px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            animation: fadeUp 1.2s ease forwards;
            opacity: 0;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* Thin rule lines */
        .rule-line {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
            margin: 1.5rem 0;
        }

        .rule-line-short {
            width: 60px;
            height: 1px;
            background: var(--dusty-rose);
            margin: 0.75rem auto;
        }

        /* Names */
        .names-block {
            text-align: center;
            padding: 1.5rem 0 1rem;
        }

        .names-eyebrow {
            font-family: 'Jost', sans-serif;
            font-weight: 400;
            font-size: 0.65rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: #333;
            margin-bottom: 1.25rem;
        }

        .names-primary {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-style: italic;
            font-size: clamp(3rem, 10vw, 4.5rem);
            line-height: 1;
            color: var(--charcoal);
            letter-spacing: -0.01em;
        }

        .names-ampersand {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 1.8rem;
            color: var(--dusty-rose);
            display: block;
            margin: 0.5rem 0;
        }

        .names-secondary {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-style: italic;
            font-size: clamp(3rem, 10vw, 4.5rem);
            line-height: 1;
            color: var(--charcoal);
        }

        .tagline {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--light-charcoal);
    margin-top: 1.5rem;
}

        /* Access form card */
        .access-card {
            width: 100%;
            background: rgba(254, 252, 248, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(184, 150, 90, 0.2);
            border-radius: 4px;
            padding: 2rem 2.5rem 2.5rem;
            text-align: center;
            box-shadow:
                0 2px 4px rgba(44,36,32,0.04),
                0 8px 32px rgba(44,36,32,0.06),
                inset 0 1px 0 rgba(255,255,255,0.8);
        }

        .card-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 1.25rem;
            color: var(--charcoal);
            margin-bottom: 0.4rem;
        }

        .card-subtitle {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.78rem;
            color: var(--light-charcoal);
            letter-spacing: 0.05em;
            margin-bottom: 1.75rem;
        }

        .input-group {
            position: relative;
            margin-bottom: 1.25rem;
        }

        .input-group label {
            display: block;
            font-family: 'Jost', sans-serif;
            font-weight: 600;
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #c18211;
            margin-bottom: 0.5rem;
            text-align: left;
        }

        .input-group input {
            width: 100%;
            padding: 0.85rem 1.1rem;
            background: var(--cream);
            border: 1px solid rgba(184, 150, 90, 0.25);
            border-radius: 3px;
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 1rem;
            letter-spacing: 0.15em;
            color: var(--charcoal);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            text-align: center;
        }

        .input-group input:focus {
            border-color: var(--dusty-rose);
            box-shadow: 0 0 0 3px rgba(201,137,122,0.1);
        }

        .input-group input::placeholder {
            color: rgba(90,74,68,0.35);
            letter-spacing: 0.1em;
        }

        .error-msg {
            background: rgba(139,74,66,0.08);
            border: 1px solid rgba(139,74,66,0.2);
            border-radius: 3px;
            color: var(--deep-rose);
            font-size: 0.78rem;
            font-weight: 300;
            letter-spacing: 0.04em;
            padding: 0.65rem 1rem;
            margin-bottom: 1.25rem;
            text-align: center;
        }

        .btn-enter {
            width: 100%;
            padding: 0.9rem 2rem;
            background: var(--charcoal);
            color: var(--cream);
            border: none;
            border-radius: 3px;
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.72rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            position: relative;
            overflow: hidden;
        }

        .btn-enter::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(184,150,90,0.15) 100%);
            pointer-events: none;
        }

        .btn-enter:hover {
            background: var(--deep-rose);
            transform: translateY(-1px);
        }

        .btn-enter:active {
            transform: translateY(0);
        }

        .privacy-note {
            font-family: 'Jost', sans-serif;
            font-weight: 200;
            font-size: 0.65rem;
            letter-spacing: 0.08em;
            color: rgba(90,74,68,0.5);
            margin-top: 1.25rem;
            line-height: 1.7;
        }

        /* Botanical SVG inline */
        svg.leaf {
            width: 200px;
            height: 200px;
        }
