:root {
  --ink: #0c0b09;
  --ink-2: #161310;
  --ink-3: #211c16;
  --cream: #f4ead7;
  --foam: #fbf6ec;
  --gold: #e0b04a;
  --gold-2: #f0d089;
  --ember: #d4491c;
  --hot: #9b1d12;
  --led: #3dff7a;
  --led-dim: #0b3d1c;
  --muted: #b7aa96;
  --line: rgba(224, 176, 74, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --font: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-led: "Share Tech Mono", ui-monospace, monospace;
  --header-h: 4.25rem;
  --max: 72rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  -webkit-text-size-adjust: 100%;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.55;
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-underline-offset: 0.18em; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 80;
  font-weight: 700;
}
.skip:focus { top: 0.75rem; }

.notice {
  background: #3a160c;
  border-bottom: 1px solid var(--ember);
  color: #ffd2bc;
  text-align: center;
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
  line-height: 1.45;
}
.notice strong { color: #fff; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--foam);
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.brand-text span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--cream);
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.2rem;
}
.site-nav a {
  color: var(--cream);
  text-decoration: none;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a:focus-visible { background: var(--ink-3); color: var(--gold-2); }

.led {
  font-family: var(--font-led);
  background: #04150b;
  color: var(--led);
  border: 1px solid #1a5c32;
  box-shadow: inset 0 0 18px rgba(61, 255, 122, 0.18), 0 0 12px rgba(61, 255, 122, 0.12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.35rem;
  white-space: nowrap;
  text-shadow: 0 0 8px var(--led);
}
.led.is-closed {
  color: #ff6b4a;
  border-color: #5c241a;
  background: #150804;
  box-shadow: inset 0 0 18px rgba(255, 80, 50, 0.18);
  text-shadow: 0 0 8px #ff6b4a;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92dvh, 52rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,9,0.35) 0%, rgba(12,11,9,0.2) 30%, rgba(12,11,9,0.88) 100%),
    linear-gradient(90deg, rgba(12,11,9,0.72) 0%, rgba(12,11,9,0.2) 55%);
}

.hero-copy {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 5.5rem;
  padding-top: 5rem;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
}
.kicker::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 0 0 0.8rem;
  font-weight: 400;
  max-width: 12ch;
}
.hero-lead {
  max-width: 38rem;
  font-size: 1.08rem;
  color: color-mix(in srgb, var(--cream) 88%, white);
  margin: 0 0 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-ember {
  background: var(--ember);
  color: white;
}

/* Quick facts */
.facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: -2.4rem;
  position: relative;
  z-index: 2;
}
.fact {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.fact small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
}
.fact p { margin: 0; font-weight: 550; }
.fact a { color: inherit; text-decoration: none; }
.fact a:hover { color: var(--gold-2); }

/* Sections */
section { padding: 4.2rem 0; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.section-head h2,
.panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  margin: 0;
  font-weight: 400;
  line-height: 0.95;
}
.lede { color: var(--muted); max-width: 38rem; margin: 0.4rem 0 0; }

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.photo-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  min-height: 12rem;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12rem;
}
.photo-strip figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  background: rgba(12,11,9,0.72);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.quotes {
  display: grid;
  gap: 0.75rem;
}
.quotes blockquote {
  margin: 0;
  background: var(--ink-2);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.1rem;
  border-radius: 0 0.9rem 0.9rem 0;
  color: var(--cream);
}
.quotes cite {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
}

