/* ============================================================
   GROWING GREEN — PREMIUM CANNABIS LOUNGE
   Warm, dark, luxurious. Members club meets Amsterdam lounge.
   ============================================================ */

:root {
    /* Core palette */
    --bg:           #1a2418;
    --bg-deep:      #131a11;
    --bg-card:      #22301f;
    --bg-card-2:    #2a3c26;
    --bg-elevated:  #2e4229;

    /* Green — vivid & rich */
    --green:        #3db85a;
    --green-light:  #5cd97a;
    --green-dark:   #248040;
    --green-muted:  #2e4a32;
    --green-glow:   rgba(61, 184, 90, 0.4);

    /* Gold — warm pop of colour */
    --gold:         #d4a842;
    --gold-light:   #f0c96a;
    --gold-dim:     rgba(212, 168, 66, 0.18);

    /* Purple accent — extra colour */
    --purple:       #9b72cf;
    --purple-dim:   rgba(155, 114, 207, 0.12);

    /* Text */
    --text:         #eeeae0;
    --text-bright:  #fdfaf3;
    --text-dim:     #8a9e82;
    --text-mid:     #b8cead;

    /* Borders */
    --border:       rgba(61, 184, 90, 0.18);
    --border-gold:  rgba(212, 168, 66, 0.22);
    --border-hover: rgba(61, 184, 90, 0.5);

    /* Fonts */
    --font-display: 'Syne', sans-serif;
    --font-body:    'Space Grotesk', sans-serif;

    /* Shapes */
    --radius:       16px;
    --radius-sm:    10px;
    --radius-xs:    6px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; border: 0; outline: 0; background: 0; color: inherit; }
ul { list-style: none; }
.hidden { display: none !important; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }


/* ══════════════════════════════════════════════════════
   BODY BACKGROUND — Weed Leaf tile, warm-tinted
   ══════════════════════════════════════════════════════ */
body::before {
    content: '';
    position: fixed; inset: 0;
    z-index: 0; pointer-events: none;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: 110px;
    background-repeat: repeat;
    opacity: 0.055;
    filter: sepia(30%) hue-rotate(50deg) brightness(1);
    animation: bgDrift 100s linear infinite;
}
@keyframes bgDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 440px 440px; }
}

/* Grain overlay hidden */
.grain-overlay { display: none; }

/* ══════════════════════════════════════════════════════
   FLOATING LEAF PARTICLES
   ══════════════════════════════════════════════════════ */
.leaf-particles {
    position: fixed; inset: 0;
    z-index: 1; pointer-events: none; overflow: hidden;
    transition: opacity 1.5s ease;
}
.leaf-particles.fade-out { opacity: 0; }
.leaf-particle {
    position: absolute; pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(61, 184, 90, 0.2));
}
.leaf-particle img { width: 100%; height: 100%; object-fit: contain; }
@keyframes leafDrift {
    0%   { transform: translateY(-8vh) rotate(0deg) translateX(0); opacity: 0; }
    6%   { opacity: 1; }
    45%  { transform: translateY(50vh) rotate(200deg) translateX(20px); opacity: 0.55; }
    90%  { opacity: 0.25; }
    100% { transform: translateY(108vh) rotate(380deg) translateX(-10px); opacity: 0; }
}

/* Smoke layer — hidden */
.smoke-layer { display: none; }


/* ══════════════════════════════════════════════════════
   AGE GATE
   ══════════════════════════════════════════════════════ */
.age-gate {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-deep);
}
.age-overlay {
    position: absolute; inset: 0; overflow: hidden;
}
.age-overlay::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: 130px; background-repeat: repeat;
    opacity: 0.065;
    filter: sepia(20%) hue-rotate(55deg) brightness(1);
    animation: bgDrift 70s linear infinite;
}
.age-overlay::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 25%, var(--bg-deep) 72%);
}
/* Age SVG leaves — hidden, PNG overlay handles it */
.age-leaves { display: none; }

