:root {
    --ink: #0d0f14;
    --ink2: #1a1d26;
    --ink3: #252932;
    --gold: #c9922a;
    --gold-light: #e8b84b;
    --gold-pale: #f5e9cf;
    --cream: #faf7f0;
    --white: #ffffff;
    --muted: #8a8f9e;
    --muted2: #6a6e7c;
    --line: rgba(201,146,42,0.18);
    --line-dim: rgba(255,255,255,0.08);
}
* { 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: 18px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.serif { font-family: 'Playfair Display', Georgia, serif; }

/* ──────────────────────────────
   ANNOUNCEMENT 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;
}
.bar a { color: var(--ink); text-decoration: underline; }

/* ──────────────────────────────
   NAV
────────────────────────────── */
nav {
    border-bottom: 1px solid var(--line-dim);
    padding: 18px 0;
    position: sticky;
    top: 0;
    background: rgba(13,15,20,0.96);
    backdrop-filter: blur(12px);
    z-index: 100;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700 !important;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500 !important;
    letter-spacing: 0.03em;
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--gold);
    color: var(--ink) !important;
    padding: 9px 22px;
    border-radius: 3px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--ink) !important; }

/* ──────────────────────────────
   HERO
────────────────────────────── */
.hero {
    padding: 50px 0 80px;
    border-bottom: 1px solid var(--line-dim);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,146,42,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600 !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-kicker::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--gold);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    font-weight: 900 !important;
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 820px;
    margin-bottom: 30px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
    max-width: 680px;
    margin-bottom: 48px;
    font-weight: 300 !important;
}
.hero-stats {
    display: flex;
    gap: 0;
    border: 1px solid var(--line-dim);
    border-radius: 4px;
    margin-bottom: 40px;
    overflow: hidden;
    max-width: 700px;
}
.hero-stat {
    flex: 1;
    padding: 20px 24px;
    border-right: 1px solid var(--line-dim);
}
.hero-stat:last-child { border-right: none; }
.stat-label {
    font-size: 11px;
    font-weight: 600 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}
.stat-value {
    font-size: 15px;
    font-weight: 600 !important;
    color: var(--white);
    line-height: 1.3;
}
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 3px;
    font-weight: 600 !important;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}
.btn-gold {
    background: var(--gold);
    color: var(--ink);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-fine {
    font-size: 14px;
    color: var(--muted);
}

/* ──────────────────────────────
   SECTION BASE
────────────────────────────── */
section { padding: 80px 0; border-bottom: 1px solid var(--line-dim); }
section.light {
    background: var(--cream);
    color: var(--ink);
    border-bottom: none;
}
section.mid { background: var(--ink2); }
.sec-kicker {
    font-size: 11px;
    font-weight: 600 !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sec-kicker::before {
    content: '';
    display: block;
    width: 22px; height: 1px;
    background: var(--gold);
}
.light .sec-kicker { color: var(--gold); }
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700 !important;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.light h2 { color: var(--ink); }
.sec-intro {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    max-width: 100%;
    margin-bottom: 52px;
    font-weight: 300 !important;
}
.light .sec-intro { color: var(--ink3); }

/* ──────────────────────────────
   WHO IS THIS FOR
────────────────────────────── */
.qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--line-dim);
    border: 1px solid var(--line-dim);
    border-radius: 4px;
    overflow: hidden;
}
.qual-panel {
    padding: 40px 36px;
    background: var(--ink2);
}
.qual-panel.yes { background: var(--ink3); }
.qual-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700 !important;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-dim);
}
.qual-panel.yes h3 { color: var(--gold-light); }
.qual-panel.no h3 { color: var(--muted); }
.qual-panel ul { list-style: none; }
.qual-panel li {
    padding: 12px 0 12px 22px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.qual-panel li:last-child { border-bottom: none; }
.qual-panel.yes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700 !important;
}
.qual-panel.no li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--muted2);
    font-weight: 700 !important;
}

/* ──────────────────────────────
   WHAT THIS IS
────────────────────────────── */
.what-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.what-right {
    border-left: 1px solid var(--line-dim);
    padding-left: 64px;
}
.pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700 !important;
    font-style: italic;
    line-height: 1.35;
    color: var(--gold-light);
    margin-bottom: 28px;
}
.what-list { list-style: none; }
.what-list li {
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    border-bottom: 1px solid var(--line-dim);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.what-list li:last-child { border-bottom: none; }
.what-num {
    font-size: 11px;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding-top: 2px;
    flex-shrink: 0;
    width: 24px;
}

/* ──────────────────────────────
   SCHEDULE
────────────────────────────── */
.day-block { margin-bottom: 60px; }
.day-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--gold);
}
.day-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700 !important;
    color: var(--gold-light);
}
.day-date {
    font-size: 12px;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.session {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-dim);
    transition: background 0.15s;
}
.session:last-child { border-bottom: none; }
.s-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900 !important;
    color: rgba(201,146,42,0.7);
    line-height: 1;
    padding-top: 3px;
    text-align: right;
}
.s-title {
    font-size: 19px;
    font-weight: 600 !important;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.s-led {
    font-size: 12px;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.s-body {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.58);
    font-weight: 300 !important;
}

/* ──────────────────────────────
   MEMBER VOICES (light bg)
────────────────────────────── */
.voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.voice-card {
    background: var(--white);
    border-radius: 4px;
    padding: 32px;
    border-left: 3px solid var(--gold);
}
.voice-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 16px;
}
.voice-map {
    font-size: 13px;
    font-weight: 600 !important;
    color: var(--gold);
    letter-spacing: 0.02em;
}

