
:root {
  --bg: #0a0a0b; --bg-card: #12101a; --bg-el: #1a1525;
  --bx: #8b1a4a; --bx-l: #c9184a;
  --vi: #6b21a8; --vi-d: #2d1650; --gold: #d4a574;
  --txt: #e8e0ef; --tx-m: #9b8fb0; --tx-d: #6b5f80;
  --wh: #f5f0fa; --brd: #2a2040;
  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Outfit', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--txt); font-family: var(--font-b); overflow-x: hidden; line-height: 1.6; }
::selection { background: rgba(139,26,74,.5); color: var(--wh); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brd); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(139,26,74,.5); }
img { max-width: 100%; height: auto; display: block; }
input, textarea { font-family: var(--font-b); }
input:focus, textarea:focus { border-color: var(--bx) !important; outline: none; }
a { color: var(--bx-l); text-decoration: none; transition: color .2s; }
a:hover { color: var(--wh); }

/* Age Gate */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0a0a0b 0%, #1a0a20 50%, #0a0a0b 100%);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.age-box {
  text-align: center; max-width: 500px; padding: 60px 40px;
  border: 1px solid rgba(139,26,74,.25); border-radius: 16px;
  background: linear-gradient(180deg, var(--bg-el) 0%, var(--bg) 100%);
  box-shadow: 0 0 80px rgba(139,26,74,.08);
}
.age-box .brand { color: var(--wh); font-family: var(--font-h); font-size: 36px; font-weight: 300; letter-spacing: 4px; margin-bottom: 8px; }
.age-box .line { width: 60px; height: 1px; background: var(--bx); margin: 16px auto 24px; }
.age-box p { color: var(--tx-m); font-size: 18px; line-height: 1.7; margin-bottom: 32px; }
.age-box .small { font-size: 13px; color: var(--tx-d); margin-top: 24px; margin-bottom: 0; }
.age-icon { font-size: 64px; margin-bottom: 24px; opacity: .7; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 36px; font-size: 15px; border-radius: 8px;
  cursor: pointer; font-family: var(--font-b); font-weight: 500; letter-spacing: 1px;
  transition: all .3s ease; border: none; text-decoration: none; text-align: center;
}
.btn-primary { background: linear-gradient(135deg, var(--bx), var(--bx-l)); color: var(--wh); box-shadow: 0 4px 20px rgba(139,26,74,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,26,74,.4); color: var(--wh); }
.btn-secondary { background: transparent; color: var(--wh); border: 1px solid var(--bx); }
.btn-secondary:hover { background: rgba(139,26,74,.1); color: var(--wh); }

/* Header */
header.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,11,.93); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--brd);
}
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo:hover { color: inherit; }
.logo-icon { font-size: 28px; color: var(--bx-l); }
.logo-text { font-family: var(--font-h); font-size: 22px; color: var(--wh); font-weight: 300; letter-spacing: 3px; }
.desktop-nav { display: flex; gap: 4px; align-items: center; }
.nav-link {
  background: transparent; color: var(--tx-m); border: none;
  padding: 8px 14px; font-size: 13px; cursor: pointer;
  border-radius: 6px; font-family: var(--font-b); white-space: nowrap; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.nav-link:hover { color: var(--wh); background: rgba(139,26,74,.15); }
.nav-link[aria-current="page"] { background: rgba(139,26,74,.2); color: var(--bx-l); }
.more-wrap { position: relative; }
.more-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: var(--bg-el); border: 1px solid var(--brd);
  border-radius: 12px; padding: 8px; min-width: 220px;
  box-shadow: 0 20px 60px rgba(10,10,11,.8);
}
.more-dropdown.open { display: block; }
.more-dropdown .nav-link { display: block; width: 100%; text-align: left; padding: 10px 16px; font-size: 14px; border-radius: 8px; }
.mobile-toggle { display: none; background: transparent; border: none; color: var(--wh); font-size: 28px; cursor: pointer; padding: 8px; }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,11,.97); backdrop-filter: blur(20px);
  padding: 24px; overflow-y: auto; z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-link { display: block; width: 100%; text-align: left; padding: 16px 20px; font-size: 17px; margin-bottom: 4px; border-radius: 10px; }
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: block !important; }
}