.age-card {
    position: relative; z-index: 2;
    background: rgba(12, 18, 11, 0.92);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 56px 48px;
    text-align: center; max-width: 440px; width: 92%;
    box-shadow: 0 0 80px rgba(201,168,76,0.06), 0 40px 80px rgba(0,0,0,0.5);
}
.age-logo {
    width: 88px; margin: 0 auto 22px;
    filter: drop-shadow(0 0 20px rgba(74,158,96,0.4));
    animation: logoPulse 4s ease-in-out infinite;
}
.age-logo.sm { width: 58px; }
@keyframes logoPulse {
    0%,100% { filter: drop-shadow(0 0 20px rgba(74,158,96,0.4)); transform: scale(1); }
    50%      { filter: drop-shadow(0 0 36px rgba(74,158,96,0.7)); transform: scale(1.02); }
}
.age-card h1 {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    letter-spacing: 0.18em; color: var(--text-bright);
}
.age-divider {
    display: block; width: 48px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto;
}
.age-label {
    font-size: 0.68rem; letter-spacing: 0.4em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 32px;
}
.age-q { font-size: 1.05rem; margin-bottom: 24px; font-weight: 500; color: var(--text-mid); }
.age-btns { display: flex; gap: 12px; margin-bottom: 20px; }
.age-btn {
    flex: 1; padding: 14px 0; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
}
.age-yes {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(74,158,96,0.3);
}
.age-yes:hover { box-shadow: 0 6px 35px rgba(74,158,96,0.5); transform: translateY(-2px); }
.age-no {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-dim);
}
.age-no:hover { background: rgba(255,255,255,0.08); }
.age-disclaimer { font-size: 0.68rem; color: var(--text-dim); }

.age-rejected { position: relative; z-index: 2; text-align: center; color: var(--text-dim); }
.age-rejected h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text); margin: 14px 0 8px; }
.age-comeback { font-size: 0.82rem; margin-top: 6px; }


/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 9000; padding: 20px 0; transition: all 0.4s;
}
.nav.scrolled {
    background: rgba(10, 13, 9, 0.94);
    backdrop-filter: blur(24px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-inner {
    max-width: 1160px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
}
.nav-actions {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-phone {
    font-size: 0.75rem; font-weight: 500;
    color: var(--gold-light); letter-spacing: 0.02em;
    padding: 8px 12px; border-radius: var(--radius-xs);
    border: 1px solid transparent;
    transition: all 0.3s; white-space: nowrap;
}
.nav-phone:hover { border-color: var(--border-gold); background: var(--gold-dim); }
.nav-cta {
    padding: 9px 20px !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
}
.nav-brand img {
    height: 42px;
    filter: drop-shadow(0 0 12px rgba(74,158,96,0.35));
    transition: filter 0.3s;
}
.nav-brand img:hover { filter: drop-shadow(0 0 24px rgba(74,158,96,0.6)); }
.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-link {
    padding: 8px 15px; font-size: 0.8rem; letter-spacing: 0.05em;
    font-weight: 500; color: var(--text-dim);
    border-radius: var(--radius-xs); transition: all 0.3s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--text-mid); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }


/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 80px 28px 40px;
}

/* Hero background — Weed Leaf large accent corners */
.hero-bg {
    position: absolute; inset: 0; z-index: 1;
}
.hero-bg::before {
    content: '';
    position: absolute; top: -80px; left: -80px;
    width: 480px; height: 480px;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.14;
    filter: sepia(20%) hue-rotate(60deg) brightness(1.1);
    transform: rotate(-25deg) scaleX(-1);
    animation: cornerLeafBreathe 14s ease-in-out infinite;
}
.hero-bg::after {
    content: '';
    position: absolute; bottom: -90px; right: -60px;
    width: 520px; height: 520px;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.17;
    filter: sepia(20%) hue-rotate(60deg) brightness(1.1);
    transform: rotate(30deg);
    animation: cornerLeafBreathe 11s ease-in-out infinite reverse;
}
@keyframes cornerLeafBreathe {
    0%, 100% { opacity: 0.14; transform: rotate(-25deg) scaleX(-1) scale(1); }
    50%       { opacity: 0.2; transform: rotate(-23deg) scaleX(-1) scale(1.03); }
}

/* SVG leaves — hidden */
.hero-decor { display: none; }
.hero-smoke  { display: none; }

/* Centre glow */
.hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
        rgba(61, 184, 90, 0.1) 0%,
        transparent 70%);
}

