/* ============================================
   121212.events — The Ecosystem's Event Hub
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Cormorant+Garamond:wght@400;600;700&display=swap');

:root {
  --bg:           #0B0A0F;
  --surface:      #131118;
  --surface-2:    #1A1820;
  --surface-3:    #222030;
  --surface-4:    #2A2838;

  --border:       #242232;
  --border-light: #343250;

  --gold:         #F59E0B;
  --gold-light:   #FCD34D;
  --gold-dim:     #78350F;
  --gold-glow:    rgba(245, 158, 11, 0.2);

  --crimson:      #C41E3A;
  --crimson-dark: #8B1528;

  --purple:       #7B2FBE;
  --purple-light: #A855F7;
  --purple-dim:   #3D1672;

  --green:        #22C55E;
  --green-dim:    #14532D;

  --text:         #F4EDE8;
  --text-dim:     #8880A0;
  --text-muted:   #48446A;

  --white:        #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed; top: 60px; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--crimson) 100%);
  z-index: 999; transition: width 0.1s linear;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; width: 100%;
  background: rgba(11,10,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; z-index: 1000;
  height: 60px; display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(245,158,11,0.08); }

.nav-content {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}
.logo .star { color: var(--gold); }
.logo span  { color: var(--gold-light); font-style: italic; }

.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gold) !important; color: var(--bg) !important;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  transition: background 0.2s, transform 0.2s !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px var(--gold-glow); }
.btn-primary { background: var(--crimson); color: var(--white); }
.btn-primary:hover { background: #e02244; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text-dim); border: 1px solid var(--border-light); }
.btn-secondary:hover { background: var(--surface-2); color: var(--text); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-ticket {
  background: var(--gold); color: var(--bg);
  padding: 0.5rem 1.1rem; border-radius: 7px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all 0.2s; white-space: nowrap;
}
.btn-ticket:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px var(--gold-glow); }
.btn-ticket.free {
  background: rgba(34,197,94,0.12); color: var(--green);
  border: 1px solid var(--green-dim);
}
.btn-ticket.free:hover { background: rgba(34,197,94,0.2); }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 100px;
}
.badge-gold    { background: rgba(245,158,11,0.15);  color: var(--gold);         border: 1px solid var(--gold-dim); }
.badge-crimson { background: rgba(196,30,58,0.15);   color: #f87171;             border: 1px solid rgba(196,30,58,0.4); }
.badge-green   { background: rgba(34,197,94,0.12);   color: var(--green);        border: 1px solid var(--green-dim); }
.badge-purple  { background: rgba(123,47,190,0.18);  color: var(--purple-light); border: 1px solid var(--purple-dim); }
.badge-dim     { background: var(--surface-3);       color: var(--text-dim);     border: 1px solid var(--border); }

/* ── Section base ── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; color: var(--text); margin-bottom: 0.75rem;
}
.section-subtitle {
  color: var(--text-dim); font-size: 1.05rem; max-width: 560px; line-height: 1.7;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  padding: 7rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface-2); border: 1px solid var(--border-light);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.75rem;
}
.eyebrow-star { color: var(--gold); font-size: 0.8rem; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 700;
  line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.hero h1 .accent-gold    { color: var(--gold); }
.hero h1 .accent-crimson { color: var(--crimson); }
.hero h1 .accent-purple  { color: var(--purple-light); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-dim);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-cities {
  margin-top: 3.5rem;
  font-family: monospace; font-size: 0.8rem;
  color: var(--text-muted); letter-spacing: 0.04em;
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
}
.hero-cities span { color: var(--gold-light); }

/* ── Stats ── */
.stats-wrapper {
  padding: 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; }

/* ── Event Cards ── */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.events-grid-2 { grid-template-columns: repeat(2, 1fr); }

.event-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.25s; cursor: pointer;
  display: flex; flex-direction: column;
}
.event-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.5); }
.event-card.featured { border-color: var(--gold-dim); }
.event-card.featured:hover { box-shadow: 0 16px 50px rgba(245,158,11,0.15); }

