/* ============================================================
   JOINTINI — Main Stylesheet
   Neon haze. Lounge lighting. Smoke and glow.
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Jost:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    /* Palette: Deep void, neon punch, warm smoke */
    --void:          #06030d;
    --abyss:         #0c0618;
    --deep-purple:   #150a2e;
    --plum:          #2a1249;
    --velvet:        #3d1a6e;

    --neon-pink:     #ff2d7b;
    --neon-purple:   #b347d9;
    --neon-amber:    #f0a830;
    --neon-cyan:     #00e5ff;
    --neon-green:    #39ff14;

    --chrome:        #c0c0d0;
    --smoke:         rgba(180, 160, 220, 0.08);
    --glass:         rgba(255, 255, 255, 0.04);
    --glass-border:  rgba(255, 255, 255, 0.08);

    --text-primary:  #e8e0f0;
    --text-muted:    #8a7ca0;
    --text-glow:     #d4b8ff;

    /* Typography */
    --font-display:  'Italiana', serif;
    --font-body:     'Jost', sans-serif;
    --font-mono:     'Space Mono', monospace;

    /* Spacing */
    --section-pad:   clamp(4rem, 10vw, 8rem);
    --content-max:   1200px;

    /* Glow presets */
    --glow-pink:     0 0 20px rgba(255, 45, 123, 0.4), 0 0 60px rgba(255, 45, 123, 0.15);
    --glow-purple:   0 0 20px rgba(179, 71, 217, 0.4), 0 0 60px rgba(179, 71, 217, 0.15);
    --glow-amber:    0 0 20px rgba(240, 168, 48, 0.4), 0 0 60px rgba(240, 168, 48, 0.15);
    --glow-text:     0 0 10px rgba(212, 184, 255, 0.5), 0 0 40px rgba(179, 71, 217, 0.2);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--velvet) var(--void);
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--void);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--neon-purple);
    color: var(--void);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--velvet); border-radius: 3px; }

a {
    color: var(--neon-purple);
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}
a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

img { max-width: 100%; display: block; }

/* --- Utility --- */
.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Animated Background Layers --- */
.bg-noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

.bg-gradient {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(179, 71, 217, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(255, 45, 123, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(240, 168, 48, 0.04) 0%, transparent 40%);
}

.smoke-layer {
    position: fixed;
    top: 0; left: 0; width: 200%; height: 200%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    background:
        radial-gradient(ellipse 40% 30% at 30% 40%, rgba(179, 71, 217, 0.06) 0%, transparent 100%),
        radial-gradient(ellipse 35% 45% at 70% 60%, rgba(255, 45, 123, 0.04) 0%, transparent 100%);
    animation: smoke-drift 30s ease-in-out infinite alternate;
}

@keyframes smoke-drift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-5%, -3%) scale(1.05); }
    100% { transform: translate(-10%, -5%) scale(1); }
}

/* --- Navigation --- */
.site-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.site-nav.scrolled {
    background: rgba(6, 3, 13, 0.85);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: var(--glow-text);
    transition: text-shadow 0.3s;
}
.nav-logo:hover {
    color: var(--text-primary);
    text-shadow: var(--glow-purple);
}

.nav-logo .logo-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--neon-pink);
    border-radius: 50%;
    margin-left: 2px;
    box-shadow: var(--glow-pink);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(0.8); }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 0.3rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-pink);
    box-shadow: 0 0 6px var(--neon-pink);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
    text-shadow: none;
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--void) !important;
    background: var(--neon-pink);
    padding: 0.6rem 1.5rem !important;
    border-radius: 2px;
    box-shadow: var(--glow-pink);
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(255, 45, 123, 0.5), 0 0 80px rgba(255, 45, 123, 0.2) !important;
    color: var(--void) !important;
    text-shadow: none !important;
}
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    z-index: 2;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(179, 71, 217, 0.12) 0%, rgba(255, 45, 123, 0.06) 40%, transparent 70%);
    filter: blur(80px);
    animation: hero-pulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes hero-pulse {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--neon-amber);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fade-up 0.8s 0.3s ease forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: var(--glow-text);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fade-up 1s 0.5s ease forwards;
}