.hero-content {
    position: relative; z-index: 5; text-align: center;
    max-width: 900px;
}
.hero-logo {
    width: clamp(340px, 65vw, 820px);
    height: auto;
    margin-bottom: -90px;
    filter: drop-shadow(0 0 40px rgba(61, 184, 90, 0.5)) drop-shadow(0 0 80px rgba(61, 184, 90, 0.2));
    animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(61, 184, 90, 0.5)) drop-shadow(0 0 80px rgba(61, 184, 90, 0.2)); }
    50%       { filter: drop-shadow(0 0 60px rgba(61, 184, 90, 0.75)) drop-shadow(0 0 110px rgba(61, 184, 90, 0.35)); }
}
.hero-line {
    width: 1px; height: 24px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 4px auto 10px;
    opacity: 0.5;
}
.hero-sub {
    font-size: 1rem; color: var(--text-mid);
    max-width: 480px; margin: 0 auto 24px;
    line-height: 1.8; font-weight: 300;
    letter-spacing: 0.02em;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 36px; border-radius: var(--radius-xs);
    font-weight: 600; font-size: 0.85rem;
    cursor: pointer; transition: all 0.35s;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.btn-glow {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 4px 24px rgba(74,158,96,0.25);
}
.btn-glow:hover {
    box-shadow: 0 6px 36px rgba(74,158,96,0.4);
    transform: translateY(-2px);
}
.btn-outline {
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    background: rgba(201,168,76,0.04);
}
.btn-outline:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(201,168,76,0.15);
    transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* Hero Stats */
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-top: 44px; flex-wrap: wrap;
    background: rgba(26, 36, 24, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(61,184,90,0.18);
    border-radius: var(--radius);
    padding: 24px 40px;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
    margin-top: 44px;
}
.stat-item { text-align: center; flex: 1; min-width: 100px; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 800;
    color: var(--green-light);
    letter-spacing: -0.02em;
}
.stat-text {
    font-size: 0.66rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 0.18em;
    margin-top: 4px;
}
.stat-divider {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(212,168,66,0.3), transparent);
    margin: 0 8px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 10px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 5;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll span {
    font-size: 0.6rem; letter-spacing: 0.35em; color: var(--text-dim); text-transform: uppercase;
}
.hero-scroll-arrow {
    color: var(--gold-light);
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50%       { transform: translateY(5px); opacity: 1; }
}


/* ── ALTERNATE SECTION BACKGROUND ── */
.section-alt {
    background: var(--bg-deep);
}
.section-alt .glow-card {
    background: var(--bg-card-2);
}
.section-alt .glow-card:hover {
    background: var(--bg-elevated);
}


/* ══════════════════════════════════════════════════════
   SECTIONS — shared
   ══════════════════════════════════════════════════════ */
.section {
    padding: 120px 0;
    position: relative; overflow: hidden;
}
/* Thin divider line between sections */
.section::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

/* SVG section bg-leaves — hidden */
.section-leaf-bg { display: none; }
.bg-leaf { display: none; }

/* Section headers */
.section-head {
    text-align: center; margin-bottom: 64px;
    position: relative; z-index: 1;
}
.section-head::after {
    content: '';
    display: block;
    width: 44px; height: 2px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 2px;
    margin: 18px auto 0;
}
.section-pre {
    display: inline-block;
    font-size: 0.62rem; letter-spacing: 0.4em;
    color: var(--gold); text-transform: uppercase;
    padding: 6px 18px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    background: rgba(212,168,66,0.07);
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
    color: var(--text-bright); margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.text-glow {
    color: var(--green-light);
    text-shadow: 0 0 40px rgba(74,158,96,0.3);
}
.section-sub {
    color: var(--text-dim); max-width: 460px; margin: 0 auto;
    font-size: 0.9rem; font-weight: 300;
}


/* ── GLOW CARD — premium dark glass panel ── */
.glow-card {
    background: var(--bg-card);
    border: 1px solid rgba(61,184,90,0.16);
    border-radius: var(--radius);
    position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Top shimmer line */
.glow-card::before {
    content: '';
    position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,66,0.2), transparent);
    pointer-events: none; z-index: 1;
    transition: background 0.4s;
}
/* Hover overlay */
.glow-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(61,184,90,0.05), transparent 55%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.glow-card:hover::after { opacity: 1; }
.glow-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(61,184,90,0.45), transparent);
}
.glow-card:hover {
    border-color: rgba(61, 184, 90, 0.35);
    box-shadow: 0 12px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(61,184,90,0.06), 0 0 32px rgba(61,184,90,0.08);
    transform: translateY(-4px);
    background: var(--bg-card-2);
}

