/* =========================================================================
   West 8 — DTLA Nightclub. Design system.
   Dark, premium, neon. Mobile-first. Built for Core Web Vitals.
   ========================================================================= */

/* ---- tokens ---- */
:root {
  --ink: #08080a;
  --surface: #111016;
  --surface-2: #1a1922;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f3ef;
  --muted: #a39fad;
  --muted-2: #8d8997;

  --brand: #ff2e7e;       /* hot magenta */
  --brand-2: #7b5cff;     /* electric violet */
  --brand-ink: #ffffff;
  --glow: 0 0 40px rgba(255, 46, 126, 0.35);
  --grad: linear-gradient(115deg, var(--brand) 0%, var(--brand-2) 100%);
  --grad-soft: linear-gradient(180deg, rgba(123, 92, 255, 0.12), rgba(255, 46, 126, 0.08));

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);

  --font-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* fluid type scale */
  --fs-hero: clamp(3.4rem, 12vw, 11rem);
  --fs-h1: clamp(2.4rem, 6vw, 4.6rem);
  --fs-h2: clamp(1.9rem, 4.2vw, 3.2rem);
  --fs-h3: clamp(1.25rem, 2.4vw, 1.7rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.3rem);
  --fs-body: 1.02rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.76rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul[role="list"] { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* ---- typography ---- */
h1, h2, h3, h4 { line-height: 1.04; font-weight: 400; letter-spacing: 0.01em; }
.display { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brand); display: inline-block; }
.lead { font-size: var(--fs-lead); color: var(--muted); max-width: 60ch; }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- layout ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1480px; }
.section { padding-block: var(--section-y); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: var(--fs-h2); margin-top: 0.8rem; }
.center { text-align: center; margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: var(--brand-ink); box-shadow: var(--glow); }
.btn-primary:hover { box-shadow: 0 0 60px rgba(255, 46, 126, 0.5); }
.btn-ghost { background: rgba(255, 255, 255, 0.04); border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: var(--text); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* ---- header ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1rem;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 0.6rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase; }
.brand .mark { color: var(--brand); }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad); transition: width 0.25s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; background: none; border: 0; cursor: pointer; z-index: 120;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 0.4rem;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform 0.45s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3.2rem); text-transform: uppercase; color: var(--text); padding-block: 0.3rem; opacity: 0.85; }
.mobile-menu a:hover { color: var(--brand); }
.mobile-menu .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ---- hero ---- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.2) 35%, rgba(8, 8, 10, 0.85) 88%, var(--ink) 100%);
}
.hero-glow { position: absolute; z-index: -1; width: 60vw; height: 60vw; border-radius: 50%; filter: blur(120px); opacity: 0.4; background: var(--grad); top: -10%; right: -10%; pointer-events: none; }
.hero-inner { padding-bottom: clamp(3rem, 8vw, 6rem); padding-top: 8rem; }
.hero h1 { font-size: var(--fs-hero); }
.hero h1 .line { display: block; }
.hero .lead { margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-top: 2.4rem; font-size: var(--fs-sm); color: var(--muted); }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta strong { color: var(--text); font-weight: 600; }
.scroll-cue { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); font-size: var(--fs-xs); letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-2); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-cue::after { content: ""; width: 1px; height: 38px; background: linear-gradient(var(--muted), transparent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---- marquee ---- */
.marquee { border-block: 1px solid var(--line); padding-block: 1rem; overflow: hidden; white-space: nowrap; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; gap: 3rem; animation: scroll 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; letter-spacing: 0.05em; color: var(--muted); display: inline-flex; align-items: center; gap: 3rem; }
.marquee span::after { content: "✦"; color: var(--brand); }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- stats ---- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--surface); padding: clamp(1.5rem, 4vw, 2.6rem); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1; }
.stat .label { color: var(--muted); font-size: var(--fs-sm); margin-top: 0.5rem; }

/* ---- event cards ---- */
.events-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.event-card {
  position: relative; display: grid; grid-template-rows: auto 1fr;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.event-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.event-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.event-card:hover .event-media img { transform: scale(1.06); }
.event-media .badge { position: absolute; top: 1rem; left: 1rem; background: var(--ink); color: var(--text); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 999px; border: 1px solid var(--line-strong); }
.event-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.event-genre { color: var(--brand); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.event-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2rem); }
.event-when { color: var(--muted); font-size: var(--fs-sm); display: flex; flex-wrap: wrap; gap: 0.3rem 1rem; }
.event-when strong { color: var(--text); font-weight: 600; }
.event-vibe { color: var(--muted); font-size: 0.95rem; }
.event-dates { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.2rem; }
.event-dates .chip { font-size: var(--fs-xs); padding: 0.3rem 0.65rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); }
.event-foot { margin-top: auto; padding-top: 0.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.event-entry { font-size: var(--fs-xs); color: var(--muted-2); max-width: 22ch; }

/* ---- gallery ---- */
.gallery-grid { columns: 2; column-gap: 1rem; }
.gallery-grid figure { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; position: relative; background: var(--surface-2); }
.gallery-grid img { width: 100%; transition: transform 0.5s var(--ease), filter 0.3s; }
.gallery-grid figure:hover img { transform: scale(1.05); filter: brightness(1.08); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(5, 5, 7, 0.95); display: none; align-items: center; justify-content: center; padding: 1.5rem; backdrop-filter: blur(8px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: 0; color: var(--text); font-size: 2rem; cursor: pointer; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--text); width: 48px; height: 48px; border-radius: 999px; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; }
.lightbox-nav.prev { left: 1rem; } .lightbox-nav.next { right: 1rem; }

/* ---- split / feature ---- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface-2); box-shadow: var(--shadow); }
.split-media img, .split-media video { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 1.2rem; margin-top: 1.6rem; }
.feature-item { display: flex; gap: 0.9rem; }
.feature-item .ico { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); color: var(--brand); }
.feature-item h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.feature-item p { color: var(--muted); font-size: 0.95rem; }

/* ---- info cards / page hero ---- */
.page-hero { padding-top: clamp(8rem, 16vw, 12rem); padding-bottom: clamp(2rem, 5vw, 4rem); position: relative; }
.page-hero::before { content: ""; position: absolute; top: 0; right: 0; width: 50vw; height: 50vw; background: var(--grad); filter: blur(140px); opacity: 0.18; border-radius: 50%; z-index: -1; }
.page-hero h1 { font-size: var(--fs-h1); margin-top: 0.8rem; }
.page-hero .lead { margin-top: 1.2rem; }

.cards { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); transition: border-color 0.3s, transform 0.3s var(--ease); }
.card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.card h3 { font-size: var(--fs-h3); margin-bottom: 0.6rem; }
.card p { color: var(--muted); }
.card .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); color: var(--brand); margin-bottom: 1.1rem; }