.hero-title .char-glow {
    display: inline-block;
    animation: char-shimmer 4s ease-in-out infinite;
    animation-delay: var(--char-delay, 0s);
}

@keyframes char-shimmer {
    0%, 100% { text-shadow: var(--glow-text); }
    50%      { text-shadow: 0 0 20px rgba(255, 45, 123, 0.6), 0 0 60px rgba(179, 71, 217, 0.3); }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fade-up 1s 0.8s ease forwards;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fade-up 1s 1.1s ease forwards;
}

.hero-divider {
    margin-top: auto;
    padding-top: 3rem;
    opacity: 0;
    animation: fade-up 1s 1.4s ease forwards;
}

.hero-divider svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-muted);
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--neon-pink);
    color: var(--void);
    box-shadow: var(--glow-pink);
}
.btn-primary:hover {
    color: var(--void);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 45, 123, 0.6), 0 0 80px rgba(255, 45, 123, 0.2);
    text-shadow: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    text-shadow: none;
}

/* --- Section Shared --- */
.section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad) 0;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--neon-amber);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-text {
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* Neon rule */
.neon-rule {
    width: 60px;
    height: 2px;
    border: none;
    background: var(--neon-pink);
    box-shadow: var(--glow-pink);
    margin: 2rem 0;
}

/* --- About / Vibe Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.about-visual-inner {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--deep-purple) 0%, var(--plum) 50%, var(--velvet) 100%);
}

.about-visual-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 45, 123, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 229, 255, 0.15) 0%, transparent 50%);
    animation: visual-shift 10s ease-in-out infinite alternate;
}

@keyframes visual-shift {
    0%   { opacity: 0.6; }
    100% { opacity: 1; }
}

.about-visual-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: var(--glow-text);
}

.about-traits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.trait-card {
    padding: 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.trait-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.trait-icon {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.trait-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.trait-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Events / The Scene --- */
.events-section {
    background:
        linear-gradient(180deg, transparent 0%, rgba(21, 10, 46, 0.5) 30%, rgba(21, 10, 46, 0.5) 70%, transparent 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.event-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.event-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-4px);
    box-shadow: var(--glow-pink);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
    opacity: 0;
    transition: opacity 0.4s;
}
.event-card:hover::before { opacity: 1; }

.event-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--neon-amber);
    margin-bottom: 1rem;
}

.event-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.event-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

/* --- Membership / Inner Circle --- */
.membership-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tier-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    transition: border-color 0.4s, box-shadow 0.4s;
}
.tier-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.tier-card.featured {
    border-color: var(--neon-pink);
    background: linear-gradient(180deg, rgba(255, 45, 123, 0.06) 0%, var(--glass) 100%);
}
.tier-card.featured:hover {
    box-shadow: var(--glow-pink);
}

.tier-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neon-amber);
    margin-bottom: 1rem;
}

.tier-name {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.tier-perks {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-perks li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tier-perks li::before {
    content: '\2726';
    color: var(--neon-purple);
    font-size: 0.7rem;
}

/* --- Shop Preview --- */
.shop-marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.shop-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.shop-item:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.shop-item-visual {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--deep-purple), var(--plum));
    position: relative;
}

.shop-item-info {
    padding: 1.2rem;
}

.shop-item-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.shop-item-price {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-amber);
}

/* --- Contact / Find Us --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neon-amber);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.social-link:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    text-shadow: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    padding: 1rem 1.2rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--neon-purple);
    box-shadow: inset 0 0 20px rgba(179, 71, 217, 0.06);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

/* --- Footer --- */
.site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

.footer-legal a {
    color: var(--text-muted);
}
.footer-legal a:hover {
    color: var(--neon-purple);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(6, 3, 13, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }
    .nav-links.open a {
        font-size: 1.2rem;
    }

    .about-grid,
    .events-grid,
    .membership-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        aspect-ratio: 16 / 9;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 6rem);
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 5rem 1.2rem 3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .about-traits {
        grid-template-columns: 1fr;
    }

    .trait-card {
        padding: 1rem;
    }
}

/* --- Age Gate Overlay --- */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--void);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.age-gate.dismissed {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.age-gate-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: var(--glow-text);
    margin-bottom: 1rem;
}

.age-gate-text {
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
}