/* Main + page layout */
main { padding-top: 72px; }
.page-wrap { max-width: 900px; margin: 0 auto; padding: 60px 24px 80px; }
.page-wide { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.breadcrumb { font-size: 13px; color: var(--tx-d); margin-bottom: 32px; font-family: var(--font-b); }
.breadcrumb a { color: var(--tx-m); }
.breadcrumb a:hover { color: var(--bx-l); }

/* Typography */
.section-label { color: var(--bx-l); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; font-family: var(--font-b); }
h1.page-title {
  color: var(--wh); font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 52px); font-weight: 300;
  line-height: 1.2; margin-bottom: 16px;
}
.title-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--bx), transparent); margin-bottom: 48px; }
h2 { color: var(--wh); font-family: var(--font-h); font-size: 28px; font-weight: 400; margin: 48px 0 20px; letter-spacing: 1px; }
h3 { color: var(--gold); font-family: var(--font-h); font-size: 22px; font-weight: 400; margin: 32px 0 14px; }
.content p { margin-bottom: 18px; font-size: 16px; line-height: 1.85; font-weight: 300; }
.content ul, .content ol { margin: 0 0 18px 24px; }
.content li { margin-bottom: 8px; line-height: 1.7; }
.divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--brd), transparent); margin: 48px 0; }
.info-box {
  background: rgba(107,33,168,.06); border: 1px solid rgba(107,33,168,.2);
  border-radius: 12px; padding: 24px 28px; margin: 24px 0;
  font-size: 15px; line-height: 1.8; font-weight: 300;
}
.info-box.warning { background: rgba(139,26,74,.08); border-color: rgba(139,26,74,.25); }
.info-box strong { color: var(--wh); }
.related-links {
  margin-top: 48px; padding: 32px; background: var(--bg-card); border: 1px solid var(--brd); border-radius: 16px;
}
.related-links h3 { color: var(--wh); margin-top: 0; }
.related-links ul { list-style: none; margin: 0; padding: 0; }
.related-links li { margin: 8px 0; padding-left: 24px; position: relative; }
.related-links li::before { content: "→"; position: absolute; left: 0; color: var(--bx-l); }

/* Hero */
.hero {
  min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px; position: relative;
  background: radial-gradient(ellipse at 50% 30%, rgba(45,22,80,.19) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(139,26,74,.09) 0%, transparent 50%), var(--bg);
}
.hero-badge {
  display: inline-block; margin-bottom: 32px;
  background: rgba(139,26,74,.12); border: 1px solid rgba(139,26,74,.25);
  padding: 8px 24px; border-radius: 30px; font-size: 13px; color: var(--bx-l); letter-spacing: 2px;
}
.hero h1 {
  font-family: var(--font-h); font-size: clamp(40px, 8vw, 72px);
  font-weight: 300; color: var(--wh); line-height: 1.1; margin-bottom: 24px; letter-spacing: 2px;
}
.hero p { font-size: clamp(16px, 2.5vw, 20px); color: var(--tx-m); line-height: 1.7; font-weight: 300; max-width: 560px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Consent Banner */
.consent-banner {
  padding: 60px 24px; text-align: center;
  background: linear-gradient(135deg, rgba(139,26,74,.06), rgba(45,22,80,.09));
  border-top: 1px solid rgba(139,26,74,.12); border-bottom: 1px solid rgba(139,26,74,.12);
}
.consent-banner h2 { color: var(--wh); font-family: var(--font-h); font-size: 28px; font-weight: 300; margin: 0 0 16px; border: none; }
.consent-banner p { color: var(--tx-m); font-size: 16px; line-height: 1.8; font-weight: 300; max-width: 700px; margin: 0 auto; }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.value-card { background: var(--bg-card); border: 1px solid var(--brd); border-radius: 16px; padding: 36px 28px; text-align: center; }
.value-card .icon { font-size: 32px; margin-bottom: 16px; color: var(--bx-l); }
.value-card h3 { color: var(--wh); font-family: var(--font-h); font-size: 20px; font-weight: 400; margin: 0 0 10px; }
.value-card p { color: var(--tx-m); font-size: 14px; line-height: 1.7; font-weight: 300; margin: 0; }

/* Events */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.event-card {
  border: 1px solid var(--brd); border-radius: 16px; padding: 28px;
  cursor: pointer; transition: all .3s ease; position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10,10,11,.5); color: inherit; }
.event-card.featured { border-color: rgba(139,26,74,.4); }
.event-card .badge-f {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--bx), var(--bx-l));
  color: var(--wh); font-size: 11px; padding: 4px 12px; border-radius: 20px;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.event-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.event-tag { font-size: 12px; padding: 3px 10px; border-radius: 20px; }
.event-tag.type { background: rgba(107,33,168,.15); color: var(--tx-m); }
.event-tag.date { background: rgba(139,26,74,.12); color: var(--tx-m); }
.event-card h3 { color: var(--wh); font-family: var(--font-h); font-size: 24px; font-weight: 400; margin: 0 0 10px; line-height: 1.3; }
.event-card .desc { color: var(--tx-m); font-size: 14px; margin-bottom: 12px; line-height: 1.6; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--tx-d); font-size: 13px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0; }
.filter-btn {
  background: var(--bg-el); color: var(--tx-m);
  border: 1px solid var(--brd); padding: 8px 18px; font-size: 14px;
  border-radius: 24px; cursor: pointer; font-family: var(--font-b); transition: all .2s;
}
.filter-btn.active { background: rgba(139,26,74,.25); color: var(--bx-l); border-color: rgba(139,26,74,.4); }

