/* OFFCS — Official First Friday Car Show (Adrian, MI)
   Rebuilt 2026-08-31 by Polliwog — FAITHFUL PORT of the original build's
   design system (extracted from the old host's bundle, not re-imagined).
   Tokens: nearblack #1a1a1a / cream #f5f0dc / yellow #f5c200 / red #c0141a /
   blue hsl(211 65% 57%) / Bangers + Nunito. */

:root {
  --nearblack: #1a1a1a;
  --cream: #f5f0dc;
  --primary: #f5c200;      /* yellow */
  --secondary: #c0141a;    /* red */
  --accent: hsl(211 65% 57%); /* blue */
  --ink: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--nearblack);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Bangers everywhere it matters ───────────────────────── */

.bangers, .font-bangers, h1, h2, h3, h4, .nav-links a, .btn, .pill {
  font-family: 'Bangers', cursive;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* Display components that are divs/spans (not headings) also use Bangers */
.logo,
.hero-headline .kicker,
.hero-headline .line1,
.hero-headline .line2,
.hero-tagline,
.hero-loc,
.hero-free,
.btn-slab .face,
.sched-ticket .head .month,
.sched-ticket .body .date,
.sched-ticket .body .day,
.sched-ticket .body .time,
.sched-ticket .foot .feat,
.sched-ticket .foot .live,
.food-list li,
.food-summer .s1,
.food-summer .s2,
.sponsor-hex .tile-inner .hex-name,
.featured-month,
.fw .car,
.fw .tbd,
.loc-card h3,
.loc-form h4,
.loc-row h4,
.map-box .map-label,
.footer-title {
  font-family: 'Bangers', cursive;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* ── Signature text-stroke treatments ────────────────────── */

.text-stroke { -webkit-text-stroke: 2px #1a1a1a; color: var(--primary); }
.text-stroke-red { -webkit-text-stroke: 2px #1a1a1a; color: var(--secondary); }
.text-stroke-white { -webkit-text-stroke: 2px #1a1a1a; color: var(--cream); }
.text-stroke-blue { -webkit-text-stroke: 2px #1a1a1a; color: var(--accent); }

/* ── Comic borders (offset hard shadows) ─────────────────── */

.comic-border { border: 4px solid #1a1a1a; box-shadow: 6px 6px var(--primary); transition: all .2s ease; }
.comic-border-red { border: 4px solid #1a1a1a; box-shadow: 6px 6px var(--secondary); transition: all .2s ease; }
.comic-border-blue { border: 4px solid #1a1a1a; box-shadow: 6px 6px var(--accent); transition: all .2s ease; }

/* ── Textures ────────────────────────────────────────────── */

.starburst-bg {
  background: repeating-conic-gradient(from 0deg, transparent 0deg 10deg, rgba(255,255,255,.12) 10deg 20deg);
}
.halftone-bg {
  background-image: radial-gradient(#1a1a1a 20%, transparent 20%), radial-gradient(#1a1a1a 20%, transparent 20%);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
  opacity: .1;
}
.noise-bg {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: .1;
}
@keyframes spin-slow { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
.animate-spin-slow { animation: spin-slow 60s linear infinite; }

/* ── Zig-zag divider (SVG) ───────────────────────────────── */

.zigzag-wrap { width: 100%; overflow: hidden; line-height: 0; }
.zigzag-wrap svg { display: block; width: 100%; height: 30px; }
@media (min-width: 768px) { .zigzag-wrap svg { height: 50px; } }
.zigzag-wrap--reverse { transform: rotate(180deg); }

/* ── Section header (title + subtitle + skew underline) ──── */

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  line-height: 1.1;
}
.section-head .bar-1 {
  position: absolute; bottom: -0.7rem; left: 50%; transform: translateX(-50%) skewX(-12deg);
  width: 100%; max-width: 200px; height: 8px; background: var(--nearblack);
}
.section-head .bar-2 {
  position: absolute; bottom: -0.35rem; left: 50%; transform: translateX(-50%) skewX(-12deg);
  width: 100%; max-width: 150px; height: 4px; background: var(--nearblack);
}
.section-head .subtitle {
  margin-top: 1.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: 'Bangers', cursive;
}

/* ── Offset buttons (shadow slab + hover lift) ───────────── */

.btn-slab { position: relative; display: inline-block; text-decoration: none; }
.btn-slab .shadow {
  position: absolute; inset: 0; background: var(--nearblack);
  transform: translate(2px, 2px); transition: transform .15s ease;
}
.btn-slab .face {
  position: relative; display: inline-block;
  border: 4px solid var(--nearblack);
  padding: 0.9rem 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: transform .15s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-slab:hover .face { transform: translate(-2px, -2px); }
.btn-slab:hover .shadow { transform: translate(4px, 4px); }
.btn-slab--red .face { background: var(--secondary); color: var(--cream); }
.btn-slab--blue .face { background: var(--accent); color: var(--ink); }
.btn-slab--yellow .face { background: var(--primary); color: var(--ink); }
.btn-slab--white .face { background: #fff; color: var(--ink); }

/* ── Header (fixed, transparent → solid on scroll) ───────── */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  background: transparent;
  padding: 1rem 0;
  border-bottom: 4px solid transparent;
}
.site-header.scrolled {
  background: rgba(26,26,26,.95);
  backdrop-filter: blur(4px);
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 4px 0 var(--secondary);
  padding: 0.4rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; max-width: 1200px; margin: 0 auto; gap: 1rem; flex-wrap: wrap; }
.logo {
  font-size: 2.7rem;
  color: var(--primary);
  -webkit-text-stroke: 2px #1a1a1a;
  text-shadow: 3px 3px 0 rgba(0,0,0,.65);
  letter-spacing: 0.08em;
  text-decoration: none;
  line-height: 1;
  transition: transform .2s ease;
}
.logo:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; align-items: center; }
.nav-links a {
  font-size: 1.2rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0,0,0,.5);
  transition: color .2s ease;
  padding: 0.2rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; color: var(--primary); font-size: 1.8rem; cursor: pointer; font-family: 'Nunito', sans-serif; }

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--nearblack);
  padding-top: 4rem;
}
.hero .starburst-layer {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center; opacity: .4;
}
.hero .starburst-layer .starburst-bg {
  width: max(200vw, 200vh); height: max(200vw, 200vh);
  border-radius: 50%; flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero .starburst-layer .starburst-bg { width: max(150vw,150vh); height: max(150vw,150vh); }
}
.hero .halftone-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.5rem 6.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.9rem;
}
.hero-headline { position: relative; margin-bottom: 1.2rem; }
.hero-headline .kicker {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: var(--cream);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  margin-bottom: 0.3rem;
}
.hero-headline .line1 {
  font-size: clamp(3rem, 8.5vw, 5.6rem);
  color: var(--primary);
  -webkit-text-stroke: 2.5px #1a1a1a;
  text-shadow: 5px 5px 0 rgba(0,0,0,.75);
  line-height: 0.95;
  transform: rotate(1deg);
  text-transform: uppercase;
}
.hero-headline .line2 {
  font-size: clamp(3.6rem, 10vw, 6.8rem);
  color: var(--secondary);
  -webkit-text-stroke: 2.5px #1a1a1a;
  text-shadow: 5px 5px 0 rgba(0,0,0,.75);
  line-height: 0.95;
  transform: rotate(-1deg);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.hero-tagline {
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(26,26,26,.8);
  padding: 0.6rem 1.4rem;
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px var(--primary);
  transform: rotate(1deg);
  margin-bottom: 1.8rem;
}
.hero-loc {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #1a1a1a;
  transform: rotate(-1deg);
  margin-bottom: 1.6rem;
}
.hero-free {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--primary);
  -webkit-text-stroke: 2px #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-1deg);
  margin-bottom: 1.6rem;
  text-shadow: 3px 3px 0 rgba(0,0,0,.5);
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.2rem; }
.pill {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px var(--primary);
  transition: transform .2s ease;
}
.pill:hover { transform: rotate(-2deg) scale(1.03); }
.pill--blue { background: var(--accent); color: var(--ink); transform: rotate(2deg); }
.pill--red { background: var(--secondary); color: var(--cream); box-shadow: 6px 6px var(--primary); transform: rotate(-1deg); }
.pill--white { background: #fff; color: var(--ink); transform: rotate(1deg); }
.hero-cta { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn-slab .face { font-size: clamp(1.2rem, 2.5vw, 1.6rem); padding: 0.9rem 1.8rem; }
.hero-zigzag { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 2; line-height: 0; }
.hero-zigzag svg { display: block; width: 100%; height: 50px; }

/* ── Sections ────────────────────────────────────────────── */

.section { padding: 5rem 1.5rem; position: relative; }
.section > .container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.section--dark { background: var(--nearblack); color: var(--cream); }
.section--cream { background: var(--cream); color: var(--ink); }
.section--blue { background: var(--accent); color: var(--ink); }
.section--blue .subtitle, .section--cream .subtitle { color: var(--ink); }

/* Diagonal stripe border (gallery section) */
.striped-border {
  border-top: 16px solid var(--nearblack);
  border-bottom: 16px solid var(--nearblack);
  border-image: repeating-linear-gradient(45deg, #F5F0DC, #F5F0DC 10px, #1a1a1a 10px, #1a1a1a 20px) 16;
}

/* ── Schedule tickets ────────────────────────────────────── */

.sched-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1050px; margin: 0 auto; }
.sched-ticket {
  position: relative;
  transition: transform .2s ease;
}
.sched-ticket:hover { transform: translateY(-8px) rotate(1deg); }
.sched-ticket .slab { position: absolute; inset: 0; background: var(--nearblack); transform: translate(8px, 8px); }
.sched-ticket .card {
  position: relative;
  background: #fff;
  border: 4px solid var(--nearblack);
  display: flex; flex-direction: column; height: 100%;
}
.sched-ticket .head {
  background: var(--primary);
  border-bottom: 4px solid var(--nearblack);
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sched-ticket .head .punch {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; background: var(--cream);
  border: 4px solid var(--nearblack); border-radius: 50%;
}
.sched-ticket .head .punch--l { left: -16px; }
.sched-ticket .head .punch--r { right: -16px; }
.sched-ticket .head .month { font-size: 2rem; color: var(--ink); letter-spacing: 0.1em; text-transform: uppercase; }
.sched-ticket .body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  border-bottom: 4px dashed rgba(26,26,26,.3);
  position: relative;
}
.sched-ticket .body .date {
  font-size: clamp(3rem, 6vw, 4rem);
  color: var(--secondary);
  -webkit-text-stroke: 2px #1a1a1a;
  text-shadow: 2px 2px 0 #1a1a1a;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sched-ticket .body .day { font-size: 1.3rem; color: var(--ink); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.sched-ticket .body .time {
  background: var(--nearblack); color: var(--primary);
  font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; transform: rotate(-2deg);
}
.sched-ticket .foot {
  padding: 1.1rem;
  background: #e5e5e5;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 96px;
}
.sched-ticket .foot .punch {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; background: var(--cream);
  border: 4px solid var(--nearblack); border-radius: 50%;
  z-index: 2;
}
.sched-ticket .foot .punch--l { left: -16px; }
.sched-ticket .foot .punch--r { right: -16px; }
.sched-ticket .foot .details { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); position: relative; z-index: 1; margin-bottom: 0.5rem; }
.sched-ticket .foot .feat {
  background: var(--nearblack); color: #fff;
  font-size: 1.0rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.25rem 0.8rem; transform: rotate(-1deg);
  box-shadow: 2px 2px 0 var(--primary);
  position: relative; z-index: 1;
  margin-bottom: 0.6rem;
  max-width: 100%;
  text-align: center;
}
.sched-ticket .foot .live {
  font-size: 1.3rem; color: var(--secondary); letter-spacing: 0.08em;
  position: relative; z-index: 1; margin-bottom: 0.4rem;
}
.sched-ticket .foot .live-photo {
  width: 100%; height: 128px; border: 2px solid var(--nearblack); border-radius: 4px; overflow: hidden; background: var(--nearblack);
  position: relative; z-index: 1;
}
.sched-ticket .foot .live-photo img { width: 100%; height: 100%; object-fit: contain; }

/* ── Food poster ─────────────────────────────────────────── */

.food-poster {
  max-width: 900px; margin: 2rem auto 0;
  background: var(--cream); color: var(--ink);
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px var(--primary);
  padding: 2rem 2.5rem;
  transform: rotate(-1deg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.food-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.food-list li {
  display: flex; align-items: center; gap: 1rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: 0.06em;
  transition: transform .2s ease;
}
.food-list li:hover { transform: translateX(8px); }
.food-list .star {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--secondary); border: 2px solid var(--nearblack);
  box-shadow: 2px 2px 0 #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cream); font-size: 1.15rem; line-height: 1; padding-top: 2px;
}
.food-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.2rem; margin-bottom: 1.6rem;
  padding: 0.5rem;
}
.food-logos img {
  width: 110px; max-width: 140px; height: auto;
  filter: drop-shadow(4px 4px 0 rgba(26,26,26,1));
  transition: transform .3s ease;
  background: #fff;
  padding: 0.15rem;
}
.food-logos img:nth-child(1) { transform: rotate(-2deg); }
.food-logos img:nth-child(2) { transform: rotate(3deg); border-radius: 12px; border: 3px solid var(--nearblack); }
.food-logos img:nth-child(3) { transform: rotate(-3deg); }
.food-logos img:nth-child(4) { transform: rotate(2deg); }
.food-logos img:nth-child(5) { transform: rotate(-2deg); border-radius: 50%; }
.food-logos img:nth-child(6) { transform: rotate(1deg); border-radius: 12px; border: 3px solid var(--nearblack); }
.food-logos img:hover { transform: rotate(0deg) scale(1.06); }
.food-summer {
  background: var(--nearblack);
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px var(--secondary);
  padding: 1.6rem 2rem;
  text-align: center;
  transform: rotate(2deg);
  width: 100%;
  margin-top: 0.5rem;
}
.food-summer .s1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary); -webkit-text-stroke: 2px #1a1a1a;
  display: block; margin-bottom: 0.5rem; transform: rotate(-3deg);
}
.food-summer .s2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--cream);
  display: block; transform: rotate(1deg);
  text-shadow: 4px 4px 0 var(--secondary);
}

/* ── Registration ────────────────────────────────────────── */

.reg-box {
  max-width: 760px; margin: 0 auto;
  background: var(--cream); color: var(--ink);
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px var(--primary);
  padding: 2.4rem;
}
.reg-box h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--secondary); -webkit-text-stroke: 2px #1a1a1a;
  text-align: center; margin-bottom: 0.8rem;
}
.reg-box .reg-sub { text-align: center; font-weight: 800; margin-bottom: 1.8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select {
  border: 4px solid var(--nearblack);
  padding: 0.7rem 0.9rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field--full { grid-column: 1 / -1; }
.form-submit { margin-top: 1.6rem; text-align: center; }
.form-submit .face { width: 100%; font-size: 1.5rem; }
.form-status { text-align: center; font-weight: 900; margin-top: 1rem; min-height: 1.4rem; font-family: 'Nunito', sans-serif; }
.form-status.ok { color: #0e5c54; }
.form-status.err { color: var(--secondary); }

/* ── Sponsors (hexagons) ─────────────────────────────────── */

.sponsor-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; max-width: 1050px; margin: 0 auto 4rem; }
.sponsor-hex {
  position: relative;
  width: calc(50% - 0.75rem); max-width: 240px;
  aspect-ratio: 1;
  cursor: pointer;
}
@media (min-width: 768px) { .sponsor-hex { width: calc(33.333% - 1rem); } }
@media (min-width: 1024px) { .sponsor-hex { width: calc(25% - 1.05rem); } }
.hex-clip { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.sponsor-hex .slab {
  position: absolute; inset: 0;
  background: var(--nearblack);
  transform: translate(8px, 8px);
  transition: transform .2s ease;
}
.sponsor-hex .tile {
  position: absolute; inset: 0;
  background: var(--nearblack);
  transform: translateY(0);
  transition: transform .2s ease;
}
.sponsor-hex .tile-inner {
  position: absolute; inset: 4px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 0.8rem; text-align: center;
}
.sponsor-hex .tile-inner img { width: 100%; height: auto; max-height: 85%; object-fit: contain; }
.sponsor-hex .tile-inner .hex-name { font-size: 1.15rem; color: var(--ink); letter-spacing: 0.04em; text-transform: uppercase; text-align: center; line-height: 1.25; }
.sponsor-hex:hover .slab { transform: translate(12px, 12px); }
.sponsor-hex:hover .tile { transform: translateY(-4px); }
.sponsor-cta { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }

/* ── Gallery tiles ───────────────────────────────────────── */

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem; max-width: 1050px; margin: 0 auto 3rem; }
.gallery-tile { position: relative; aspect-ratio: 1; cursor: pointer; }
.gallery-tile .slab { position: absolute; inset: 0; background: var(--secondary); transform: translate(8px, 8px); transition: transform .2s ease; }
.gallery-tile .frame {
  position: relative; width: 100%; height: 100%;
  background: var(--nearblack); border: 4px solid var(--nearblack);
  overflow: hidden;
  transition: transform .2s ease;
}
.gallery-tile .frame img { width: 100%; height: 100%; object-fit: cover; opacity: .92; filter: grayscale(20%); transition: opacity .2s ease, filter .2s ease; }
.gallery-tile:hover .slab { transform: translate(12px, 12px); }
.gallery-tile:hover .frame { transform: rotate(-2deg) translateY(-4px); }
.gallery-tile:hover .frame img { opacity: 1; filter: grayscale(0); }
.gallery-video { position: relative; margin: 0 auto 3rem; max-width: 840px; aspect-ratio: 16/9; }
.gallery-video .slab { position: absolute; inset: 0; background: var(--accent); transform: translate(8px, 8px); }
.gallery-video .frame { position: relative; width: 100%; height: 100%; background: var(--nearblack); border: 4px solid var(--nearblack); overflow: hidden; }
.gallery-video iframe { width: 100%; height: 100%; border: 0; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border: 5px solid var(--cream); }
.lightbox-close, .lightbox-nav {
  background: none; border: none; color: var(--cream);
  font-size: 2.2rem; cursor: pointer; line-height: 1;
  font-family: 'Nunito', sans-serif; font-weight: 900;
}
.lightbox-close { position: absolute; top: 1rem; right: 1.6rem; }
.lightbox-nav { font-size: 3rem; padding: 0 1rem; }
.lightbox-controls { display: flex; gap: 2rem; align-items: center; }

/* ── Featured cars ───────────────────────────────────────── */

.featured-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.4rem; }
.featured-month { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--primary); -webkit-text-stroke: 2px #1a1a1a; margin-bottom: 1.2rem; }
.featured-card { position: relative; padding: 1.4rem; }
.featured-card .slab { position: absolute; inset: 0; background: var(--nearblack); transform: translate(8px, 8px); }
.featured-card .inner { position: relative; background: var(--accent); border: 4px solid var(--nearblack); padding: 1.4rem; color: var(--ink); }
.featured-card .fc-label { font-weight: 900; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; margin-bottom: 1rem; }
.featured-winners { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; }
.fw { position: relative; max-width: 320px; flex: 1 1 260px; }
.fw .slab { position: absolute; inset: 0; background: var(--nearblack); transform: translate(6px, 6px); }
.fw .card {
  position: relative; background: #fff; border: 4px solid var(--nearblack);
  padding: 0.9rem; text-align: center; transform: rotate(-1deg);
}
.fw:nth-child(even) .card { transform: rotate(1deg); }
.fw img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 3px solid var(--nearblack); margin-bottom: 0.6rem; }
.fw .car { font-size: 1.35rem; letter-spacing: 0.05em; }
.fw .owner { font-weight: 800; font-size: 0.85rem; color: #555; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Nunito', sans-serif; }
.fw .tbd { font-size: 1.3rem; color: #888; min-height: 220px; display: flex; align-items: center; justify-content: center; }
.featured-cancelled { position: relative; padding: 1.4rem; }
.featured-cancelled .slab { position: absolute; inset: 0; background: var(--nearblack); transform: translate(8px, 8px); }
.featured-cancelled .inner { position: relative; background: var(--cream); border: 4px solid var(--nearblack); padding: 2rem; text-align: center; font-size: 1.8rem; letter-spacing: 0.08em; }

/* ── Location ────────────────────────────────────────────── */

.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1050px; margin: 0 auto; }
.loc-card { position: relative; transform: rotate(-1deg); }
.loc-card .slab { position: absolute; inset: 0; background: var(--nearblack); transform: translate(8px, 8px); }
.loc-card .inner { position: relative; background: #fff; border: 4px solid var(--nearblack); padding: 2rem; color: var(--ink); }
.loc-card .target {
  position: absolute; top: 1rem; right: 1rem;
  width: 48px; height: 48px; border: 4px solid var(--nearblack); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.loc-card .target .dot { width: 32px; height: 32px; border: 4px solid var(--nearblack); border-radius: 50%; }
.loc-card h3 { font-size: 1.9rem; color: var(--primary); -webkit-text-stroke: 2px #1a1a1a; margin-bottom: 1.4rem; }
.loc-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.loc-row .ico { width: 32px; height: 32px; flex-shrink: 0; color: var(--secondary); font-size: 1.5rem; line-height: 1.2; text-align: center; font-family: 'Nunito', sans-serif; font-weight: 900; }
.loc-row h4 { font-size: 1.3rem; color: var(--ink); letter-spacing: 0.04em; }
.loc-row p, .loc-row a { font-weight: 700; font-size: 1.05rem; color: rgba(26,26,26,.8); text-decoration: none; }
.loc-row a:hover { color: var(--primary); }
.loc-form { margin-top: 2rem; padding-top: 2rem; border-top: 4px dashed rgba(26,26,26,.3); }
.loc-form h4 { font-size: 1.5rem; color: var(--primary); -webkit-text-stroke: 2px #1a1a1a; margin-bottom: 1rem; }
.map-box { position: relative; min-height: 420px; }
.map-box .slab { position: absolute; inset: 0; background: var(--nearblack); transform: translate(8px, 8px); }
.map-box .inner {
  position: relative; height: 100%; min-height: 420px;
  background: var(--accent); border: 4px solid var(--nearblack);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  padding: 2rem; color: var(--ink);
}
.map-box .map-label { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: 0.08em; text-align: center; text-transform: uppercase; color: rgba(26,26,26,.85); }
.map-box .btn-slab .face { border-radius: 999px; display: flex; align-items: center; gap: 0.5rem; }
/* Map embed fills the box; label + directions overlay the bottom */
.map-box .map-inner { padding: 0; overflow: hidden; background: #dfe5e2; }
.map-box .map-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-box .map-overlay {
  position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 2; text-align: center; width: max-content; max-width: calc(100% - 2rem);
}
.map-box .map-pin-label {
  background: rgba(255,255,255,.92); border: 3px solid #1a1a1a; box-shadow: 4px 4px 0 #1a1a1a;
  padding: .45rem .95rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  font-size: .85rem; color: #1a1a1a;
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  background: var(--nearblack);
  border-top: 4px solid var(--primary);
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.site-footer .halftone-layer { position: absolute; inset: 0; pointer-events: none; }
.site-footer .inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.footer-title { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--primary); -webkit-text-stroke: 2px #1a1a1a; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-sub { font-size: 0.85rem; color: rgba(245,240,220,.7); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; font-family: 'Nunito', sans-serif; }
.footer-divider { width: 100%; height: 1px; background: var(--nearblack); border-top: 1px solid rgba(245,240,220,.1); margin: 0.4rem 0; }
.footer-copy { font-size: 0.8rem; color: rgba(245,240,220,.5); font-weight: 700; font-family: 'Nunito', sans-serif; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; align-items: center; }
.footer-links a { font-size: 0.85rem; color: rgba(245,240,220,.5); font-weight: 700; font-family: 'Nunito', sans-serif; text-decoration: underline; text-underline-offset: 4px; transition: color .2s ease; }
.footer-links a:hover { color: var(--primary); }
.footer-links a.partner { color: var(--primary); }
.footer-links a.partner:hover { color: var(--cream); }
.footer-powered { margin-top: 0.4rem; font-size: 0.7rem; color: rgba(245,240,220,.5); font-weight: 700; font-family: 'Nunito', sans-serif; }
.footer-powered a { color: var(--primary); text-decoration: none; }
.footer-powered a:hover { text-decoration: underline; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 0 0.4rem;
    background: var(--nearblack);
    border-bottom: 4px solid var(--primary);
  }
  .nav-links.open { display: flex; }
  .food-poster { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .sched-grid { grid-template-columns: 1fr; }
}