/* Card corner leaf deco — PNG */
.card-leaf-deco {
    position: absolute; top: -12px; right: -12px;
    width: 80px; height: 80px;
    pointer-events: none; z-index: 0; overflow: hidden;
    transition: all 0.4s;
}
.card-leaf-deco svg { display: none; }
.card-leaf-deco::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.1;
    filter: sepia(20%) hue-rotate(55deg) brightness(1.1);
    transform: rotate(30deg);
    transition: opacity 0.4s;
}
.glow-card:hover .card-leaf-deco::after { opacity: 0.2; }


/* ── PILLARS ── */
.pillars-row {
    display: flex; flex-direction: row;
    justify-content: center; align-items: stretch;
    flex-wrap: wrap; gap: 16px;
    margin: 48px 0 0;
}
.pillar-banner {
    position: relative;
    flex: 1; min-width: 180px; max-width: 320px;
    padding: 20px 44px;
    text-align: center;
    border: 2px solid var(--green);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-2));
    box-shadow: 0 0 18px rgba(61,184,90,0.15), inset 0 0 20px rgba(61,184,90,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
}
.pillar-banner::before,
.pillar-banner::after {
    content: '❧';
    position: absolute; top: 50%; transform: translateY(-50%);
    color: var(--green); font-size: 1.1rem; opacity: 0.7;
}
.pillar-banner::before { left: 14px; }
.pillar-banner::after  { right: 14px; }
.pillar-banner:hover {
    box-shadow: 0 0 30px rgba(61,184,90,0.4), inset 0 0 24px rgba(61,184,90,0.08);
    transform: scale(1.02);
}
.pillar-banner span {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--green-light);
    text-shadow: 0 0 20px rgba(61,184,90,0.5);
}

/* ── FIND US ── */
.about-findus {
    margin-top: 64px;
    text-align: center;
    padding: 36px 24px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    background: var(--gold-dim);
    max-width: 420px; margin-left: auto; margin-right: auto;
    margin-top: 64px;
}
.findus-label {
    font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 10px;
}
.findus-google {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.findus-phone {
    display: block;
    font-size: 1.4rem; font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.25s;
}
.findus-phone:hover { color: #fff; }

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px; position: relative; z-index: 1;
}
.about-card { padding: 40px 30px; text-align: center; }
.about-icon {
    font-size: 1.9rem;
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(61,184,90,0.08);
    border: 1px solid rgba(61,184,90,0.18);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.4s;
    position: relative; z-index: 1;
}
.about-card:hover .about-icon {
    background: rgba(61,184,90,0.16);
    border-color: rgba(61,184,90,0.4);
    box-shadow: 0 0 24px rgba(61,184,90,0.18);
    transform: scale(1.08);
}
.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em;
    margin-bottom: 12px; color: var(--text-bright);
    position: relative; z-index: 1;
}
.about-card p {
    font-size: 0.84rem; color: var(--text-dim);
    line-height: 1.75; position: relative; z-index: 1;
}


/* ══════════════════════════════════════════════════════
   BUD OF THE WEEK
   ══════════════════════════════════════════════════════ */
.section-botw { position: relative; }
/* PNG leaf behind section */
.section-botw::before {
    content: '';
    position: absolute; top: 50%; left: -80px;
    width: 420px; height: 420px;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.09;
    filter: sepia(20%) hue-rotate(55deg) brightness(1.1);
    transform: translateY(-50%) rotate(-15deg);
    pointer-events: none; z-index: 0;
}

