/* =========================================================================
   CONCRETE RODEO — Downtown Bryan's neon honky-tonk.
   Production stylesheet. Neon-on-dark, brand tokens straight from the logo.
   Photo-free by design: type, neon glow, color and texture carry the visuals.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* ---------- Color: concrete + neon ---------- */
  --bg:            #0a090e;   /* deep concrete black */
  --bg-alt:        #110f17;   /* alt sections */
  --bg-sunken:     #060509;   /* deepest wells */
  --bg-elev:       #16131f;   /* raised cards */
  --bg-elev-2:     #1d1929;   /* hovered cards */

  --fg:            #f4eff8;   /* warm white */
  --fg-2:          #b7adc6;   /* secondary */
  --fg-3:          #7e7590;   /* tertiary / captions */
  --fg-4:          #534b63;   /* disabled */
  --line:          rgba(255,255,255,0.09);
  --line-strong:   rgba(255,255,255,0.18);

  /* neon family pulled from the logo */
  --neon-cyan:     #38c9ff;
  --neon-magenta:  #ff2e9a;
  --neon-amber:    #ff9b2f;
  --neon-red:      #ff3b4e;
  --neon-purple:   #a24dff;

  --accent:        var(--neon-amber);
  --accent-fg:     #15100a;
  --accent-soft:   rgba(255,155,47,0.12);

  --success:       #36d07a;
  --warn:          #ffb454;
  --danger:        var(--neon-red);
  --info:          var(--neon-cyan);

  /* ---------- Type ---------- */
  --f-display: "Anton", "Arial Narrow", sans-serif;     /* poster headlines */
  --f-marquee: "Bebas Neue", "Anton", sans-serif;       /* eyebrows / marquee */
  --f-body:    "Barlow", ui-sans-serif, system-ui, sans-serif;
  --font-sans: var(--f-body);
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;

  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-base: 16px;
  --fs-md:   18px;
  --fs-lg:   21px;
  --fs-xl:   26px;
  --fs-2xl:  34px;
  --fs-3xl:  46px;
  --fs-4xl:  68px;
  --fs-5xl:  104px;

  --lh-tight: 1.02;
  --lh-snug:  1.18;
  --lh-normal:1.55;
  --lh-loose: 1.75;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;

  /* ---------- Spacing ---------- */
  --s-0:0; --s-1:4px; --s-2:8px; --s-3:12px; --s-4:16px; --s-5:24px;
  --s-6:32px; --s-7:48px; --s-8:64px; --s-9:96px; --s-10:140px;

  /* ---------- Radii ---------- */
  --r-none:0; --r-sm:4px; --r-md:8px; --r-lg:14px; --r-xl:22px; --r-pill:999px;

  /* ---------- Shadows ---------- */
  --sh-sm: 0 1px 2px rgba(0,0,0,0.5);
  --sh-md: 0 10px 30px -8px rgba(0,0,0,0.7);
  --sh-lg: 0 30px 70px -16px rgba(0,0,0,0.8);

  /* ---------- Motion ---------- */
  --ease:     cubic-bezier(0.2,0.8,0.2,1);
  --dur-fast: 130ms;
  --dur-base: 240ms;
  --dur-slow: 600ms;

  /* ---------- Layout ---------- */
  --container: 1240px;
  --gutter:    28px;
  --nav-h:     76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* concrete grain + ambient neon haze behind everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 18% 0%, rgba(56,201,255,0.10), transparent 70%),
    radial-gradient(55% 45% at 85% 8%, rgba(255,46,154,0.10), transparent 70%),
    radial-gradient(70% 60% at 50% 100%, rgba(255,155,47,0.07), transparent 70%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* skip link for keyboard / screen-reader users */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--neon-amber); color: var(--accent-fg);
  font-family: var(--f-marquee); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 18px; border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; color: var(--accent-fg); }

/* ---------- Type elements ---------- */
h1,h2,h3,h4,h5,h6 { margin: 0; font-family: var(--f-display); font-weight: 400; line-height: var(--lh-tight); color: var(--fg); letter-spacing: 0.005em; }
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p { margin: 0; line-height: var(--lh-normal); }

.display { font-family: var(--f-display); text-transform: uppercase; }
.marquee { font-family: var(--f-marquee); letter-spacing: 0.04em; }

