/* CSS Reset & Variables */
:root {
    --bg-color: #040404;
    --bg-elevated: #0b0b0b;
    --text-color: #f2efe6;
    --text-muted: rgba(242, 239, 230, 0.7);
    --accent-gold: #c9ad63;
    --accent-gold-hover: #b89c53;
    --accent-wine: #2b0f1f;
    --overlay-color: rgba(8, 4, 10, 0.7);
    --section-pad: 8rem;
    --section-pad-sm: 5rem;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.7;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(64, 24, 44, 0.18), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(201, 173, 99, 0.08), transparent 45%),
        linear-gradient(180deg, rgba(5, 5, 7, 0.9), rgba(4, 4, 4, 1));
    z-index: -2;
    pointer-events: none;
}

/* Typography Utility */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.01em;
}

em {
    font-style: italic;
    opacity: 0.9;
}

strong {
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center by default */
    text-align: center;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(32, 10, 40, 0.35), rgba(0, 0, 0, 0.88));
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* Brand & Event Titles */
.brand-name {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    font-family: var(--font-heading);
    /* Serif to match luxury heading style */
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.event-name {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(to right, #f7f2e8, #c9ad63);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description & Details */
.event-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.event-details {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.date {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.location-secondary {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Exclusivity */
.exclusivity-rules {
    margin-bottom: 3rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-top: 1px solid rgba(201, 173, 99, 0.3);
    border-bottom: 1px solid rgba(201, 173, 99, 0.3);
    padding: 1.5rem 0;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.exclusivity-rules p {
    margin: 0.5rem 0;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-link {
    display: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.7;
    text-decoration: none;
    cursor: pointer;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(201, 173, 99, 0.15);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: rgba(245, 245, 220, 0.25);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn:focus-visible,
.btn-submit:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
    outline: 2px solid rgba(201, 173, 99, 0.6);
    outline-offset: 2px;
}

/* Microcopy */
.microcopy {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.admin-entry {
    text-decoration: none;
    color: inherit;
    opacity: 0.85;
    cursor: pointer;
}

.admin-entry:hover {
    opacity: 1;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .event-name {
        font-size: 2.5rem;
    }

    .event-description {
        font-size: 1.2rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }

    .btn {
        width: 100%;
    }

    .hero-overlay {
        background: radial-gradient(circle at center, rgba(12, 6, 16, 0.5), rgba(0, 0, 0, 0.92));
    }

    .cta-group .btn-secondary {
        display: none;
    }

    .cta-link {
        display: inline-block;
        margin-top: 0.75rem;
    }
}

/* --- Exclusivity Section --- */
.exclusivity {
    background: radial-gradient(circle at top, #0f0a14, #050505);
    padding: var(--section-pad) 2rem calc(var(--section-pad) - 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

.exclusivity::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url('assets/experience-bg.jpg') center / cover no-repeat,
        radial-gradient(circle at 20% 15%, rgba(45, 18, 36, 0.25), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(15, 10, 18, 0.45), transparent 55%),
        linear-gradient(160deg, rgba(6, 6, 8, 0.65), rgba(20, 10, 20, 0.6));
    opacity: 0.55;
    z-index: 0;
}

.exclusivity::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(5, 5, 6, 0), rgba(5, 5, 6, 0.9));
    z-index: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Typography */
.section-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #F5F5DC;
    letter-spacing: 0.01em;
}

.section-subheadline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 4rem;
    opacity: 0.9;
}

.exclusivity-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 6rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(245, 245, 220, 0.85);
}

.exclusivity-intro p {
    margin-bottom: 0.5rem;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
    text-align: left;
    /* Editorial alignment */
}

.pillar {
    position: relative;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 173, 99, 0.2);
    /* Very subtle divider */
}

.pillar-marker {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.pillar p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

/* Divider / Transition */
.section-divider {
    height: 1px;
    width: 60px;
    background-color: var(--accent-gold);
    margin: 0 auto;
    opacity: 0.4;
}

/* Responsive Exclusivity */
@media (max-width: 768px) {
    .exclusivity {
        padding: var(--section-pad-sm) 1.5rem;
    }

    .section-headline {
        font-size: 2.5rem;
    }

    .section-subheadline {
        font-size: 1.1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .pillar {
        border-top: none;
        /* Remove border on mobile for cleaner stack */
        padding-top: 0;
    }

    .pillar-marker {
        display: none;
        /* Hide markers on mobile to save space or center them */
    }

    .pillar-title {
        margin-bottom: 1rem;
        color: var(--accent-gold);
        /* Accent title on mobile */
    }
}

/* --- Table Experiences Section --- */
.tables {
    background-color: #080808;
    padding: var(--section-pad) 2rem;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.tables::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(18, 18, 20, 0.9), rgba(6, 6, 8, 0.9)),
        radial-gradient(circle at 15% 80%, rgba(201, 173, 99, 0.08), transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(40, 20, 35, 0.25), transparent 50%);
    opacity: 0.9;
    z-index: 0;
}

.tables::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(6, 6, 6, 0.9));
    z-index: 0;
}

.inventory-notice {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 0.95rem;
    color: rgba(245, 245, 220, 0.7);
    border: 1px solid rgba(201, 173, 99, 0.3);
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.inventory-notice p {
    margin: 0.2rem 0;
}

.tables-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.table-card {
    background: #0f0f10;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 350px;
    text-align: left;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.table-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 173, 99, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.table-toggle {
    background: transparent;
    border: 1px solid rgba(201, 173, 99, 0.3);
    color: var(--text-color);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    display: none;
}

.table-card-body {
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.tier-icon {
    font-size: 1.5rem;
    opacity: 0.8;
    color: var(--accent-gold);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.tier-note {
    font-size: 0.8rem;
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.availability {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.features li {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.8);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.features li::before {
    content: "-";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.card-btn {
    width: 100%;
    margin-top: auto;
    font-size: 0.8rem;
    padding: 1rem 1.5rem;
}

/* Highlighted Cards (VIP/VVIP) */
.card-highlight {
    border-color: rgba(201, 173, 99, 0.4);
    background: linear-gradient(to bottom, #141414, #0a0a0a);
}

/* --- Details & Rules Section --- */
.details-rules {
    background-color: #050505;
    padding: var(--section-pad) 2rem;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.details-rules::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(30, 18, 26, 0.45), transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(12, 12, 16, 0.7), transparent 55%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.95), rgba(12, 8, 12, 0.9));
    opacity: 0.9;
    z-index: 0;
}

.details-rules::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(4, 4, 4, 0.9));
    z-index: 0;
}

.rules-headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.center-text {
    text-align: center;
    margin-bottom: 3rem;
}

/* Dress Code */
.dress-code-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.dress-code-section::before {
    content: "";
    position: absolute;
    inset: -10% 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(18, 18, 22, 0.8), transparent 45%),
        radial-gradient(circle at 80% 40%, rgba(35, 18, 30, 0.4), transparent 50%),
        linear-gradient(160deg, rgba(6, 6, 8, 0.9), rgba(16, 10, 14, 0.85));
    opacity: 0.75;
    filter: blur(6px);
    z-index: 0;
}

.dress-code-section>* {
    position: relative;
    z-index: 1;
}

.dress-col-left {
    flex: 1;
    min-width: 300px;
}

.dress-col-right {
    flex: 1;
    min-width: 300px;
}

.primary-rule {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 1rem;
    text-transform: uppercase;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.guidelines-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 245, 220, 0.9);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.guidelines-list li::before {
    content: "-";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    opacity: 0.6;
}

.compliance-note {
    font-size: 0.9rem;
    opacity: 0.6;
    color: #fff;
}

/* Details Strip */
.details-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(201, 173, 99, 0.1);
}

.detail-item {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.detail-label {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.detail-value {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.detail-sub {
    font-size: 0.8em;
    opacity: 0.6;
    font-weight: 400;
    font-style: italic;
    display: block;
}

/* House Rules */
.house-rules-section {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.rules-list li:last-child {
    border-bottom: none;
}

/* Responsive Details */
@media (max-width: 768px) {
    .dress-code-section {
        flex-direction: column;
        gap: 2rem;
    }

    .rules-headline {
        font-size: 2rem;
    }

    .details-strip {
        gap: 2rem;
        flex-direction: column;
        /* Stack details on mobile */
        align-items: flex-start;
        padding: 2rem;
    }

    .detail-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1rem;
    }

    .detail-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* --- Reservation Form Section --- */
.reservation-section {
    background-color: #0c0c0c;
    padding: var(--section-pad) 2rem;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 2rem;
}

.reservation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 12, 0.98), rgba(6, 6, 8, 0.95)),
        radial-gradient(circle at 30% 20%, rgba(201, 173, 99, 0.06), transparent 50%);
    opacity: 0.95;
    z-index: 0;
}

.reservation-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0), rgba(6, 6, 8, 0.9));
    z-index: 0;
}

.reservation-form-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.8);
    letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-banner {
    display: none;
    margin-bottom: 1.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(201, 173, 99, 0.35);
    background: rgba(201, 173, 99, 0.08);
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.form-banner.is-visible {
    display: block;
}

.field-error {
    display: none;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: rgba(242, 239, 230, 0.75);
}

.field-error.is-visible {
    display: block;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
}

.form-select option {
    background: #141414;
    color: #fff;
    padding: 1rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Payment Info Box */
.payment-info-box {
    background: rgba(201, 173, 99, 0.05);
    border: 1px solid rgba(201, 173, 99, 0.3);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.payment-method-title {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bank-details {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #fff;
}

.bank-details strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.copy-btn {
    display: none;
    margin-left: 0.6rem;
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid rgba(201, 173, 99, 0.35);
    cursor: pointer;
}

.payment-instruction {
    font-size: 0.95rem;
    color: rgba(245, 245, 220, 0.8);
    font-style: italic;
    line-height: 1.6;
}

/* Agreement Checkbox */
.agreement-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    cursor: pointer;
}

.agreement-input {
    appearance: none;
    min-width: 20px;
    height: 20px;
    border: 1px solid var(--accent-gold);
    background: transparent;
    display: grid;
    place-content: center;
    margin-top: 0.2rem;
    cursor: pointer;
}

.agreement-input::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--accent-gold);
}

.agreement-input:checked::before {
    transform: scale(1);
}

.agreement-text {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.6;
}

/* Submit Button Container */
.submit-container {
    text-align: center;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-gold);
    color: #000;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 173, 99, 0.2);
}

.btn-submit:hover {
    background: #bfa13a;
    box-shadow: 0 6px 20px rgba(201, 173, 99, 0.3);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;

}

/* --- Confirmation Section --- */
.confirmation-section {
    background-color: #0c0c0c;
    padding: var(--section-pad) 2rem;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.confirmation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 10, 0.98), rgba(6, 6, 8, 0.96)),
        radial-gradient(circle at 70% 30%, rgba(201, 173, 99, 0.05), transparent 55%);
    opacity: 0.95;
    z-index: 0;
}

.confirmation-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0), rgba(6, 6, 8, 0.9));
    z-index: 0;
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-label {
    font-size: 0.85rem;
    color: rgba(245, 245, 220, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.summary-value {
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font-body);
}

.summary-item.highlight {
    grid-column: span 2;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-text {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .summary-item.highlight {
        grid-column: span 1;
    }
}

.reserve-highlight {
    position: relative;
    box-shadow: 0 0 0 1px rgba(201, 173, 99, 0.5), 0 0 30px rgba(201, 173, 99, 0.15);
    transition: box-shadow 0.4s ease;
}

.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(4, 4, 4, 0), rgba(4, 4, 4, 0.95));
    z-index: 30;
    display: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-sticky-cta .btn {
    width: 100%;
}

.mobile-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 4, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 40;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    width: 100%;
    max-width: 520px;
    background:
        radial-gradient(circle at 50% 0%, rgba(40, 24, 34, 0.35), transparent 55%),
        linear-gradient(180deg, rgba(10, 10, 12, 0.98), rgba(6, 6, 8, 0.98));
    border: 1px solid rgba(201, 173, 99, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    padding: 2.5rem;
    position: relative;
    animation: fadeIn 0.4s ease;
}

.modal-handle {
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: rgba(242, 239, 230, 0.3);
    margin: 0 auto 1rem;
    display: none;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.modal-copy {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.modal-submit {
    background-color: rgba(201, 173, 99, 0.9);
    border-color: rgba(201, 173, 99, 0.9);
    box-shadow: 0 8px 20px rgba(201, 173, 99, 0.15);
}

.modal-submit:hover {
    background-color: rgba(201, 173, 99, 0.15);
    color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(201, 173, 99, 0.2);
}

.modal-success {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(201, 173, 99, 0.35);
    color: var(--accent-gold);
    font-size: 0.95rem;
    display: none;
    gap: 0.35rem;
    flex-direction: column;
}

.modal-success.show {
    display: flex;
}

.receipt-preview {
    display: none;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.receipt-preview.is-visible {
    display: block;
}

.receipt-preview img {
    width: 100%;
    border-radius: 6px;
    display: block;
    margin-bottom: 0.75rem;
}

.receipt-replace {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 5rem;
    }

    .tables-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .table-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
    }

    .table-card.is-collapsed .table-card-body {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .table-card-body {
        max-height: 1200px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 1.2rem 1.2rem;
        font-size: 1.05rem;
    }

    .form-input[type="file"] {
        padding: 1.1rem 1.2rem;
    }

    .bank-details p {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .copy-btn {
        display: inline-flex;
    }

    .modal-overlay {
        align-items: flex-end;
        padding: 1rem;
    }

    .modal-card {
        max-width: 100%;
        border-radius: 18px 18px 0 0;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-handle {
        display: block;
    }

    .exclusivity,
    .tables,
    .reservation-section,
    .confirmation-section,
    .details-rules {
        content-visibility: auto;
        contain-intrinsic-size: 1000px;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .modal-card {
        padding: 2rem 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Access Structure Headers */
.access-category {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-subtitle {
    font-size: 0.6em;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    vertical-align: middle;
    margin-left: 0.5rem;
    opacity: 0.9;
}

.category-desc {
    text-align: center;
    font-size: 1rem;
    color: rgba(245, 245, 220, 0.7);
    margin-bottom: 2.5rem;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.8rem;
    }

    .category-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 0.2rem;
    }
}