.botw-card {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 44px; padding: 48px;
    align-items: center; position: relative; z-index: 1;
}
.botw-visual { text-align: center; }
.botw-img-wrap {
    position: relative;
    width: 220px; height: 220px;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}
/* Real PNG spinning behind */
.botw-leaf-bg { display: none; }
.botw-img-wrap::before {
    content: '';
    position: absolute; inset: -30px;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: 110%; background-position: center; background-repeat: no-repeat;
    opacity: 0.18;
    filter: sepia(20%) hue-rotate(55deg) brightness(1.1);
    animation: botwSpin 45s linear infinite;
}
@keyframes botwSpin { to { transform: rotate(360deg); } }
.botw-leaf { font-size: 5rem; position: relative; z-index: 2; }
.botw-fire {
    position: absolute; top: 8px; right: 22px; font-size: 1.4rem;
    animation: fireFlicker 2s ease-in-out infinite; z-index: 3;
}
@keyframes fireFlicker {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.2) rotate(10deg); }
}
.botw-badge {
    display: inline-block; font-size: 0.68rem; letter-spacing: 0.1em;
    padding: 5px 14px;
    background: var(--gold-dim); border: 1px solid var(--border-gold);
    border-radius: 50px; color: var(--gold); margin-bottom: 12px;
}
.botw-type {
    display: inline-block; font-size: 0.66rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--green-light);
    padding: 3px 12px; background: rgba(74,158,96,0.1); border-radius: 4px; margin-bottom: 10px;
}
.botw-name {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 800; margin-bottom: 14px;
    color: var(--text-bright); letter-spacing: -0.01em;
}
.botw-desc {
    font-size: 0.84rem; color: var(--text-dim);
    margin-bottom: 24px; line-height: 1.8; font-weight: 300;
}
.botw-bars { margin-bottom: 20px; }
.bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.bar-label { width: 55px; font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.05em; }
.bar-track {
    flex: 1; height: 4px;
    background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden;
}
.bar-fill {
    height: 100%; width: 0; border-radius: 2px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar-val { width: 58px; text-align: right; font-size: 0.72rem; color: var(--text-mid); }
.botw-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.botw-tags span {
    padding: 5px 14px; font-size: 0.7rem; border-radius: 50px;
    background: rgba(74,158,96,0.07); border: 1px solid var(--border);
    color: var(--text-dim); letter-spacing: 0.04em;
}

/* Countdown */
.botw-countdown { text-align: center; margin-top: 40px; position: relative; z-index: 1; }
.botw-countdown p {
    font-size: 0.68rem; color: var(--text-dim);
    letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 16px;
}
.countdown { display: flex; align-items: center; justify-content: center; gap: 8px; }
.cd-block {
    background: var(--bg-card); border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm); padding: 16px 22px;
    text-align: center; min-width: 72px;
}
.cd-block span {
    display: block; font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 800; color: var(--gold-light);
}
.cd-block small { font-size: 0.58rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.15em; }
.cd-sep { font-size: 1.2rem; color: var(--text-dim); font-weight: 300; opacity: 0.5; }


/* ══════════════════════════════════════════════════════
   MENU
   ══════════════════════════════════════════════════════ */