/* ──────────────────────────────
   TICKETS
────────────────────────────── */
.tickets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--line-dim);
    border: 1px solid var(--line-dim);
    border-radius: 4px;
    overflow: hidden;
}
.ticket-card {
    background: var(--ink2);
    padding: 44px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.ticket-card.vip {
    background: var(--ink3);
}
.t-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 10px;
}
.t-name {
    font-size: 13px;
    font-weight: 600 !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}
.t-price {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900 !important;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}
.t-tagline {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 300 !important;
}
.t-features { list-style: none; margin-bottom: 36px; flex: 1; }
.t-features li {
    padding: 11px 0 11px 24px;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid var(--line-dim);
    position: relative;
    line-height: 1.45;
}
.t-features li:last-child { border-bottom: none; }
.t-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700 !important;
    font-size: 13px;
}
.t-features li.no { color: var(--muted2); }
.t-features li.no::before { content: '—'; color: var(--muted2); }
.btn-block { display: block; text-align: center; }
.guarantee-note {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: var(--muted);
}
.guarantee-note strong { color: var(--white); }

/* ──────────────────────────────
   TESTIMONIALS
────────────────────────────── */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.test-card {
    background: var(--ink2);
    border: 1px solid var(--line-dim);
    border-radius: 4px;
    padding: 28px;
}
.test-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400 !important;
}
.test-card p::before { content: '\201C'; color: var(--gold); }
.test-card p::after  { content: '\201D'; color: var(--gold); }
.test-who {
    font-size: 13px;
    font-weight: 600 !important;
    color: var(--muted);
    letter-spacing: 0.03em;
}

/* ──────────────────────────────
   FAQ
────────────────────────────── */
.faq-list { max-width: 760px; }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--line-dim); }
.faq-item:first-child { border-top: 1px solid var(--line-dim); }
.faq-q {
    font-size: 17px;
    font-weight: 600 !important;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}
.faq-a {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    font-weight: 300 !important;
}

/* ──────────────────────────────
   FINAL CTA
────────────────────────────── */
.finale {
    padding: 100px 0 50px !important;
    text-align: center;
    background: var(--ink2);
    border-top: 1px solid var(--line);
    border-bottom: none;
}
.finale h2 {
    font-size: 48px;
    max-width: 720px;
    margin: 0 auto 20px;
    line-height: 1.12;
}
.finale p {
    font-size: 18px;
    color: rgba(255,255,255,0.58);
    max-width: 540px;
    margin: 0 auto 40px;
    font-weight: 300 !important;
}
.finale .btn-row { justify-content: center; }
.finale-meta {
    margin-top: 32px;
    font-size: 12px;
    font-weight: 600 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted2);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.value-card {
    background: var(--white);
    border-radius: 4px;
    padding: 28px 32px;
    border-left: 3px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.value-card-title {
    font-size: 16px;
    font-weight: 600 !important;
    color: var(--ink);
    margin-bottom: 6px;
}

.value-card-text {
    font-size: 14px;
    color: var(--ink3);
    line-height: 1.55;
}

.value-card-price {
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700 !important;
    color: var(--gold);
}

@media (max-width: 720px) {
    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        flex-direction: column;
        padding: 24px 22px;
        gap: 12px;
    }

    .value-card-price {
        align-self: flex-start;
        font-size: 24px;
    }
}

/* ──────────────────────────────
   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: 720px) {
    .hero h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    .hero-stats { flex-direction: column; }
    .hero-stat { border-right: none; border-bottom: 1px solid var(--line-dim); }
    .qual-grid,
    .tickets-grid,
    .voices-grid,
    .test-grid,
    .what-cols { grid-template-columns: 1fr; }
    .what-right { border-left: none; padding-left: 0; border-top: 1px solid var(--line-dim); padding-top: 40px; }
    nav .nav-links { display: none; }
    .session { grid-template-columns: 40px 1fr; gap: 16px; }
    .s-num { font-size: 22px; }
    .t-price { font-size: 48px; }
    .finale h2 { font-size: 32px; }
}