/* ---- prose (legal pages) ---- */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--fs-h3); margin-top: 2.4rem; margin-bottom: 0.8rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; margin-bottom: 0.5rem; }
.prose p, .prose li { color: var(--muted); margin-bottom: 0.9rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

/* ---- forms ---- */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: var(--fs-sm); color: var(--muted); font-weight: 500; }
.input, .textarea, .select {
  width: 100%; padding: 0.85rem 1rem; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--text); transition: border-color 0.2s, background 0.2s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--brand); background: rgba(255,255,255,0.03); }
.textarea { min-height: 130px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 0.6rem; font-size: var(--fs-sm); color: var(--muted); }
.checkbox input { margin-top: 0.25rem; accent-color: var(--brand); width: 16px; height: 16px; }
.form-note { font-size: var(--fs-xs); color: var(--muted-2); margin-top: 0.6rem; }
.form-status { font-size: var(--fs-sm); margin-top: 0.8rem; min-height: 1.2em; }
.form-status.ok { color: #5fe39c; } .form-status.err { color: #ff6b88; }

/* newsletter band */
.newsletter { background: var(--grad-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); position: relative; overflow: hidden; }
.newsletter::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0.06; }
.newsletter-form { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.2rem; max-width: 520px; }
.newsletter-form .input { flex: 1 1 220px; }

/* ---- CTA band ---- */
.cta-band { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 5rem); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 50%; height: 200%; top: -50%; left: 25%; background: var(--grad); filter: blur(120px); opacity: 0.18; }
.cta-band h2 { font-size: var(--fs-h2); position: relative; }
.cta-band .btn { margin-top: 1.6rem; }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; background: var(--surface); margin-top: var(--section-y); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer-brand .brand { font-size: 2rem; }
.footer-brand p { color: var(--muted); margin-top: 0.8rem; max-width: 34ch; font-size: 0.95rem; }
.footer-col h3 { font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--muted); padding-block: 0.32rem; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; display: grid; place-items: center; color: var(--muted); transition: all 0.25s var(--ease); }
.socials a:hover { color: var(--text); border-color: var(--brand); background: var(--grad-soft); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: var(--fs-xs); color: var(--muted-2); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--text); }

/* ---- cookie banner ---- */
.cookie {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%) translateY(160%);
  z-index: 150; width: min(680px, calc(100% - 2rem));
  background: rgba(20, 19, 26, 0.96); backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow); transition: transform 0.5s var(--ease);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie p { font-size: var(--fs-sm); color: var(--muted); flex: 1 1 280px; }
.cookie p a { color: var(--brand); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* ---- sticky mobile action bar (Call / Tables / Tickets) ---- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(12, 11, 16, 0.92); backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--line-strong);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(110%); transition: transform 0.4s var(--ease);
}
.mobile-bar.show { transform: translateY(0); }
.mb-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 0.7rem 0.4rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); position: relative; }
.mb-item svg { width: 22px; height: 22px; }
.mb-item:active { background: rgba(255, 255, 255, 0.05); }
.mb-item + .mb-item { border-left: 1px solid var(--line); }
.mb-primary { color: var(--text); }
.mb-primary::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0.16; }
.mb-primary svg, .mb-primary span { position: relative; color: var(--brand); }
.mb-primary span { color: var(--text); }
@media (min-width: 900px) { .mobile-bar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 0; } .site-footer { margin-bottom: 64px; } .cookie { bottom: 80px; } }

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- icon sizing ---- */
.icon { flex: none; display: inline-block; vertical-align: -0.18em; }
.ico .icon { width: 22px; height: 22px; }
.btn .icon { width: 18px; height: 18px; }
.event-when .icon, .hero-meta .icon { vertical-align: -0.2em; }

/* ---- utilities ---- */
.divider { height: 1px; background: var(--line); border: 0; }
.hide { display: none !important; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: 0.6rem 1rem; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.muted { color: var(--muted); }
.pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; font-size: var(--fs-xs); color: var(--muted); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); }

/* ---- responsive ---- */
@media (min-width: 600px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 3; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-media { order: 2; }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 4; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
@media (max-width: 899px) {
  body.menu-open { overflow: hidden; }
}