.menu-filters {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px; margin-bottom: 40px; position: relative; z-index: 1;
}
.filter {
    padding: 9px 22px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
    color: var(--text-dim);
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    cursor: pointer; transition: all 0.3s;
}
.filter:hover { color: var(--text-mid); border-color: var(--border); }
.filter.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff; border-color: transparent;
    box-shadow: 0 4px 18px rgba(74,158,96,0.25);
}
.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px; position: relative; z-index: 1;
}
.menu-item { padding: 30px 26px; transition: all 0.4s; position: relative; }
.menu-item.hide {
    opacity: 0; transform: scale(0.92); pointer-events: none;
    position: absolute; visibility: hidden;
}
.mi-emoji {
    font-size: 2rem; margin-bottom: 16px;
    position: relative; z-index: 1;
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.menu-item:hover .mi-emoji { transform: scale(1.18) rotate(-5deg); }
.mi-badge {
    position: absolute; top: 16px; right: 16px;
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em;
    padding: 4px 11px; border-radius: 50px;
    background: rgba(74,158,96,0.1); border: 1px solid rgba(74,158,96,0.2);
    color: var(--green-light); z-index: 1;
}
.mi-badge.gold { background: var(--gold-dim); border-color: var(--border-gold); color: var(--gold); }
.mi-badge.hot  { background: rgba(220,80,60,0.1); border-color: rgba(220,80,60,0.2); color: #e07060; }
.mi-badge.chill { background: rgba(80,140,200,0.08); border-color: rgba(80,140,200,0.18); color: #88b4d4; }
.menu-item h3 {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; margin-bottom: 8px;
    color: var(--text-bright); position: relative; z-index: 1;
}
.menu-item p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.7; position: relative; z-index: 1; }


/* ══════════════════════════════════════════════════════
   STOEP
   ══════════════════════════════════════════════════════ */
.section-stoep { position: relative; }
.section-stoep::before {
    content: '';
    position: absolute; top: -30px; right: -60px;
    width: 360px; height: 360px;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.1;
    filter: sepia(20%) hue-rotate(55deg) brightness(1.1);
    transform: rotate(30deg);
    pointer-events: none; z-index: 0;
}
.stoep-card {
    max-width: 640px; margin: 0 auto;
    padding: 52px 44px; text-align: center; position: relative; z-index: 1;
}
/* Stoep smoke — hidden */
.stoep-smoke { display: none; }
.stoep-icon { font-size: 2.8rem; margin-bottom: 18px; }
.stoep-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    margin-bottom: 14px; color: var(--text-bright);
}
.stoep-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.stoep-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.stoep-tags span {
    padding: 7px 18px; font-size: 0.75rem; border-radius: 50px;
    background: rgba(74,158,96,0.06); border: 1px solid var(--border);
    color: var(--text-dim);
}


/* ══════════════════════════════════════════════════════
   VIBES
   ══════════════════════════════════════════════════════ */
.vibes-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 16px; margin-bottom: 40px; position: relative; z-index: 1;
}
.vibe-card { padding: 36px 30px; position: relative; }
.vibe-num {
    display: block;
    font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
    color: rgba(74,158,96,0.12); line-height: 1;
    margin-bottom: 10px; transition: color 0.4s;
    position: relative; z-index: 1;
}
.vibe-card:hover .vibe-num { color: rgba(74,158,96,0.25); }
.vibe-card h3 {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; margin-bottom: 10px;
    color: var(--text-bright); position: relative; z-index: 1;
}
.vibe-card p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.75; position: relative; z-index: 1; font-weight: 300; }

/* Mood selector */
.mood-box {
    padding: 44px; text-align: center; position: relative; z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
}
.mood-box h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; color: var(--text-bright);
}
.mood-btns { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.mood-btn {
    padding: 10px 20px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 500; cursor: pointer;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s; letter-spacing: 0.03em;
}
.mood-btn:hover { border-color: var(--border); color: var(--text-mid); }
.mood-btn.active {
    background: rgba(74,158,96,0.12); border-color: rgba(74,158,96,0.35);
    color: var(--green-light); box-shadow: 0 4px 16px rgba(74,158,96,0.12);
}
.mood-result {
    font-size: 0.86rem; color: var(--text-mid);
    line-height: 1.8; min-height: 72px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 300;
}


/* ══════════════════════════════════════════════════════
   MEMBERSHIP
   ══════════════════════════════════════════════════════ */
.section-membership { position: relative; }
.section-membership::before {
    content: '';
    position: absolute; bottom: -50px; right: -50px;
    width: 360px; height: 360px;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.1;
    filter: sepia(20%) hue-rotate(55deg) brightness(1.1);
    transform: rotate(18deg);
    pointer-events: none; z-index: 0;
}
.membership-wrap {
    padding: 40px 36px; position: relative; z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    height: 100%;
}
.membership-leaf-deco {
    position: absolute; top: -20px; right: -12px;
    width: 110px; height: 110px;
    pointer-events: none; overflow: hidden;
}
.membership-leaf-deco svg { display: none; }
.membership-leaf-deco::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.14;
    filter: sepia(20%) hue-rotate(55deg) brightness(1.1);
    transform: rotate(20deg);
}

