/* ============================================================
   NinjaQue — gritty BBQ + Asian fusion food truck
   Type: Founders Grotesk (display) + ABC Diatype (body) +
         Founders Grotesk Mono (labels)
   Color: lime / black / white / grays
   ============================================================ */

@font-face { font-family: 'Founders Grotesk'; font-weight: 400; src: url('fonts/FoundersGrotesk-Regular.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Founders Grotesk'; font-weight: 500; src: url('fonts/FoundersGrotesk-Medium.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Founders Grotesk'; font-weight: 700; src: url('fonts/FoundersGrotesk-Bold.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Founders Grotesk Mono'; font-weight: 400; src: url('fonts/FoundersGroteskMono-Regular.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Founders Grotesk Mono'; font-weight: 500; src: url('fonts/FoundersGroteskMono-Medium.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'ABC Diatype'; font-weight: 400; src: url('fonts/ABCDiatype-Regular.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'ABC Diatype'; font-weight: 500; src: url('fonts/ABCDiatype-Medium.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'ABC Diatype'; font-weight: 700; src: url('fonts/ABCDiatype-Bold.woff2') format('woff2'); font-display: swap; }

:root {
  --lime: #b8ff2c;     /* punchier than the logo's slightly muted green so it reads on black */
  --lime-soft: #d6ff7a;
  --lime-deep: #8fd11a;
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --ink-4: #262626;
  --line: #2a2a2a;
  --gray-1: #3a3a3a;
  --gray-2: #6e6e6e;
  --gray-3: #a8a8a8;
  --gray-4: #d4d4d4;
  --paper: #f4f4f1;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  font-family: 'ABC Diatype', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- TYPE ---------- */
.display {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
}
.label {
  font-family: 'Founders Grotesk Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.label-lg {
  font-family: 'Founders Grotesk Mono', monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.body { font-family: 'ABC Diatype', sans-serif; }

/* ---------- LAYOUT ---------- */
.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.nav-brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(184,255,44,0.25));
}
.nav-brand-text { line-height: 1; }
.nav-links {
  display: flex;
  gap: 28px;
  font-family: 'Founders Grotesk Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-3);
}
.nav-links a { transition: color 120ms ease; }
.nav-links a:hover { color: var(--lime); }
.nav-cta {
  background: var(--lime);
  color: var(--ink);
  border: none;
  padding: 10px 20px;
  font-family: 'Founders Grotesk Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 120ms ease, transform 120ms ease;
}
.nav-cta:hover { background: var(--lime-soft); transform: translateY(-1px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 64px 0 32px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 90%);
}
.smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}
.smoke-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  animation: drift 18s ease-in-out infinite;
}
.smoke-blob.s1 { width: 540px; height: 540px; left: -120px; top: 10%; background: rgba(184,255,44,0.18); animation-delay: 0s; }
.smoke-blob.s2 { width: 480px; height: 480px; right: -80px; top: 20%; background: rgba(255,255,255,0.06); animation-delay: -6s; }
.smoke-blob.s3 { width: 600px; height: 600px; left: 30%; bottom: -200px; background: rgba(184,255,44,0.10); animation-delay: -12s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.08); }
}

.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  color: var(--gray-3);
}
.hero-top-item { display: flex; flex-direction: column; gap: 6px; }
.hero-top-item .v { color: var(--white); font-family: 'Founders Grotesk', sans-serif; font-size: 18px; font-weight: 500; }

.hero-main {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero-logo-wrap {
  position: relative;
  width: max-content;
  margin-bottom: 32px;
}
.hero-logo {
  position: relative;
  width: 240px;
  height: 240px;
  object-fit: contain;
  z-index: 2;
  /* Black logo on dark bg → invert so the silhouette becomes white;
     the lime stays roughly lime after hue-rotate(180) on inverted color */
  filter:
    invert(1) hue-rotate(180deg) saturate(1.3)
    drop-shadow(0 0 60px rgba(184,255,44,0.45))
    drop-shadow(0 8px 24px rgba(0,0,0,0.6));
}
:root[data-theme='light'] .hero-logo {
  /* Light mode: keep black logo as-is */
  filter:
    drop-shadow(0 0 40px rgba(184,255,44,0.35))
    drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
.hero-logo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(184,255,44,0.22) 0%, transparent 60%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
  animation: logoGlow 4s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 32px;
}

.footer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg) saturate(1.3) drop-shadow(0 0 30px rgba(184,255,44,0.3));
}
:root[data-theme='light'] .footer-logo { filter: none; }
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(184,255,44,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(184,255,44,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(184,255,44,0.06); }
}

.hero-title {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
  max-width: 14ch;
}
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-title .lime { color: var(--lime); font-style: italic; }
.hero-title .ame { display: inline-block; transform: skewX(-6deg); }

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.hero-blurb {
  max-width: 360px;
  font-size: 16px;
  color: var(--gray-3);
  line-height: 1.55;
}
.hero-blurb b { color: var(--white); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; justify-content: center; }
.hero-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: 'Founders Grotesk Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 120ms ease;
}
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: var(--lime-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--white); }
.btn-arrow { width: 18px; height: 18px; }

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  padding: 22px 0;
  margin-top: 24px;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
