:root {
  --bg: #05080e;
  --surface: #0b1220;
  --card: #111b2c;
  --fg: #f7f7f0;
  --muted: #93a0b5;
  --primary: #e8ff00;
  --primary-fg: #0a1000;
  --accent: #00b8ff;
  --line: #1c3350;
  --closed: #d07070;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, sans-serif;
}
h1, h2, h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
header {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 14, 0.92);
  backdrop-filter: blur(10px);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}
.logo { height: 2.4rem; width: auto; flex-shrink: 0; }
nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.1rem;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}
nav a { white-space: nowrap; }
nav a:hover { color: var(--fg); }
nav a.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 2.75rem; padding: 0 1.25rem; border-radius: 999px; font-weight: 600;
  border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-ghost { border-color: var(--line); color: var(--fg); }
.hero { position: relative; overflow: hidden; min-height: 32rem; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(90deg, #05080e 0%, rgba(5,8,14,.75) 45%, rgba(5,8,14,.2) 100%); }
.hero .content { position: relative; padding: 5rem 1rem; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 4.5rem); line-height: 0.95; max-width: 22rem; }
.hero .kicker { margin-top: 1rem; font-size: 1.15rem; font-weight: 600; }
.hero .lede { margin-top: 0.75rem; max-width: 26rem; color: var(--muted); line-height: 1.5; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.addr { margin-top: 1.25rem; font-size: 0.9rem; color: var(--muted); }
.brands { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 2rem; }
.brands p { width: 100%; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.plate {
  display: inline-flex; height: 2.25rem; min-width: 9rem; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: var(--card); border-radius: 2px;
  font-family: "Bebas Neue", Impact, sans-serif; letter-spacing: 0.16em; font-size: 0.9rem;
}
.section { padding: 4rem 0; }
.section-head { display: flex; flex-direction: column; gap: 1rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filters button {
  min-height: 2.75rem; padding: 0 1rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--fg); font-weight: 600; cursor: pointer;
}
.filters button.on { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.grid { display: grid; gap: 1rem; margin-top: 2rem; }
.card { overflow: hidden; border: 1px solid var(--line); background: var(--card); border-radius: 0.75rem; }
.card .pic { position: relative; aspect-ratio: 4/3; background: #f7f7f0; }
.card .pic img { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; }
.badge { position: absolute; left: 0.75rem; top: 0.75rem; min-width: 8rem; height: 2rem; font-size: 0.8rem; }
.card .body { padding: 1rem; }
.card .meta { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }
.card h3 { font-size: 1.6rem; margin-top: 0.25rem; }
.card .cls { font-size: 0.9rem; color: var(--muted); }
.card .blurb { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.5; color: var(--muted); }
.note { margin-top: 1.5rem; border-left: 2px solid var(--primary); background: var(--surface); padding: 0.75rem 1rem; font-size: 0.9rem; color: var(--muted); }
.note a { font-weight: 600; color: var(--primary); }
.box {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.box h2 { font-size: 2.25rem; }
.box .sub { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); max-width: 40rem; line-height: 1.6; }
table { width: 100%; max-width: 28rem; font-size: 0.9rem; border-collapse: collapse; margin-top: 1.25rem; }
th { text-align: left; padding: 0.65rem 0; }
td { text-align: right; padding: 0.65rem 0; color: var(--muted); }
tr { border-bottom: 1px solid var(--line); }
.closed { color: var(--closed); }
iframe { width: 100%; border: 0; display: block; }
.yt iframe { aspect-ratio: 16/9; }
.map iframe { height: 20rem; }
footer { border-top: 1px solid var(--line); padding: 2rem 1rem 2.5rem; text-align: center; color: var(--muted); font-size: 0.9rem; }
footer .logo { height: 3.5rem; margin: 0 auto 1rem; }
footer p { margin: 0.4rem 0; }
.social { display: flex; gap: 1rem; justify-content: center; margin-top: 0.75rem; }
.menu {
  display: inline-flex;
  width: 2.75rem;
  padding: 0;
  border-radius: 999px;
}
.mobile { display: none; flex-direction: column; gap: 0.25rem; padding: 0.75rem 1rem 1rem; border-top: 1px solid var(--line); }
.mobile.open { display: flex; }
.mobile a { min-height: 2.75rem; display: flex; align-items: center; }
@media (min-width: 1024px) {
  nav { display: flex; }
  .menu { display: none; }
  .mobile, .mobile.open { display: none; }
  .hero h1 { font-size: 4.5rem; }
  .brands p { width: auto; margin-right: 0.5rem; }
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .visit { grid-template-columns: 1fr 1fr; }
  .box { padding: 2rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .visit { grid-template-columns: 1fr 1fr; }
}