.event-card-top {
  padding: 1.4rem 1.4rem 1rem;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
  position: relative;
}
.event-emoji-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--surface-3); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 0.9rem;
}
.event-card-badges {
  display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.8rem;
}
.event-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--text);
  line-height: 1.3; margin-bottom: 0.4rem;
}
.event-venue {
  font-size: 0.78rem; color: var(--text-dim); line-height: 1.4;
}
.event-city-tag {
  font-size: 0.68rem; color: var(--text-muted); margin-top: 0.2rem;
}

.event-card-body {
  padding: 1rem 1.4rem 1.1rem; flex: 1;
}
.event-desc {
  font-size: 0.82rem; color: var(--text-dim); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

.event-card-footer {
  padding: 0.85rem 1.4rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.event-date-price { display: flex; flex-direction: column; gap: 0.2rem; }
.event-date {
  font-size: 0.8rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 0.35rem;
}
.event-date-icon { font-size: 0.75rem; }
.event-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; color: var(--gold);
}
.event-price.free { color: var(--green); }

/* ── Featured Event (wide card) ── */
.featured-event {
  background: var(--surface); border: 1px solid var(--gold-dim);
  border-radius: 20px; overflow: hidden; margin-bottom: 1.5rem;
  display: grid; grid-template-columns: 1fr 2fr;
}
.featured-event-left {
  background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, var(--surface-2) 100%);
  border-right: 1px solid var(--border); padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-event-right { padding: 2.5rem; }
.featured-event-emoji {
  width: 80px; height: 80px; border-radius: 16px;
  background: var(--surface-3); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.75rem; margin-bottom: 1.25rem;
}
.featured-event-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700;
  color: var(--text); line-height: 1.2; margin-bottom: 0.5rem;
}
.featured-event-venue {
  font-size: 0.85rem; color: var(--text-dim); margin-bottom: 0.3rem;
}
.featured-event-city {
  font-size: 0.78rem; color: var(--text-muted);
}
.featured-event-desc {
  font-size: 0.925rem; color: var(--text-dim);
  line-height: 1.8; margin: 1.25rem 0 1.5rem;
}
.featured-event-meta {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}
.featured-meta-item {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.featured-meta-val {
  font-size: 0.9rem; font-weight: 700; color: var(--text);
}
.featured-meta-lbl {
  font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em;
}

/* ── Category Grid ── */
.categories-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 2.5rem; }

.category-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem 1rem; text-align: center;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.category-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.category-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.category-card:hover::before { opacity: 1; }