.marquee-track .out { -webkit-text-stroke: 1.5px var(--white); color: transparent; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 120px 0 48px;
  align-items: end;
  border-top: 1px solid var(--line);
}
.section-head-num {
  font-family: 'Founders Grotesk Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--gray-2);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 12px;
}
.section-head-num .num {
  font-family: 'Founders Grotesk', sans-serif;
  font-size: 56px;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-head-title {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
}
.section-head-title .lime { color: var(--lime); }
.section-head-title .lime.ital { font-style: italic; }
.section-head-title .out { -webkit-text-stroke: 1.5px var(--white); color: transparent; }

/* ---------- MENU ---------- */
.menu {
  padding-bottom: 120px;
}
.menu-tabs {
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  width: max-content;
  margin: 0 0 48px;
  background: var(--ink-2);
}
.menu-tab {
  padding: 10px 20px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--gray-3);
  font-family: 'Founders Grotesk Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 120ms ease;
}
.menu-tab:hover { color: var(--white); }
.menu-tab.active { background: var(--lime); color: var(--ink); font-weight: 700; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 200ms ease;
  cursor: pointer;
  position: relative;
}
.menu-item:nth-child(2n) { border-right: none; }
.menu-item:hover { background: var(--ink-2); }
.menu-item:hover .menu-name { color: var(--lime); }

.menu-num {
  font-family: 'Founders Grotesk Mono', monospace;
  font-size: 11px;
  color: var(--gray-2);
  letter-spacing: 0.1em;
}
.menu-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.menu-name {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 120ms ease;
}
.menu-desc { font-size: 14px; color: var(--gray-3); line-height: 1.5; max-width: 440px; }
.menu-tags { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
.menu-tag {
  font-family: 'Founders Grotesk Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--ink-3);
  color: var(--gray-3);
}
.menu-tag.hot { background: rgba(184,255,44,0.12); color: var(--lime); }
.menu-tag.fan-favorite { background: rgba(184,255,44,0.12); color: var(--lime); }
.menu-tag.two-flavors { background: rgba(255,180,102,0.12); color: #ffb466; }
.menu-tag.limited { background: #2a1a0a; color: #ffb466; }

.menu-price {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
  white-space: nowrap;
  text-align: right;
}
.menu-price.split { font-size: 18px; line-height: 1.1; }

.menu-section-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 24px 16px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.menu-section-label .label-lg { color: var(--lime); }
.menu-section-label .rule { flex: 1; height: 1px; background: var(--line); }

.dessert {
  margin-top: 64px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dessert::before {
  content: '';
  position: absolute;
  inset: -100px -50px auto auto;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,255,44,0.18), transparent 60%);
  pointer-events: none;
}
.dessert-mark {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lime);
  display: grid; place-items: center;
  color: var(--ink);
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1;
  flex-shrink: 0;
}
.dessert h3 { margin: 0 0 8px; font-family: 'Founders Grotesk', sans-serif; font-weight: 700; font-size: 36px; text-transform: uppercase; letter-spacing: -0.02em; }
.dessert p { margin: 0; color: var(--gray-3); max-width: 540px; }
.dessert-meta { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; position: relative; z-index: 1; }
.dessert-price { font-family: 'Founders Grotesk', sans-serif; font-weight: 700; font-size: 32px; }

/* ---------- ABOUT ---------- */
.about {
  padding: 0 0 120px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--gray-3);
}
.about-text p strong { color: var(--white); font-weight: 500; }
.about-text p:first-child {
  font-size: 28px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 400;
  text-wrap: balance;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.stat:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.stat:nth-child(even) { padding-left: 24px; }
.stat-num {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime);
}
.stat-label {
  margin-top: 8px;
  font-family: 'Founders Grotesk Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray-2);
  text-transform: uppercase;
}