.eyebrow {
  font-family: var(--f-marquee);
  font-size: var(--fs-lg);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  display: inline-block;
}
.muted { color: var(--fg-2); }
.dim   { color: var(--fg-3); }

a { color: var(--neon-cyan); text-decoration: none; }
a:hover { color: #fff; }

/* ---------- Neon glow utilities ---------- */
.neon-amber   { color:#fff; text-shadow:0 0 4px #fff,0 0 12px var(--neon-amber),0 0 26px var(--neon-amber),0 0 54px rgba(255,155,47,.7); }
.neon-cyan    { color:#fff; text-shadow:0 0 4px #fff,0 0 12px var(--neon-cyan),0 0 26px var(--neon-cyan),0 0 54px rgba(56,201,255,.7); }
.neon-magenta { color:#fff; text-shadow:0 0 4px #fff,0 0 12px var(--neon-magenta),0 0 26px var(--neon-magenta),0 0 54px rgba(255,46,154,.7); }
.neon-red     { color:#fff; text-shadow:0 0 4px #fff,0 0 12px var(--neon-red),0 0 26px var(--neon-red),0 0 54px rgba(255,59,78,.7); }

.flicker { animation: flicker 7s infinite steps(1); }
@keyframes flicker {
  0%,100%,42%,46%,52% { opacity: 1; }
  43%,51% { opacity: 0.55; }
  44% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .flicker { animation: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 15px 26px; border-radius: var(--r-pill);
  font-family: var(--f-marquee); font-size: var(--fs-lg); letter-spacing: 0.08em;
  text-transform: uppercase; line-height: 1;
  border: 2px solid transparent; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--neon-amber); color: var(--accent-fg);
  border-color: var(--neon-amber);
  box-shadow: 0 0 18px rgba(255,155,47,.5), 0 0 4px rgba(255,155,47,.8);
}
.btn-primary:hover { color: var(--accent-fg); box-shadow: 0 0 30px rgba(255,155,47,.85), 0 0 8px rgba(255,155,47,1); transform: translateY(-2px); }

.btn-cyan {
  background: transparent; color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 14px rgba(56,201,255,.35), inset 0 0 12px rgba(56,201,255,.12);
}
.btn-cyan:hover { color:#fff; background: rgba(56,201,255,.14); box-shadow: 0 0 26px rgba(56,201,255,.7), inset 0 0 18px rgba(56,201,255,.22); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { color:#fff; border-color: var(--fg-2); background: rgba(255,255,255,.04); }

.btn-sm { padding: 10px 18px; font-size: var(--fs-base); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,9,14,0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
  height: var(--nav-h); max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}
.nav-brand { display: flex; align-items: center; gap: var(--s-3); }
.nav-brand img { height: 46px; width: auto; display: block; filter: drop-shadow(0 0 10px rgba(255,155,47,.4)); }
.nav-brand .wordmark { font-family: var(--f-display); text-transform: uppercase; font-size: var(--fs-lg); letter-spacing: 0.04em; line-height: 0.92; }
.nav-links { display: flex; align-items: center; gap: var(--s-6); }
.nav-links a {
  font-family: var(--f-marquee); font-size: var(--fs-lg); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-2); border: 0; transition: color var(--dur-fast) var(--ease), text-shadow var(--dur-base) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; text-shadow: 0 0 14px var(--neon-cyan); }
.nav-actions { display: flex; align-items: center; gap: var(--s-3); }
.nav-burger { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--fg); margin: 5px 0; transition: var(--dur-base); }
.mobile-menu { display: none; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section-pad { padding: var(--s-9) 0; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); border: 0; margin: 0; }

/* hairline rule with a neon center, used as section separators */
.neon-rule { height: 2px; border: 0; background: linear-gradient(90deg, transparent, var(--neon-magenta), var(--neon-amber), var(--neon-cyan), transparent); opacity: 0.7; box-shadow: 0 0 12px rgba(255,155,47,.4); }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-family: var(--f-marquee); font-size: var(--fs-sm); letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.05); color: var(--fg-2); border: 1px solid var(--line);
}
.badge-cyan    { color: var(--neon-cyan);    border-color: rgba(56,201,255,.4);  background: rgba(56,201,255,.08); }
.badge-magenta { color: var(--neon-magenta); border-color: rgba(255,46,154,.4);  background: rgba(255,46,154,.08); }
.badge-amber   { color: var(--neon-amber);   border-color: rgba(255,155,47,.4);  background: rgba(255,155,47,.08); }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-live { background: var(--success); box-shadow: 0 0 8px var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* =========================================================================
   LANDING PAGE
   ========================================================================= */

/* ---------------- HERO ---------------- */
.hero {
  position: relative; min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--s-8) var(--gutter) var(--s-9);
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: 38%; left: 50%; transform: translate(-50%,-50%);
  width: min(900px, 110vw); aspect-ratio: 1; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(255,46,154,.22), rgba(56,201,255,.14) 42%, transparent 66%);
  filter: blur(8px);
}
.hero-logo { position: relative; z-index: 1; width: min(560px, 84vw); height: auto;
  filter: drop-shadow(0 0 40px rgba(255,46,154,.35)) drop-shadow(0 0 22px rgba(56,201,255,.25)); }
.hero-eyebrow { position: relative; z-index: 1; margin-top: var(--s-6); }
.hero h1 {
  position: relative; z-index: 1; margin: var(--s-3) 0 0;
  font-size: clamp(38px, 7vw, var(--fs-5xl)); line-height: 0.94;
  text-transform: uppercase; max-width: 16ch;
}
.hero h1 .l2 { display: block; }
.hero p.lede { position: relative; z-index: 1; margin: var(--s-5) auto 0; max-width: 54ch;
  font-size: var(--fs-lg); color: var(--fg-2); }
.hero-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: var(--s-3);
  justify-content: center; margin-top: var(--s-7); }