/* Menu */
.filters {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.45rem 0.15rem 0.55rem;
  margin: 0 -0.15rem 1.2rem;
  scrollbar-width: thin;
  position: sticky;
  top: var(--header-h);
  z-index: 5;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(10px);
}
.filters button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  min-height: 2.5rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}
.filters button.is-on,
.filters button:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.menu-grid { display: grid; gap: 1rem; }
.menu-card {
  background: var(--foam);
  color: #1d1710;
  border-radius: 1.2rem;
  padding: 1.15rem 1.15rem 1.05rem;
  overflow: hidden;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
  font-weight: 400;
}
.menu-note { color: #6d6252; font-size: 0.9rem; margin: 0 0 0.9rem; }

.rows { display: grid; gap: 0.45rem; }
.row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(29, 23, 16, 0.14);
}
.row:last-child { border-bottom: 0; }
.row b { font-weight: 700; font-variant-numeric: tabular-nums; }
.row span { color: #3b3226; }
.row small { display: block; color: #6d6252; font-weight: 400; }

.chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.7rem; }
.chip {
  background: #efe4cd;
  color: #3b3226;
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.combo-grid {
  display: grid;
  gap: 0.8rem;
}
.combo {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem 1.05rem;
}
.combo-top {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: start;
}
.combo h3 {
  margin: 0;
  font-size: 1.05rem;
}
.price {
  color: var(--gold-2);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.combo p { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.92rem; }
.combo.featured {
  background:
    linear-gradient(180deg, rgba(224,176,74,0.12), transparent 42%),
    var(--ink-2);
  border-color: color-mix(in srgb, var(--gold) 55%, transparent);
}

/* Sauces */
.sauce-grid { display: grid; gap: 0.75rem; }
.sauce {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
}
.sauce h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.sauce p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.heat {
  display: flex;
  gap: 0.28rem;
  margin: 0.55rem 0 0.45rem;
}
.heat i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #3a3228;
  display: block;
}
.heat[data-n="1"] i:nth-child(-n+1),
.heat[data-n="2"] i:nth-child(-n+2) { background: #d9b15a; }
.heat[data-n="3"] i:nth-child(-n+3) { background: #e07a2f; }
.heat[data-n="4"] i:nth-child(-n+4) { background: #d4491c; }
.heat[data-n="5"] i { background: #ff2d2d; }
.sauce-hero {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}
.sauce-hero img {
  width: 11rem;
  max-width: 100%;
  justify-self: start;
  border-radius: 0.8rem;
}

/* Veikkaus */
.veikkaus-grid { display: grid; gap: 0.7rem; }
.vcard {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
}
.vcard h3 { margin: 0 0 0.3rem; font-size: 1.02rem; }
.vcard p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.age {
  display: inline-block;
  margin-top: 1rem;
  border: 1px solid var(--ember);
  color: #ffb4a3;
  border-radius: 0.4rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Visit */
.visit-grid { display: grid; gap: 1rem; }
.kioski-shot {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
}
.kioski-shot img { width: 100%; height: 16rem; object-fit: cover; object-position: 50% 60%; }
.map-wrap {
  overflow: hidden;
  border-radius: 1.2rem;
  min-height: 16rem;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%;
  height: 16rem;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.hours-table th { color: var(--muted); font-weight: 500; }
.today td, .today th { color: var(--gold-2); }

.panel {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 6.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.foot-grid {
  display: grid;
  gap: 1.2rem;
}
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--gold-2); }
.socials { display: flex; gap: 0.8rem; }

.dock {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: calc(0.7rem + env(safe-area-inset-bottom));
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.4rem;
  background: color-mix(in srgb, var(--ink-2) 92%, transparent);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
}
.dock a {
  color: var(--cream);
  text-decoration: none;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.55rem 0.2rem;
  border-radius: 0.75rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dock a:hover,
.dock a:focus-visible { background: var(--ink-3); color: var(--gold-2); }

.hidden { display: none !important; }

@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .photo-strip figure, .photo-strip img { min-height: 16rem; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .combo-grid { grid-template-columns: repeat(2, 1fr); }
  .sauce-grid { grid-template-columns: repeat(2, 1fr); }
  .veikkaus-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1.1fr 0.9fr; }
  .kioski-shot img, .map-wrap iframe { height: 22rem; }
  .sauce-hero { grid-template-columns: auto 1fr; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .dock { display: none; }
  .site-footer { padding-bottom: 2.4rem; }
  .menu-grid { grid-template-columns: 1.15fr 0.85fr; }
}

@media (min-width: 960px) {
  .combo-grid { grid-template-columns: repeat(3, 1fr); }
  .sauce-grid { grid-template-columns: repeat(3, 1fr); }
  .veikkaus-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 719px) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: color-mix(in srgb, var(--ink) 94%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }
  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav ul {
    flex-direction: column;
    padding: 0.6rem 1rem 1rem;
  }
  .site-nav a { display: block; padding: 0.85rem 0.8rem; }
  .header-led { display: none; }
  .hero-copy { margin-bottom: 7.2rem; }
  .hero { min-height: 100dvh; }
  .brand-text strong { font-size: 1.18rem; }
}

@media (max-width: 380px) {
  .brand-text span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media print {
  .site-header, .dock, .hero-bg, .filters, .nav-toggle, .led, .map-wrap { display: none !important; }
  body { background: #fff; color: #111; }
  .menu-card, .combo, .panel { background: #fff; color: #111; border: 1px solid #ccc; box-shadow: none; }
  .price, a { color: #111; }
  .site-footer { padding-bottom: 1rem; color: #333; }
  .hero { min-height: 0; }
  .hero-copy { margin: 0; padding: 1rem 0; }
}