/* Club hours bar */
.club-hours {
    max-width: 100%; margin: 0 auto 24px;
    padding: 20px 28px;
    display: flex; align-items: center; gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
}
.club-hours-icon { font-size: 1.6rem; flex-shrink: 0; }
.club-hours strong { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.club-hours p { font-size: 0.88rem; color: var(--text-mid); }

/* Two-column membership layout */
.membership-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Rules box */
.rules-wrap {
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    height: 100%;
}
.rules-title {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 700;
    color: var(--green-light); letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 22px;
    text-align: center;
}
.rules-list {
    list-style: none; padding: 0; margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 9px;
}
.rules-list li {
    font-size: 0.85rem; color: var(--text-mid); line-height: 1.5;
    padding-left: 18px; position: relative;
}
.rules-list li::before {
    content: '•';
    position: absolute; left: 0;
    color: var(--green); font-size: 1rem;
}
.rules-notice {
    font-size: 0.78rem; color: var(--text-dim);
    line-height: 1.7; border-top: 1px solid var(--border);
    padding-top: 16px; margin-top: 8px;
}

.membership-perks {
    display: flex; justify-content: center; gap: 32px;
    flex-wrap: wrap; margin-bottom: 36px;
}
.perk { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-dim); }
.perk span { font-size: 1.1rem; }


/* ══════════════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { margin-bottom: 12px; }
.form-field label { display: block; font-size: 0.72rem; color: var(--text-dim); margin-bottom: 7px; letter-spacing: 0.08em; text-transform: uppercase; }
input[type="text"], input[type="tel"], input[type="email"], input[type="date"],
select, textarea {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: 2px solid rgba(61,184,90,0.22);
    border-radius: var(--radius-xs);
    color: var(--text); font-size: 0.88rem; transition: all 0.3s;
    letter-spacing: 0.01em;
}
input:focus, select:focus, textarea:focus {
    border-color: rgba(61,184,90,0.35);
    border-bottom-color: var(--green);
    box-shadow: 0 0 0 3px rgba(61,184,90,0.1), 0 0 20px rgba(61,184,90,0.06);
    background: rgba(61,184,90,0.05);
    outline: none;
}
select { cursor: pointer; }
select option { background: var(--bg); color: var(--text); }
textarea { resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 22px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.form-check span { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }


/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; position: relative; z-index: 1; }
.contact-form-wrap { padding: 42px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-map {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 30px rgba(61,184,90,0.12);
}
.contact-map iframe { display: block; width: 100%; height: 340px; border: 0; }
.info-card {
    display: flex; align-items: center; gap: 16px; padding: 20px 22px;
    transition: all 0.3s;
}
.info-card:hover { transform: translateX(4px); }
.info-icon {
    font-size: 1.5rem;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(61,184,90,0.08);
    border: 1px solid rgba(61,184,90,0.18);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
}
.info-card:hover .info-icon {
    background: rgba(61,184,90,0.16);
    border-color: rgba(61,184,90,0.4);
    box-shadow: 0 0 16px rgba(61,184,90,0.15);
}
.info-card strong { display: block; font-size: 0.82rem; margin-bottom: 3px; color: var(--text-bright); letter-spacing: 0.04em; }
.info-card p { font-size: 0.78rem; color: var(--text-dim); }


/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
    position: relative; padding: 56px 0 30px;
    border-top: 1px solid rgba(201,168,76,0.1); overflow: hidden;
}
/* Footer tiled leaf */
.footer::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('Assets/Weed_Leaf.png');
    background-size: 90px; background-repeat: repeat;
    opacity: 0.04;
    filter: sepia(20%) hue-rotate(55deg) brightness(1.1);
    pointer-events: none;
}
/* SVG leaf strip — hidden */
.footer-leaf-strip { display: none; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-logo { width: 44px; filter: drop-shadow(0 0 12px rgba(74,158,96,0.35)); }
.footer-brand p { font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.78rem; color: var(--text-dim); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { font-size: 0.7rem; color: var(--text-dim); }
.footer-small { margin-top: 5px; font-size: 0.62rem !important; opacity: 0.5; }
.footer-credit {
    margin-top: 10px;
    font-size: 0.68rem;
    opacity: 0.55;
    transition: opacity 0.25s;
}
.footer-credit:hover { opacity: 1; }
.footer-credit a {
    color: var(--green-light);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.25s;
}
.footer-credit a:hover { color: var(--gold-light); }


/* ══════════════════════════════════════════════════════
   WHATSAPP
   ══════════════════════════════════════════════════════ */
.whatsapp-btn {
    position: fixed; bottom: 24px; left: 24px;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; z-index: 9000; transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(37,211,102,0.3);
    animation: waPulse 4s ease-in-out infinite;
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.3); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.55); }
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 36px rgba(37,211,102,0.55); }