.open-chip { position: relative; z-index: 1; margin-top: var(--s-6); display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--r-pill); background: rgba(54,208,122,.08); border: 1px solid rgba(54,208,122,.35);
  font-family: var(--f-marquee); font-size: var(--fs-base); letter-spacing: 0.12em; text-transform: uppercase; color: var(--success); }
.scroll-hint { position: absolute; bottom: var(--s-5); left: 50%; transform: translateX(-50%); z-index: 1;
  font-family: var(--f-marquee); letter-spacing: 0.22em; font-size: var(--fs-sm); color: var(--fg-3); text-transform: uppercase;
  animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,7px)} }
@media (prefers-reduced-motion: reduce) { .scroll-hint { animation: none; } }

/* ---------------- VISIT STRIP (primary CTA) ---------------- */
.visit { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.visit-cell { padding: var(--s-7) var(--s-6); border-right: 1px solid var(--line); }
.visit-cell:last-child { border-right: 0; }
.visit-cell .ico { width: 30px; height: 30px; color: var(--neon-cyan); margin-bottom: var(--s-4); }
.visit-cell h3 { font-family: var(--f-marquee); font-size: var(--fs-xl); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--s-3); }
.visit-cell p { color: var(--fg-2); font-size: var(--fs-md); }
.visit-cell .big { font-size: var(--fs-lg); color: var(--fg); }
.visit-cell .cta-row { margin-top: var(--s-5); display: flex; gap: var(--s-3); flex-wrap: wrap; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: var(--s-4); padding: 5px 0; font-size: var(--fs-md); color: var(--fg-2); }
.hours-list li.today { color: #fff; }
.hours-list li.today .d { color: var(--neon-amber); }
.hours-list .d { font-family: var(--f-marquee); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------------- generic section heading ---------------- */
.sec-head { max-width: 64ch; margin-bottom: var(--s-7); }
.sec-head h2 { font-size: var(--fs-3xl); text-transform: uppercase; margin-top: var(--s-3); }

/* ---------------- ABOUT ---------------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-8); align-items: center; }
.about-copy p + p { margin-top: var(--s-4); }
.about-copy p.big { font-size: var(--fs-xl); color: var(--fg); font-family: var(--f-body); line-height: var(--lh-snug); }
.about-stats { display: flex; gap: var(--s-7); margin-top: var(--s-6); flex-wrap: wrap; }
.about-stats .stat .n { font-family: var(--f-display); font-size: var(--fs-3xl); line-height: 1; }
.about-stats .stat .l { font-family: var(--f-marquee); letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); font-size: var(--fs-sm); }

/* neon "sign" panel replaces the old about photo */
.about-sign {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--s-4);
  min-height: 360px; padding: var(--s-8) var(--s-6); text-align: center;
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(29,25,41,.6), rgba(6,5,9,.6));
}
.about-sign::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 60% at 30% 20%, rgba(56,201,255,.16), transparent 70%),
    radial-gradient(70% 70% at 80% 90%, rgba(255,46,154,.18), transparent 70%);
}
.about-sign > * { position: relative; z-index: 1; }
.about-sign .sign-line { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(46px, 7vw, 84px); line-height: 0.92; }
.about-sign .sign-sub { font-family: var(--f-marquee); letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-2); font-size: var(--fs-base); }

