:root {
    --primary-color: #8b023c;
    --primary-hover: #6a012d;
    --text-dark: #1f345c;
    --text-light: #5a6b8c;
    --bg-light: #fffaf5;
    --bg-dark: #1f345c;
    --white: #ffffff;
    --cream: #fffaf5;
    --border: #e2e8f0;
    --success: #10B981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h1,
h2,
h3 {
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

section {
    padding: 40px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.narrow-container {
    max-width: 820px;
    margin: 0 auto;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: -20px auto 40px auto;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--cream);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--cream);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(31, 52, 92, 0.08);
}

.logo img {
    height: 50px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.landing-nav {
    gap: 16px;
}

.header-cta {
    padding: 10px 20px;
    color: var(--cream);
}

.header-cta-icon,
.availability-number {
    display: none;
}

.availability-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(139, 2, 60, 0.22);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.availability-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background-color: var(--primary-color);
}

@keyframes availability-live-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.55);
        opacity: 0.45;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .availability-pill::before {
        animation: availability-live-pulse 1.4s ease-in-out infinite;
    }
}

.hero {
    text-align: center;
    padding: 50px 20px 35px 20px;
    background-color: var(--bg-light);
}

.hero h1 {
    max-width: 840px;
    margin: 0 auto 20px auto;
}

.hero-event-facts {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 18px 36px;
    margin: 0 auto 34px;
    text-align: left;
}

.hero-event-fact dd {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: var(--text-dark);
    font-size: 1.08rem;
    font-weight: 600;
}

.hero-event-fact svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--primary-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.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;
}

.hero p {
    font-size: 1.2rem;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.event-details {
    padding-top: 0;
}

.table-container {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(31, 52, 92, 0.05);
}

.table-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 30px;
    border-bottom: 1px solid var(--border);
}

.table-row:last-child {
    border-bottom: 0;
}

.table-label {
    color: var(--text-light);
    font-weight: 600;
}

.table-value {
    color: var(--text-dark);
    font-weight: 700;
}

.table-note {
    color: var(--text-light);
}

.table-extra {
    display: grid;
    gap: 22px;
    padding: 28px 30px 30px 30px;
    background: #f7f4f6;
}

.table-description p {
    max-width: 760px;
    margin: 8px 0 0 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.table-interests {
    display: grid;
    gap: 10px;
}

.interest-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.interest-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(139, 2, 60, 0.16);
    border-radius: 999px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(31, 52, 92, 0.04);
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(31, 52, 92, 0.05);
}

.card h3 {
    margin-bottom: 10px;
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(139, 2, 60, 0.08);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 18px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.focus-box {
    background-color: #f0f4f8;
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin-top: 30px;
}

.focus-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-strip {
    background-color: var(--bg-dark);
    color: var(--cream);
    padding: 28px 20px;
    text-align: center;
}

.cta-strip h2,
.cta-strip p {
    color: var(--cream);
}

.cta-strip p {
    max-width: 700px;
    margin: -20px auto 30px auto;
}

.lead-form-section {
    background-color: var(--primary-color);
    color: var(--cream);
    padding: 30px 20px;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1100px;
}

#reserve {
    scroll-margin-top: 100px;
}

.lead-form-section h2,
.lead-form-section p,
.lead-form-section .subtitle {
    color: var(--cream);
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-dark);
}

.form-container p {
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d8e0;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
}

.lead-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 2, 60, 0.1);
}

.micro-copy {
    font-size: 0.8rem;
    color: rgba(255, 250, 245, 0.8);
    text-align: center;
    margin-top: 15px;
    display: block;
}

.form-container .micro-copy {
    color: var(--text-light);
}

.success-message {
    text-align: center;
    padding: 24px 10px;
}

.success-message:focus {
    outline: none;
}

.success-mark {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px auto;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 2rem;
    font-weight: 700;
}

[hidden] {
    display: none !important;
}

footer {
    background-color: var(--bg-dark);
    color: var(--cream);
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream);
    font-weight: 600;
}

.footer-links a:hover {
    color: rgba(255, 250, 245, 0.78);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    header {
        display: flex;
        position: sticky;
        padding: 12px 16px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 38px;
    }

    .landing-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .availability-pill {
        min-width: 34px;
        min-height: 34px;
        justify-content: center;
        padding: 7px 10px;
    }

    .availability-full,
    .header-cta-label {
        display: none;
    }

    .availability-pill::before {
        display: block;
        width: 6px;
        height: 6px;
        margin-right: 2px;
    }

    .availability-number {
        display: block;
    }

    .header-cta {
        display: grid;
        width: 42px;
        height: 42px;
        padding: 0;
        place-items: center;
        border-radius: 50%;
    }

    .header-cta-icon {
        display: block;
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2;
    }

    .hero {
        padding: 32px 20px 25px 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-event-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        max-width: 520px;
        gap: 14px;
    }

    .table-row {
        flex-direction: column;
        gap: 6px;
        padding: 22px;
    }

    .table-extra {
        padding: 24px 22px;
    }

    .lead-form-section {
        border-radius: 0;
        margin: 20px 0 0 0;
    }

    #reserve {
        scroll-margin-top: 170px;
    }
}