/* ══════════════════════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════════════════════ */
.back-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    background: var(--bg-card); border: 1px solid var(--border-gold);
    border-radius: 50%; font-size: 1.1rem; cursor: pointer;
    z-index: 9000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: all 0.3s;
    color: var(--gold-light);
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.15);
    transform: translateY(-3px);
}


/* ══════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════ */
.toast-container { position: fixed; bottom: 88px; right: 24px; z-index: 10001; display: flex; flex-direction: column; gap: 8px; }
.toast {
    padding: 13px 22px;
    background: rgba(12,18,11,0.96); backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold); border-radius: var(--radius-sm);
    font-size: 0.82rem; color: var(--gold-light);
    box-shadow: 0 4px 24px rgba(201,168,76,0.12);
    animation: toastIn 0.4s ease;
}
.toast.out { animation: toastOut 0.3s ease forwards; }
@keyframes toastIn  { from { opacity: 0; transform: translateY(16px); } }
@keyframes toastOut { to   { opacity: 0; transform: translateY(-8px); } }


/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(8,11,7,0.99); backdrop-filter: blur(30px);
        flex-direction: column; padding: 80px 28px 28px; gap: 2px;
        transition: right 0.4s; border-left: 1px solid rgba(201,168,76,0.1);
    }
    .nav-menu.open { right: 0; }
    .nav-toggle { display: flex; }
    .nav-link { padding: 14px 14px; font-size: 0.95rem; }
    .nav-phone { display: none; }
    .nav-cta { display: none; }
    .botw-card { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 22px; text-align: center; }
    .footer-nav { justify-content: center; }
    .hero-bg::before { width: 300px; height: 300px; }
    .hero-bg::after  { width: 340px; height: 340px; }
    .section-botw::before { width: 280px; height: 280px; }
    .section-stoep::before { width: 240px; height: 240px; }
}

@media (max-width: 640px) {
    .section { padding: 80px 0; }
    .hero { padding: 110px 16px 70px; }
    .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }
    .hero-stats { gap: 22px; }
    .stat-num { font-size: 1.7rem; }
    .form-row { grid-template-columns: 1fr; }
    .membership-cols { grid-template-columns: 1fr; }
    .membership-wrap { padding: 36px 22px; }
    .rules-wrap { padding: 32px 22px; }
    .stoep-card { padding: 38px 22px; }
    .botw-card { padding: 30px 22px; }
    .contact-form-wrap { padding: 28px 20px; }
    .mood-btns { gap: 6px; }
    .mood-btn { padding: 8px 14px; font-size: 0.78rem; }
    .cd-block { padding: 12px 14px; min-width: 56px; }
    .cd-block span { font-size: 1.3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .vibes-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .hero-bg::before { width: 200px; height: 200px; opacity: 0.07; }
    .hero-bg::after  { width: 220px; height: 220px; opacity: 0.1; }
    .section-botw::before { width: 180px; height: 180px; }
    .section-stoep::before { width: 160px; height: 160px; }
    .section-membership::before { width: 180px; height: 180px; }
}