/* Event detail page */
.event-hero { padding: 40px 0; }
.event-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 32px 0; }
.event-meta-item { padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--brd); border-radius: 12px; }
.event-meta-item .label { color: var(--tx-d); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.event-meta-item .val { color: var(--txt); font-size: 15px; }
.event-org-box { padding: 20px 24px; background: rgba(139,26,74,.06); border: 1px solid rgba(139,26,74,.2); border-radius: 12px; margin-top: 24px; color: var(--tx-m); font-size: 14px; }
.event-org-box strong { color: var(--txt); }

/* Glossary */
.glossary-search {
  width: 100%; padding: 14px 20px; background: var(--bg-card);
  border: 1px solid var(--brd); border-radius: 10px; color: var(--txt);
  font-size: 16px; margin: 32px 0;
}
.glossary-item { padding: 24px 0; border-bottom: 1px solid rgba(42,32,64,.4); }
.glossary-item h3 { color: var(--bx-l); font-family: var(--font-h); font-size: 22px; font-weight: 500; margin: 0 0 8px; }
.glossary-item p { color: var(--tx-m); font-size: 15px; line-height: 1.7; font-weight: 300; margin: 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(42,32,64,.4); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer; text-align: left;
}
.faq-q span:first-child { color: var(--wh); font-size: 17px; font-family: var(--font-h); font-weight: 400; flex: 1; padding-right: 16px; }
.faq-q .icon { color: var(--tx-d); font-size: 20px; transition: transform .3s; }
.faq-q.open span:first-child { color: var(--bx-l); }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--tx-m); font-size: 15px; line-height: 1.8; font-weight: 300; }
.faq-a.open { display: block; }

/* Forms */
.form-label { display: block; color: var(--tx-m); font-size: 13px; margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 14px 18px; background: var(--bg-card);
  border: 1px solid var(--brd); border-radius: 10px; color: var(--txt);
  font-size: 15px; margin-bottom: 16px;
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; margin-bottom: 12px; }
.form-check input { margin-top: 4px; }
.form-check span { color: var(--tx-m); font-size: 14px; }
.form-success {
  background: rgba(107,33,168,.09); border: 1px solid rgba(107,33,168,.25);
  border-radius: 16px; padding: 40px; text-align: center; display: none;
}
.form-success.open { display: block; }
.form-success h3 { color: var(--wh); font-family: var(--font-h); font-size: 24px; margin-bottom: 12px; border: none; }
.form-success p { color: var(--tx-m); font-size: 15px; }

/* CTA */
.cta-section { padding: 80px 24px; text-align: center; background: linear-gradient(135deg, rgba(45,22,80,.12), rgba(139,26,74,.06)); }
.cta-section h2 { color: var(--wh); font-family: var(--font-h); font-size: 32px; font-weight: 300; margin: 0 0 16px; border: none; }
.cta-section p { color: var(--tx-m); font-size: 16px; font-weight: 300; max-width: 500px; margin: 0 auto 32px; }

/* Footer */
footer.site-footer { border-top: 1px solid var(--brd); padding: 60px 24px 40px; background: linear-gradient(180deg, var(--bg) 0%, #08070e 100%); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-grid h3 { color: var(--wh); font-family: var(--font-h); font-size: 22px; font-weight: 300; letter-spacing: 2px; margin: 0 0 16px; border: none; }
.footer-grid h4 { color: var(--tx-m); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid p { color: var(--tx-d); font-size: 14px; line-height: 1.7; }
.footer-link { display: block; color: var(--tx-d); font-size: 14px; padding: 4px 0; text-decoration: none; }
.footer-link:hover { color: var(--bx-l); }
.footer-bottom {
  border-top: 1px solid var(--brd); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { color: var(--tx-d); font-size: 13px; }

/* Event card BG colors */
.ev-bg-v { background: linear-gradient(135deg, #1a0520, #2d0a3e, #1a0520); }
.ev-bg-r { background: linear-gradient(135deg, #1a1508, #2d2510, #1a1508); }
.ev-bg-q { background: linear-gradient(135deg, #0a1520, #102a3e, #0a1520); }
.ev-bg-b { background: linear-gradient(135deg, #1a0a10, #2d1020, #1a0a10); }
.ev-bg-m { background: linear-gradient(135deg, #15100a, #2d2015, #15100a); }
.ev-bg-c { background: linear-gradient(135deg, #0a1a10, #102d18, #0a1a10); }

@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: 0; }
  .page-wrap { padding: 40px 20px 60px; }
}
