:root {
    --ink: #0d0f14;
    --ink2: #1a1d26;
    --ink3: #252932;
    --gold: #c9922a;
    --gold-light: #e8b84b;
    --gold-pale: #f5e9cf;
    --white: #ffffff;
    --muted: #8a8f9e;
    --muted2: #6a6e7c;
    --line: rgba(201,146,42,0.18);
    --line-dim: rgba(255,255,255,0.08);
    --error: #e05555;
    --success: #4caf82;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--ink);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* ── BAR ── */
.bar {
    background: var(--gold);
    color: var(--ink);
    text-align: center;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── NAV ── */
nav {
    border-bottom: 1px solid var(--line-dim);
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13,15,20,0.97);
}
.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700 !important;
    color: var(--gold-light);
}
.nav-back {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}
.nav-back:hover { color: var(--white); }

/* ── LAYOUT ── */
.page {
    max-width: 1040px;
    margin: 0 auto;
    padding: 56px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

/* ── FORM SIDE ── */
.form-side {}
.page-kicker {
    font-size: 11px;
    font-weight: 600 !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.page-kicker::before {
    content: '';
    display: block;
    width: 22px; height: 1px;
    background: var(--gold);
}
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700 !important;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.page-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    font-weight: 300 !important;
}

/* ── TICKET SELECTOR ── */
.ticket-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--line-dim);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 36px;
}
.ticket-opt {
    background: var(--ink2);
    padding: 20px 22px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 0;
    transition: all 0.15s;
    position: relative;
}
.ticket-opt:first-child { border-radius: 4px 0 0 4px; }
.ticket-opt:last-child  { border-radius: 0 4px 4px 0; }
.ticket-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.ticket-opt.selected {
    background: var(--ink3);
    border-color: var(--gold);
}
.opt-label {
    font-size: 11px;
    font-weight: 700 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.ticket-opt.selected .opt-label { color: var(--gold); }
.opt-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900 !important;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.opt-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
}
.ticket-opt.selected .opt-desc { color: rgba(255,255,255,0.68); }
.opt-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    margin-top: 8px;
}

/* ── FORM SECTIONS ── */
.form-section {
    margin-bottom: 32px;
}
.form-section-title {
    font-size: 12px;
    font-weight: 700 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-dim);
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.field-row.full { grid-template-columns: 1fr; }
.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
label {
    font-size: 12px;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
input, select {
    background: var(--ink2);
    border: 1px solid var(--line-dim);
    border-radius: 3px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
    -webkit-appearance: none;
}
input::placeholder { color: var(--muted2); }
input:focus, select:focus { border-color: var(--gold); }
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8f9e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
select option { background: var(--ink2); color: var(--white); }

/* VIP address field — shown/hidden */
.vip-only {
    display: none;
    overflow: hidden;
}
.vip-only.visible { display: block; }
.vip-notice {
    background: rgba(201,146,42,0.1);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--gold-light);
    margin-bottom: 18px;
    line-height: 1.5;
}

/* ── PAYMENT ── */
.payment-note {
    background: var(--ink2);
    border: 1px solid var(--line-dim);
    border-radius: 3px;
    padding: 16px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.payment-note svg { flex-shrink: 0; margin-top: 2px; }

/* ── SUBMIT ── */
.submit-btn {
    width: 100%;
    padding: 17px 32px;
    background: var(--gold);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700 !important;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.15s;
    letter-spacing: 0.01em;
}
.submit-btn:hover { background: var(--gold-light); }
.submit-fine {
    text-align: center;
    font-size: 12px;
    color: var(--muted2);
    margin-top: 14px;
    line-height: 1.5;
}

/* ── ORDER SUMMARY (right col) ── */
.summary-side {
    position: sticky;
    top: 32px;
}
.summary-card {
    background: var(--ink2);
    border: 1px solid var(--line-dim);
    border-radius: 4px;
    overflow: hidden;
}
.summary-header {
    background: var(--ink3);
    padding: 22px 28px;
    border-bottom: 1px solid var(--line-dim);
}
.summary-header-label {
    font-size: 11px;
    font-weight: 700 !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.summary-event {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700 !important;
    color: var(--white);
    line-height: 1.25;
}
.summary-date {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500 !important;
}
.summary-body { padding: 24px 28px; }
.summary-ticket-label {
    font-size: 11px;
    font-weight: 700 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}
.summary-ticket-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700 !important;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.summary-ticket-price {
    font-size: 15px;
    color: var(--gold-light);
    font-weight: 600 !important;
    margin-bottom: 20px;
}
.summary-includes {
    list-style: none;
    border-top: 1px solid var(--line-dim);
    padding-top: 18px;
    margin-bottom: 24px;
}
.summary-includes li {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.45;
}
.summary-includes li:last-child { border-bottom: none; }
.check { color: var(--gold); font-weight: 700 !important; flex-shrink: 0; }
.summary-total {
    background: var(--ink3);
    margin: 0 -28px -24px;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line-dim);
}
.total-label {
    font-size: 12px;
    font-weight: 700 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 900 !important;
    color: var(--white);
}

.refund-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--muted2);
    line-height: 1.55;
    text-align: center;
    padding: 0 4px;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.smsoptout {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: 14px 0 0 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #5b4a3f !important;
}

.smsoptout_label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
    font-weight: 400 !important;
}

.smsoptout_input {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    margin: 2px 0 0 0 !important;
    padding: 0 !important;
    accent-color: #8b5e3c;
}

/* ──────────────────────────────
   FOOTER
────────────────────────────── */
footer {
    padding: 36px 0;
    border-top: 1px solid var(--line-dim);
    text-align: center;
    font-size: 13px;
    color: var(--muted2);
}

/* ── MOBILE ── */
@media (max-width: 760px) {
    .page { grid-template-columns: 1fr; padding: 36px 20px 60px; gap: 32px; }
    .summary-side { position: static; }
    h1 { font-size: 28px; }
    .field-row { grid-template-columns: 1fr; }
    .ticket-selector { grid-template-columns: 1fr; }
}