/* ---------------- THE FLOOR (icon cards) ---------------- */
.floor { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.floor-card { display: flex; flex-direction: column; gap: var(--s-3); }
.floor-card .ic {
  width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.03); margin-bottom: var(--s-2);
}
.floor-card .ic svg { width: 32px; height: 32px; }
.floor-card h4 { font-family: var(--f-marquee); font-size: var(--fs-xl); letter-spacing: 0.04em; text-transform: uppercase; }
.floor-card p { color: var(--fg-3); font-size: var(--fs-sm); }
/* icon color rotation + glow */
.ic-cyan    { color: var(--neon-cyan);    border-color: rgba(56,201,255,.4)!important;  box-shadow: 0 0 18px rgba(56,201,255,.25), inset 0 0 14px rgba(56,201,255,.08); }
.ic-magenta { color: var(--neon-magenta); border-color: rgba(255,46,154,.4)!important;  box-shadow: 0 0 18px rgba(255,46,154,.25), inset 0 0 14px rgba(255,46,154,.08); }
.ic-amber   { color: var(--neon-amber);   border-color: rgba(255,155,47,.4)!important;  box-shadow: 0 0 18px rgba(255,155,47,.25), inset 0 0 14px rgba(255,155,47,.08); }
.ic-purple  { color: var(--neon-purple);  border-color: rgba(162,77,255,.4)!important;  box-shadow: 0 0 18px rgba(162,77,255,.25), inset 0 0 14px rgba(162,77,255,.08); }

/* =========================================================================
   EVENT "TICKETS" — photo-free cards, color-coded by category
   ========================================================================= */

/* shared neon-ticket treatment */
.ticket { position: relative; overflow: hidden; padding: 0; }
.ticket::before {
  content: ""; position: absolute; top: 0; right: 0; width: 60%; height: 130px; pointer-events: none;
  background: radial-gradient(120% 90% at 100% 0%, var(--tk-glow, rgba(255,46,154,.16)), transparent 70%);
}
.ticket > * { position: relative; z-index: 1; }
.ticket .body { padding: var(--s-5) var(--s-5) var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
/* top neon hairline, colored per category */
.ticket { border-top: 2px solid var(--tk, var(--neon-magenta)); }
.tk-live, .tk-magenta   { --tk: var(--neon-magenta); --tk-glow: rgba(255,46,154,.16); }
.tk-dj, .tk-purple      { --tk: var(--neon-purple);  --tk-glow: rgba(162,77,255,.16); }
.tk-lessons, .tk-cyan   { --tk: var(--neon-cyan);    --tk-glow: rgba(56,201,255,.16); }
.tk-watch, .tk-amber    { --tk: var(--neon-amber);   --tk-glow: rgba(255,155,47,.16); }
.tk-special             { --tk: var(--neon-amber);   --tk-glow: rgba(255,155,47,.16); }

/* home "this week" tickets */
.ev-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.ev-card { display: flex; flex-direction: column; cursor: pointer; color: inherit; }
.ev-card:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: var(--sh-md); }
.ev-card .kicker { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.ev-date { font-family: var(--f-marquee); letter-spacing: 0.12em; text-transform: uppercase; color: var(--tk, var(--neon-magenta)); font-size: var(--fs-base); }
.ev-card h4 { font-family: var(--f-display); font-size: var(--fs-xl); text-transform: uppercase; line-height: 1.05; }
.ev-card p { color: var(--fg-2); font-size: var(--fs-sm); flex: 1; }
.ev-card .more { font-family: var(--f-marquee); letter-spacing: 0.1em; text-transform: uppercase; color: var(--neon-cyan); font-size: var(--fs-base); }

/* featured headliner — big neon marquee panel, no photo */
.featured {
  position: relative; overflow: hidden; text-align: center;
  padding: var(--s-9) var(--s-7); margin-bottom: var(--s-8);
  border: 1px solid rgba(255,46,154,.4); border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(29,25,41,.5), rgba(6,5,9,.6));
}
.featured::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(255,46,154,.20), transparent 70%),
    radial-gradient(60% 110% at 50% 100%, rgba(255,155,47,.14), transparent 70%);
}
.featured > * { position: relative; z-index: 1; }
.featured .meta-row { display: flex; gap: var(--s-3); align-items: center; justify-content: center; flex-wrap: wrap; }
.featured .ev-date { color: var(--neon-magenta); font-size: var(--fs-md); }
.featured h2 { font-size: clamp(40px, 7vw, 84px); text-transform: uppercase; line-height: 0.98; margin: var(--s-4) 0 var(--s-2); }
.featured .offer { font-family: var(--f-display); text-transform: uppercase; font-size: var(--fs-2xl); }
.featured p.copy { color: var(--fg-2); font-size: var(--fs-md); max-width: 62ch; margin: var(--s-4) auto 0; }

