:root {
    --bg: #0f1115;
    --surface: #181b22;
    --surface-2: #21252d;
    --surface-3: #282d37;
    --border: #303541;
    --text: #f5f1e8;
    --muted: #9ea6b2;
    --accent: #b78a4a;
    --accent-dark: #8f6b37;
    --success: #52b788;
    --danger: #d9534f;
    --warning: #f4c430;
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at top, #1e1a14, var(--bg) 48%);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

.experience-shell {
    width: 100%;
    min-height: 100vh;
    max-width: none;
    margin: 0;
    padding: 18px 24px 40px;
    display: flex;
    flex-direction: column;
}

.experience-hero {
    text-align: center;
    margin-bottom: 8px;
}

.eyebrow {
    margin: 0 0 4px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.experience-hero h1 {
    font-size: 2rem;
    margin: 0;
}

.experience-hero h2 {
    margin: 8px 0 0;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
}

.experience-hero p,
.hero-copy {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.3;
}

.experience-section {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.experience-section-header {
    text-align: center;
    margin-bottom: 10px;
}

.experience-section-header h2 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text);
}

.experience-section-header p {
    margin: 3px 0 0;
    font-size: 0.78rem;
    color: var(--muted);
}

.experience-grid {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.experience-card {
    min-width: 0;
    height: 100%;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid rgba(183, 138, 74, 0.34);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);

    display: grid;
    grid-template-rows:
        auto
        auto
        auto
        1fr
        auto
        auto;

    row-gap: 16px;
}

.experience-card-header {
    text-align: center;
    margin-bottom: 4px;
}   

.experience-card-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.experience-card-header h3 {
    margin: 4px 0 6px;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text);
}

.experience-price {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text);
    margin-top: 4px;
}

.experience-block {
    margin-bottom: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(183, 138, 74, 0.24);
}

.experience-block h4 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.experience-block p {
    margin: 8px 0;
    font-size: 1.18rem;
    line-height: 1.45;
    color: var(--muted);
}

.benefit-on {
    color: var(--success);
    font-weight: 900;
    font-size: 1.22rem;
}

.benefit-off {
    color: var(--danger);
    font-weight: 900;
    font-size: 1.22rem;
}
.experience-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 13px 10px;
    font-size: 0.96rem;
    font-weight: 900;
    cursor: pointer;
    background: var(--accent);
    color: #111;
    transition: all 0.2s ease;
}


.experience-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.tier-t1 {
    border-top: 6px solid #b45309;
}

.tier-t2 {
    border-top: 6px solid #9ea6b2;
}

.tier-t3 {
    border-top: 6px solid #f4c430;
}

.tier-t4 {
    border-top: 6px solid #8b5cf6;
}

.upgrade-callout {
    padding: 11px;
    border-radius: 10px;
    background: rgba(183, 138, 74, 0.16);
    border: 1px solid rgba(183, 138, 74, 0.32);
    color: var(--text);
    text-align: center;
    font-size: 0.84rem;
    line-height: 1.3;
    font-weight: 900;
}

.top-tier {
    background: rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.4);
}

@media (max-width: 1100px) {
    .experience-shell {
        padding: 12px;
    }

    .experience-grid {
        gap: 8px;
    }

    .experience-card {
        padding: 9px;
    }

    .experience-hero h1 {
        font-size: 1.55rem;
    }

    .experience-hero p,
    .hero-copy {
        font-size: 0.72rem;
    }

    .experience-block p {
        font-size: 0.66rem;
    }

    .experience-block h4 {
        font-size: 0.66rem;
    }

    .experience-btn {
        font-size: 0.7rem;
        padding: 7px 5px;
    }
}

/* =========================================================
   MOBILE RESPONSIVE PASS — EXPERIENCE PAGE start 
   ========================================================= */

@media (max-width: 768px) {
    .experience-shell {
        padding: 18px 14px 36px;
    }

    .experience-hero {
        margin-bottom: 18px;
    }

    .experience-hero h1 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .experience-hero h2 {
        font-size: 1rem;
        line-height: 1.35;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .experience-card {
        height: auto;
        padding: 18px;
        row-gap: 14px;
    }

    .experience-card-header h2 {
        font-size: 1.9rem;
    }

    .experience-card-header h3 {
        font-size: 1.15rem;
    }

    .experience-block h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .experience-block p {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .benefit-on,
    .benefit-off {
        font-size: 1rem;
    }

    .experience-btn {
        min-height: 52px;
        font-size: 1rem;
        border-radius: 14px;
    }

    .upgrade-callout {
        font-size: 0.9rem;
        line-height: 1.45;
    }
}

/* =========================================================
   MOBILE RESPONSIVE PASS — EXPERIENCE PAGE END
   ========================================================= */


   /* =========================================================
   OWNER'S CELLAR CONTENT
========================================================= */

.experience-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.experience-content-card {
    padding: 18px;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 22px;
    background: rgba(15,18,18,0.92);
}

.experience-video,
.experience-image {
    width: 100%;
    display: block;
    border: 0;
    border-radius: 16px;
    background: #111;
    margin-bottom: 14px;
}

.experience-video {
    aspect-ratio: 16 / 9;
}

.experience-image {
    max-height: 320px;
    object-fit: cover;
}

#experienceContent {

    max-height: 78vh;

    overflow-y: auto;

    overflow-x: hidden;

    padding-right: 12px;
}