.about-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  border-radius: 4px;
}
.about-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(184,255,44,0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(184,255,44,0.10), transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(255,255,255,0.02) 6px 7px);
}
.about-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  z-index: 1;
}
.about-card-quote {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.about-card-quote .lime { color: var(--lime); }
.about-card-byline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-card-byline .name { font-family: 'Founders Grotesk', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: -0.01em; }
.about-card-byline .role { font-family: 'Founders Grotesk Mono', monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--gray-3); text-transform: uppercase; }

/* ---------- SCHEDULE ---------- */
.schedule {
  padding-bottom: 120px;
}
.schedule-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--line);
  background: var(--ink-2);
  border-radius: 4px;
  overflow: hidden;
}
.day {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  transition: background 200ms ease;
  cursor: pointer;
  position: relative;
}
.day:last-child { border-right: none; }
.day:hover { background: var(--ink-3); }
.day.today {
  background: var(--lime);
  color: var(--ink);
}
.day.today .day-name,
.day.today .day-loc-name,
.day.today .day-time { color: var(--ink); }
.day.today .day-loc-addr { color: rgba(10,10,10,0.7); }
.day.today .day-tag { background: var(--ink); color: var(--lime); }

.day-head { display: flex; justify-content: space-between; align-items: baseline; }
.day-name { font-family: 'Founders Grotesk', sans-serif; font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.day-date { font-family: 'Founders Grotesk Mono', monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--gray-2); text-transform: uppercase; }
.day.today .day-date { color: rgba(10,10,10,0.6); }

.day-time { font-family: 'Founders Grotesk Mono', monospace; font-size: 13px; letter-spacing: 0.05em; color: var(--white); font-weight: 500; }
.day-loc-name { font-family: 'Founders Grotesk', sans-serif; font-weight: 500; font-size: 16px; line-height: 1.15; color: var(--white); }
.day-loc-addr { font-size: 12px; color: var(--gray-2); line-height: 1.4; margin-top: 2px; }
.day-tag {
  align-self: flex-start;
  font-family: 'Founders Grotesk Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--ink);
  color: var(--gray-3);
  text-transform: uppercase;
  margin-top: auto;
}
.day.closed { opacity: 0.5; }
.day.closed .day-loc-name { color: var(--gray-2); }

.schedule-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gray-3);
  font-size: 14px;
}
.schedule-meta .label { color: var(--gray-2); }
.schedule-meta a { color: var(--lime); border-bottom: 1px dashed var(--lime); }