/* events grid tickets */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.post { display: flex; flex-direction: column; }
.post:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: var(--sh-md); }
.post .top { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); }
.post .ev-date { color: var(--tk, var(--neon-cyan)); font-size: var(--fs-base); }
.post h3 { font-family: var(--f-display); font-size: var(--fs-xl); text-transform: uppercase; line-height: 1.05; }
.post p { color: var(--fg-2); font-size: var(--fs-sm); flex: 1; }
.post .foot { display: flex; justify-content: space-between; align-items: center; padding-top: var(--s-3); border-top: 1px solid var(--line); }
.post .foot .free { font-family: var(--f-marquee); letter-spacing: 0.08em; text-transform: uppercase; color: var(--success); font-size: var(--fs-sm); }
.post .foot .cover { font-family: var(--f-marquee); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); font-size: var(--fs-sm); }

/* editor / info note */
.stack-note { margin-top: var(--s-6); padding: var(--s-5); border: 1px dashed var(--line-strong); border-radius: var(--r-lg);
  text-align: center; color: var(--fg-3); font-size: var(--fs-sm); }
.stack-note code { color: var(--neon-cyan); }

/* ---------------- SOCIAL CTA ---------------- */
.social-band { text-align: center; padding: var(--s-9) var(--gutter); background:
  radial-gradient(60% 120% at 50% 0%, rgba(255,46,154,.14), transparent 70%), var(--bg-alt);
  border-top: 1px solid var(--line); }
.social-band h2 { font-size: var(--fs-3xl); text-transform: uppercase; }
.social-links { display: flex; gap: var(--s-4); justify-content: center; margin-top: var(--s-6); flex-wrap: wrap; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%;
  border: 1px solid var(--line-strong); color: var(--fg); transition: var(--dur-base) var(--ease); }
.social-links a:hover { color: #fff; border-color: var(--neon-magenta); box-shadow: 0 0 22px rgba(255,46,154,.5); transform: translateY(-3px); }
.social-links a svg { width: 24px; height: 24px; }

/* ---------------- FOOTER ---------------- */
footer.site {
  border-top: 1px solid var(--line);
  background: var(--bg-sunken);
  padding: var(--s-9) 0 var(--s-7);
  margin-top: var(--s-9);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-7); }
.foot-brand img { height: 76px; width: auto; filter: drop-shadow(0 0 16px rgba(255,155,47,.35)); }
.foot-brand p { color: var(--fg-3); font-size: var(--fs-sm); margin-top: var(--s-4); max-width: 36ch; }
.foot-col h5 { font-family: var(--f-marquee); letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); font-size: var(--fs-base); margin-bottom: var(--s-4); }
.foot-col a, .foot-col p { display: block; color: var(--fg-2); font-size: var(--fs-md); margin-bottom: var(--s-2); border: 0; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; gap: var(--s-4); margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid var(--line); color: var(--fg-3); font-size: var(--fs-sm); flex-wrap: wrap; }

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

/* =========================================================================
   EVENTS & FAQ PAGE
   ========================================================================= */

.page-head { padding: var(--s-9) 0 var(--s-7); text-align: center; position: relative; overflow: hidden; }
.page-head::before { content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background: radial-gradient(50% 90% at 50% -10%, rgba(255,46,154,.16), transparent 70%); }
.page-head > * { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(44px, 8vw, 88px); text-transform: uppercase; margin-top: var(--s-3); }
.page-head p { color: var(--fg-2); font-size: var(--fs-lg); max-width: 52ch; margin: var(--s-4) auto 0; }

