:root {
    --black: #000000;
    --dark: #0b0b0b;
    --dark-alt: #141414;
    --gold: #d4af37;
    --gold-soft: #f0e1a1;
    --text: #f5f5f5;
    --muted: #b3b3b3;
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.6);
    --radius: 10px;
    --transition: all 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #202020 0, #050505 50%, #000 100%);
    color: var(--text);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

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

ul {
    list-style: none;
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-gate-content {
    background: #111111;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 32px 24px;
    max-width: 420px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.gate-logo {
    max-width: 200px;
    margin-bottom: 16px;
}

.age-gate-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.age-gate-content p {
    color: var(--muted);
    font-size: 0.95rem;
}

.gate-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0 10px;
}

.gate-disclaimer {
    font-size: 0.75rem;
    color: #777;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #c69c1d;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid #777;
}

.btn-secondary:hover {
    background: #222;
}

/* Header / Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #222;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

.brand-logo {
    height: 56px;
}

/* Desktop nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
    color: #e5e5e5;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-soft));
    transition: width 0.2s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #f5f5f5;
}

/* Hero / page hero */
.hero {
    padding: 60px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 40px;
    align-items: center;
}

.page-hero {
    padding: 60px 0 40px;
}

.badge {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.hero h1,
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 4vw, 2.6rem);
    margin: 12px 0;
}

.hero-sub {
    color: var(--muted);
    max-width: 600px;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.85rem;
}

.meta-label {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.7rem;
    color: #9a9a9a;
}

.meta-value {
    display: block;
    font-weight: 600;
}

/* Hero side card */
.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: var(--dark-alt);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid #222;
    box-shadow: var(--shadow-soft);
}

.hero-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 16px;
}

/* Lists */
.check-list li,
.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.93rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.85rem;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Sections */
.section {
    padding: 40px 0 20px;
}

.section-alt {
    background: #060606;
    border-top: 1px solid #151515;
    border-bottom: 1px solid #151515;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 22px;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.card {
    background: var(--dark-alt);
    border-radius: var(--radius);
    padding: 20px 18px;
    border: 1px solid #262626;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.card p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Text grid for About & Membership */
.text-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
}

.text-grid h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.text-grid p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.subheading {
    margin-top: 18px;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: #050505;
    border-top: 1px solid #161616;
    padding: 26px 0 10px;
    margin-top: 40px;
    font-size: 0.85rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-brand {
    font-weight: 600;
}

.footer-note {
    max-width: 480px;
    color: #a1a1a1;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #161616;
    margin-top: 16px;
    padding-top: 8px;
    text-align: center;
    font-size: 0.78rem;
    color: #777;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .text-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 58px 0 auto 0;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        align-items: center;
        padding: 12px 0 18px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: flex;
    }

    .hero,
    .page-hero {
        padding-top: 40px;
    }
}