/* ---------- EVENTS ---------- */
.events {
  background: var(--lime);
  color: var(--ink);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.events::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.events-inner { position: relative; }
.events-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.events-head .num { color: var(--ink); }
.events-head .label { color: rgba(0,0,0,0.6); }
.events-title {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}
.events-title .out { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.events-title em { font-style: italic; font-weight: 700; }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(0,0,0,0.2);
}
.event-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-card:last-child { border-right: none; }
.event-card-num { font-family: 'Founders Grotesk Mono', monospace; font-size: 12px; letter-spacing: 0.14em; color: rgba(0,0,0,0.55); }
.event-card h3 { margin: 0; font-family: 'Founders Grotesk', sans-serif; font-weight: 700; font-size: 32px; line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; }
.event-card-meta { font-family: 'Founders Grotesk Mono', monospace; font-size: 12px; letter-spacing: 0.06em; color: rgba(0,0,0,0.6); display: flex; gap: 16px; flex-wrap: wrap; }
.event-card p { margin: 0; font-size: 15px; line-height: 1.5; color: rgba(0,0,0,0.75); }

.events-cta {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(0,0,0,0.2);
  flex-wrap: wrap;
}
.events-cta-text {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.btn-dark { background: var(--ink); color: var(--lime); }
.btn-dark:hover { background: #1c1c1c; }

/* Booking form */
.booking {
  margin-top: 64px;
  background: var(--ink);
  color: var(--white);
  padding: 48px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.booking-side h3 {
  margin: 0 0 16px;
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.booking-side p { color: var(--gray-3); font-size: 14px; line-height: 1.55; margin: 0 0 24px; }
.booking-checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.booking-checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-3); }
.booking-checks .chk { width: 16px; height: 16px; border-radius: 3px; background: var(--lime); display: grid; place-items: center; flex-shrink: 0; color: var(--ink); }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-field { display: flex; flex-direction: column; gap: 6px; }
.booking-field.full { grid-column: 1 / -1; }
.booking-field label { font-family: 'Founders Grotesk Mono', monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--gray-3); text-transform: uppercase; }
.booking-field input, .booking-field select, .booking-field textarea {
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 14px 14px;
  font-family: 'ABC Diatype', sans-serif;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 120ms ease;
}
.booking-field input:focus, .booking-field select:focus, .booking-field textarea:focus { border-color: var(--lime); }
.booking-field textarea { min-height: 90px; resize: vertical; font-family: 'ABC Diatype', sans-serif; }
.booking-submit { grid-column: 1 / -1; display: flex; justify-content: flex-end; margin-top: 8px; }

/* ---------- INSTAGRAM / GALLERY ---------- */
.gallery {
  padding-bottom: 120px;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery-strip > * { aspect-ratio: 1; border-radius: 4px; overflow: hidden; position: relative; }
.gallery-row-2 > .tile { position: absolute; inset: 0; }
.tile {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 200ms ease;
}
.tile:hover { transform: translateY(-2px); }
.tile-mock {
  position: absolute;
  inset: 0;
}
.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
  opacity: 0;
  transition: opacity 200ms ease;
}
.tile:hover .tile-overlay { opacity: 1; }
.tile-overlay .likes { font-family: 'Founders Grotesk Mono', monospace; font-size: 12px; color: var(--white); display: flex; align-items: center; gap: 6px; }
.tile-overlay .ig { color: var(--lime); }
.gallery-row-2 { grid-column: span 2; grid-row: span 2; }

/* ---------- FAQ ---------- */
.faq {
  padding-bottom: 120px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  padding: 32px 0;
  background: transparent;
  border: none;
  color: var(--white);
  text-align: left;
  align-items: center;
  transition: padding 200ms ease;
}
.faq-q:hover .faq-q-text { color: var(--lime); }
.faq-q-num { font-family: 'Founders Grotesk Mono', monospace; font-size: 13px; letter-spacing: 0.14em; color: var(--gray-2); }
.faq-q-text {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color 120ms ease;
}
.faq-q-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--white);
  transition: all 200ms ease;
}
.faq-item.open .faq-q-toggle { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}
.faq-a-text {
  grid-column: 2 / 3;
  color: var(--gray-3);
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 0 32px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-mega {
  font-family: 'Founders Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 16vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 64px;
  text-wrap: balance;
}
.footer-mega .lime { color: var(--lime); font-style: italic; }
.footer-mega .out { -webkit-text-stroke: 2px var(--white); color: transparent; }

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-col h4 {
  margin: 0 0 16px;
  font-family: 'Founders Grotesk Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gray-2);
  text-transform: uppercase;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--gray-3); font-size: 14px; transition: color 120ms ease; }
.footer-col a:hover { color: var(--lime); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { margin: 0; color: var(--gray-3); font-size: 14px; line-height: 1.55; max-width: 320px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: 'Founders Grotesk Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray-2);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .lime-tag { color: var(--lime); }

/* Responsive */
@media (max-width: 900px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .hero-actions, .hero-meta { justify-content: flex-start; align-items: flex-start; text-align: left; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { border-right: none !important; }
  .schedule-strip { grid-template-columns: repeat(2, 1fr); }
  .day { border-right: 1px solid var(--line); }
  .events-grid { grid-template-columns: 1fr; }
  .event-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.2); }
  .booking { grid-template-columns: 1fr; padding: 24px; }
  .booking-form { grid-template-columns: 1fr; }
  .about-grid, .section-head, .events-head { grid-template-columns: 1fr; gap: 24px; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