/* sticky in-page toggle between Events and FAQ */
.subtabs { position: sticky; top: var(--nav-h); z-index: 40; display: flex; gap: var(--s-2); justify-content: center;
  padding: var(--s-4) 0; margin-bottom: var(--s-2);
  background: rgba(10,9,14,0.72); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line); }
.subtab { font-family: var(--f-marquee); font-size: var(--fs-lg); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 22px; border-radius: var(--r-pill); background: transparent; color: var(--fg-2);
  border: 1px solid var(--line-strong); cursor: pointer; transition: var(--dur-base) var(--ease); text-decoration: none; }
.subtab:hover { color: #fff; border-color: var(--fg-2); }
.subtab.active { color: #fff; border-color: var(--neon-cyan); box-shadow: 0 0 16px rgba(56,201,255,.4); background: rgba(56,201,255,.1); }

/* filter chips */
.filters { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; margin: var(--s-7) 0 var(--s-8); }
.chip { font-family: var(--f-marquee); font-size: var(--fs-base); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--r-pill); background: transparent; color: var(--fg-2);
  border: 1px solid var(--line-strong); cursor: pointer; transition: var(--dur-base) var(--ease); }
.chip:hover { color: #fff; border-color: var(--fg-2); }
.chip.active { color: var(--accent-fg); background: var(--neon-amber); border-color: var(--neon-amber); box-shadow: 0 0 18px rgba(255,155,47,.5); }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-q { width: 100%; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-5) var(--s-2); text-align: left; color: var(--fg);
  font-family: var(--f-display); text-transform: uppercase; font-size: var(--fs-xl); line-height: 1.1;
  transition: color var(--dur-base) var(--ease); }
.faq-q:hover { color: #fff; }
.faq-q .pm { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; left:50%; top:50%; background: var(--neon-amber);
  box-shadow: 0 0 10px rgba(255,155,47,.7); transition: transform var(--dur-base) var(--ease); }
.faq-q .pm::before { width: 18px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .pm::after  { width: 2px; height: 18px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q { color: #fff; }
.faq-item.open .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease); }
.faq-a-inner { padding: 0 var(--s-2) var(--s-6); color: var(--fg-2); font-size: var(--fs-md); line-height: var(--lh-loose); max-width: 64ch; }
.faq-a-inner a { color: var(--neon-cyan); }
.faq-item.open .faq-a { max-height: 480px; }
.faq-cat { font-family: var(--f-marquee); letter-spacing: 0.16em; text-transform: uppercase; color: var(--neon-magenta);
  font-size: var(--fs-base); margin: var(--s-8) 0 var(--s-3); }
.help-band { text-align: center; padding: var(--s-8) var(--gutter); margin-top: var(--s-8);
  background: radial-gradient(60% 120% at 50% 0%, rgba(255,155,47,.12), transparent 70%), var(--bg-alt);
  border: 1px solid var(--line); border-radius: var(--r-xl); }
.help-band h2 { font-size: var(--fs-2xl); text-transform: uppercase; }
.help-actions { display: flex; gap: var(--s-3); justify-content: center; margin-top: var(--s-5); flex-wrap: wrap; }

/* =========================================================================
   RESPONSIVE — single breakpoint at 900px
   ========================================================================= */
@media (max-width: 900px) {
  :root { --fs-5xl: 72px; --fs-4xl: 50px; --fs-3xl: 36px; --fs-2xl: 28px; --gutter: 20px; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-burger { display: block; }
  .mobile-menu {
    display: none; flex-direction: column; gap: var(--s-4);
    padding: var(--s-5) var(--gutter) var(--s-7);
    border-bottom: 1px solid var(--line); background: rgba(10,9,14,0.97);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: var(--f-marquee); font-size: var(--fs-2xl); letter-spacing: 0.08em; text-transform: uppercase; color: #fff; border: 0; }
  .mobile-menu .btn { width: 100%; }
  .section-pad { padding: var(--s-8) 0; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .visit-cell:last-child { border-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .about-sign { order: -1; min-height: 240px; }
  .floor { grid-template-columns: repeat(2, 1fr); }
  .ev-strip { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: var(--s-6); }

  .featured { padding: var(--s-7) var(--s-5); }
  .grid { grid-template-columns: 1fr; }
}