.category-icon  { font-size: 1.75rem; margin-bottom: 0.6rem; display: block; }
.category-name  { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.category-count { font-size: 0.68rem; color: var(--text-muted); }

/* ── City Spotlight ── */
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.city-grid-sm { grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1.5rem; }

.city-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
  text-decoration: none; transition: all 0.25s;
}
.city-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,47,190,0.08), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.city-card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.city-card:hover::before { opacity: 1; }
.city-card-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; line-height: 1; }
.city-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem;
}
.city-card-state { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.city-event-count { font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.city-event-tags {
  display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.75rem;
}
.city-event-tag {
  font-size: 0.65rem; padding: 0.2rem 0.55rem; border-radius: 100px;
  background: var(--surface-3); border: 1px solid var(--border);
  color: var(--text-muted); font-weight: 600;
}

.city-card-sm {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.1rem; text-align: center;
  text-decoration: none; transition: all 0.2s;
}
.city-card-sm:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.city-card-sm-emoji { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.city-card-sm-name { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.city-card-sm-count { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Browse / Filter ── */
.browse-filters {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 0; position: sticky; top: 60px; z-index: 100;
}
.filter-row {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter-group {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-right: 1px solid var(--border);
  white-space: nowrap; flex-shrink: 0;
}
.filter-group:last-child { border-right: none; }
.filter-label {
  font-size: 0.65rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.filter-btn {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim);
  font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 100px;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.03em; white-space: nowrap;
}
.filter-btn:hover { color: var(--text); border-color: var(--border-light); }
.filter-btn.active { background: rgba(245,158,11,0.12); color: var(--gold); border-color: var(--gold-dim); }

.browse-section { padding: 3rem 2rem 6rem; }
.browse-inner { max-width: 1280px; margin: 0 auto; }
.browse-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.browse-count { font-size: 0.85rem; color: var(--text-dim); }
.browse-count span { color: var(--text); font-weight: 700; }

.no-results {
  text-align: center; padding: 5rem 2rem; color: var(--text-muted);
  display: none;
}
.no-results-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.no-results p { font-size: 0.95rem; }

/* ── Submit / Event Form ── */
.submit-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; padding: 5rem 2rem 7rem; max-width: 1100px; margin: 0 auto; }
.submit-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.submit-info p { font-size: 0.925rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 1.5rem; }
.perks-list { display: flex; flex-direction: column; gap: 0.9rem; }
.perk-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.perk-icon { font-size: 1.1rem; min-width: 1.4rem; text-align: center; margin-top: 0.1rem; }
.perk-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 0.15rem; }
.perk-item p  { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }
.submit-form-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.submit-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface-2); border: 1px solid var(--border-light);
  border-radius: 8px; padding: 0.75rem 1rem; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.875rem; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--surface-2); }

/* ── About ── */
.page-hero { padding: 8rem 2rem 4rem; text-align: center; background: var(--surface); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 65%); pointer-events: none; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--text); margin-bottom: 1rem; position: relative; }
.page-hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 540px; margin: 0 auto; line-height: 1.7; position: relative; }
.section-label-page { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block; position: relative; }
.about-section { padding: 5rem 2rem 7rem; }
.about-inner { max-width: 900px; margin: 0 auto; }
.about-lead { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: var(--text); line-height: 1.6; margin-bottom: 2.5rem; border-left: 3px solid var(--gold); padding-left: 1.5rem; }
.about-body p { font-size: 0.975rem; color: var(--text-dim); line-height: 1.85; margin-bottom: 1.25rem; }
.about-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 0.75rem; }

/* ── CTA ── */
.cta-section { padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%); pointer-events: none; }
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; }
.cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 1.25rem; }
.cta-inner p { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-muted); }

/* ── Legal ── */
.legal-section { padding: 5rem 2rem 7rem; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 0.75rem; }
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner p, .legal-inner li { font-size: 0.925rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-inner ul, .legal-inner ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-inner a { color: var(--gold-light); text-decoration: none; }
.legal-inner a:hover { text-decoration: underline; }
.legal-date { display: inline-block; font-size: 0.78rem; color: var(--text-muted); background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: 0.3rem 0.75rem; margin-bottom: 2rem; }

/* ── Footer ── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; margin-top: 0.85rem; max-width: 280px; }
.footer-contact { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-contact a { font-size: 0.78rem; color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.84rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 0.73rem; color: var(--text-muted); line-height: 1.7; }
.footer-ecosystem { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-ecosystem a { font-size: 0.68rem; color: var(--text-muted); text-decoration: none; border: 1px solid var(--border); border-radius: 100px; padding: 0.2rem 0.6rem; transition: all 0.2s; font-family: monospace; }
.footer-ecosystem a:hover { color: var(--gold-light); border-color: var(--gold-dim); }

/* ── Mobile ── */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .city-grid-sm   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .stats           { grid-template-columns: repeat(2, 1fr); }
  .category-grid   { grid-template-columns: repeat(3, 1fr); }
  .events-grid     { grid-template-columns: repeat(2, 1fr); }
  .featured-event  { grid-template-columns: 1fr; }
  .featured-event-left { border-right: none; border-bottom: 1px solid var(--border); }
  .city-grid       { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .submit-grid     { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem 5rem; }
  .city-grid-sm    { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; gap: 1.25rem; z-index: 999; }
  .nav-hamburger { display: flex; }
  .stats         { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid   { grid-template-columns: 1fr; }
  .city-grid-sm  { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row      { grid-template-columns: 1fr; }
  .hero-cities   { flex-direction: column; gap: 0.5rem; }
  .filter-row    { flex-direction: column; align-items: flex-start; }
  .filter-group  { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
}
