/* =============================================================
   StreatLab — styles
   Thesis: the field notebook of a roadside burger lab.
   Cream paper, oxblood + charcoal ink, cheese-yellow as the
   rationed reactive highlight.
   Sections: tokens · base · type · buttons · nav · hero · about
   · featured · menu · why · location · gallery · contact ·
   footer · reveals · responsive
   ============================================================= */

/* ----------------------------- TOKENS ----------------------------- */
:root {
  /* color (OKLCH, tinted toward brand hue) */
  --paper: oklch(0.955 0.026 84);
  --paper-2: oklch(0.925 0.034 82);
  --beige: oklch(0.905 0.04 80);
  --ink: oklch(0.205 0.012 40);
  --ink-soft: oklch(0.40 0.02 40);
  --ink-mute: oklch(0.52 0.018 45);
  --oxblood: oklch(0.455 0.155 24);
  --oxblood-deep: oklch(0.37 0.14 23);
  --burgundy: oklch(0.27 0.10 22);
  --burgundy-2: oklch(0.225 0.075 23);
  --cheese: oklch(0.82 0.145 80);
  --cheese-deep: oklch(0.74 0.15 72);
  --tomato: oklch(0.62 0.205 28);
  --line: oklch(0.205 0.012 40 / 0.14);
  --line-2: oklch(0.205 0.012 40 / 0.08);

  /* type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --mono: "Martian Mono", ui-monospace, monospace;
  --body: "Manrope", system-ui, sans-serif;

  /* fluid scale */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.88rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.3rem, 1.18rem + 0.55vw, 1.6rem);
  --step-2: clamp(1.7rem, 1.45rem + 1.2vw, 2.4rem);
  --step-3: clamp(2.3rem, 1.85rem + 2.2vw, 3.6rem);
  --step-4: clamp(3rem, 2.1rem + 4.4vw, 6rem);

  /* space */
  --pad: clamp(1.1rem, 4vw, 2rem);
  --gap: clamp(1rem, 2.5vw, 1.6rem);
  --sec: clamp(4rem, 9vw, 8rem);
  --maxw: 1200px;

  /* form */
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 0 var(--line), 0 8px 22px -16px oklch(0.27 0.1 22 / 0.5);
  --shadow: 0 22px 50px -30px oklch(0.27 0.1 22 / 0.55);
  --ease: cubic-bezier(0.16, 1, 0.3, 1); /* ease-out-expo-ish */
}

/* ----------------------------- BASE ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  /* lab-notebook paper: faint dot grid + warm wash */
  background-image:
    radial-gradient(oklch(0.45 0.155 24 / 0.05) 1px, transparent 1.4px),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  background-size: 26px 26px, 100% 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; }
.muted { color: var(--ink-mute); }
.mono { font-family: var(--mono); font-weight: 500; letter-spacing: -0.02em; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 0.6rem 1rem;
  border-radius: 10px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--tomato); outline-offset: 3px; border-radius: 4px; }

/* ----------------------------- TYPE ----------------------------- */
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.02; margin: 0; letter-spacing: -0.02em; }
.section-title { font-size: var(--step-3); font-weight: 800; }
.lead { font-size: var(--step-1); line-height: 1.45; color: var(--ink-soft); max-width: 56ch; }
p { max-width: 68ch; }

.kicker {
  font-family: var(--mono);
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--oxblood);
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin: 0 0 1rem;
}
.kicker--light { color: var(--cheese); }
.kicker__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--tomato); box-shadow: 0 0 0 4px oklch(0.62 0.205 28 / 0.2); }

.section-head { max-width: var(--maxw); margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-intro { color: var(--ink-soft); margin-top: 0.8rem; font-size: var(--step-1); }

/* ----------------------------- BUTTONS ----------------------------- */
.btn {
  --bg: var(--ink); --fg: var(--paper); --bd: var(--ink);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--body); font-weight: 700; font-size: var(--step-0);
  text-decoration: none; cursor: pointer;
  padding: 0.85em 1.5em; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  border: 2px solid var(--bd);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.25s, color 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px oklch(0.27 0.1 22 / 0.6); }
.btn:active { transform: translateY(0); }
/* sauce-drip shine */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, oklch(1 0 0 / 0.28) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

.btn--primary { --bg: var(--oxblood); --fg: var(--paper); --bd: var(--oxblood); }
.btn--primary:hover { --bg: var(--oxblood-deep); }
.btn--accent { --bg: var(--cheese); --fg: var(--burgundy); --bd: var(--cheese); }
.btn--accent:hover { --bg: var(--cheese-deep); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); }
.btn--block { width: 100%; }

/* ----------------------------- NAV ----------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: oklch(0.955 0.026 84 / 0.86);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -26px oklch(0.27 0.1 22 / 0.8);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 0.75rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand__mark { transition: transform 0.5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__word { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--ink); }
.brand__lab { color: var(--oxblood); }
.brand__word--lg { font-size: clamp(2rem, 6vw, 3rem); }

.nav__links { display: flex; align-items: center; gap: clamp(0.4rem, 1.6vw, 1.4rem); }
.nav__link {
  position: relative; text-decoration: none; font-weight: 600; font-size: var(--step--1);
  color: var(--ink-soft); padding: 0.35rem 0.15rem; transition: color 0.2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--oxblood); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--oxblood); }
.nav__cta { padding: 0.55em 1.15em; font-size: var(--step--1); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; border: 2px solid var(--ink); border-radius: 12px;
  background: var(--paper); cursor: pointer;
}
.nav__toggle span { display: block; height: 2.5px; width: 22px; margin-inline: auto; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }

/* ----------------------------- LAB BG ----------------------------- */
.lab-bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.bubble { position: absolute; border-radius: 50%; border: 2px solid oklch(0.455 0.155 24 / 0.12); }
.bubble::after { content: ""; position: absolute; inset: 22%; border-radius: 50%; background: oklch(0.82 0.145 80 / 0.1); }
.b1 { width: 120px; height: 120px; left: 6%; top: 18%; animation: drift 22s var(--ease) infinite; }
.b2 { width: 60px; height: 60px; left: 82%; top: 30%; animation: drift 18s var(--ease) infinite reverse; }
.b3 { width: 200px; height: 200px; left: 70%; top: 65%; animation: drift 28s var(--ease) infinite; }
.b4 { width: 40px; height: 40px; left: 20%; top: 75%; animation: drift 16s var(--ease) infinite reverse; }
.b5 { width: 90px; height: 90px; left: 45%; top: 50%; animation: drift 24s var(--ease) infinite; }
@keyframes drift { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-40px) translateX(18px); } }

/* ----------------------------- HERO ----------------------------- */
.hero { position: relative; padding: clamp(2rem, 6vw, 4.5rem) var(--pad) var(--sec); }
.hero__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.hero__title { font-size: var(--step-4); font-weight: 800; letter-spacing: -0.04em; margin: 0.4rem 0 1.2rem; }
.hero__title .hl { color: var(--oxblood); position: relative; }
.hero__title .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.08em; height: 0.22em; z-index: -1;
  background: var(--cheese); border-radius: 4px; transform: rotate(-1.2deg);
}
.hero__sub { font-size: var(--step-1); color: var(--ink-soft); max-width: 48ch; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.8rem 0 2.2rem; }

.hero__facts {
  list-style: none; margin: 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: clamp(1rem, 4vw, 2.4rem);
}
.hero__facts li { display: flex; flex-direction: column; font-size: var(--step--1); }
.hero__facts strong { font-family: var(--display); font-weight: 700; font-size: var(--step-0); }
.hero__facts span { color: var(--ink-mute); }
.hero__status { padding-left: 1.4rem; position: relative; }
.hero__status .dot {
  position: absolute; left: 0; top: 0.35em; width: 11px; height: 11px; border-radius: 50%;
  background: oklch(0.62 0.16 145); box-shadow: 0 0 0 0 oklch(0.62 0.16 145 / 0.6); animation: pulse 2.2s infinite;
}
.hero__status.is-closed .dot { background: var(--tomato); animation: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 oklch(0.62 0.16 145 / 0.55); } 70% { box-shadow: 0 0 0 10px oklch(0.62 0.16 145 / 0); } 100% { box-shadow: 0 0 0 0 oklch(0.62 0.16 145 / 0); } }

/* hero visual */
.hero__visual { position: relative; aspect-ratio: 1; }
.hero__plate {
  position: absolute; inset: 6% 6% 6% 6%; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, oklch(0.93 0.05 80), var(--beige) 70%);
  border: 2px solid var(--line); box-shadow: var(--shadow), inset 0 0 0 12px oklch(1 0 0 / 0.25);
  display: grid; place-items: center; overflow: hidden;
}
.hero__burger {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  animation: floatY 6s var(--ease) infinite;
}
.hero__placeholder { display: none; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--oxblood); font-family: var(--mono); font-size: var(--step--1); }
.hero__plate.is-missing .hero__burger { display: none; }
.hero__plate.is-missing .hero__placeholder { display: flex; }
.hero__mascot {
  position: absolute; right: -4%; bottom: -3%; width: clamp(120px, 30%, 200px); height: auto;
  filter: drop-shadow(0 18px 22px oklch(0.27 0.1 22 / 0.35));
}
.tag {
  position: absolute; font-family: var(--mono); font-weight: 600; font-size: 0.72rem;
  padding: 0.5em 0.9em; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.tag--specimen { top: 4%; left: -4%; background: var(--ink); color: var(--paper); transform: rotate(-6deg); }
.tag--tested { bottom: 16%; left: -8%; background: var(--cheese); color: var(--burgundy); transform: rotate(5deg); }

.doodle { position: absolute; stroke: var(--oxblood); stroke-width: 2; fill: none; opacity: 0.18; }
.doodle circle { fill: oklch(0.45 0.155 24 / 0.12); }
.doodle--molecule { width: clamp(90px, 12vw, 150px); top: 8%; right: 4%; animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.float { animation: floatY 6s var(--ease) infinite; }
.float-slow { animation: floatY 8s var(--ease) infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ----------------------------- ABOUT ----------------------------- */
.about { padding: var(--sec) var(--pad); }
.about__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center;
}
.about__media { position: relative; display: grid; place-items: center; }
.about__media::before {
  content: ""; position: absolute; inset: 8% 4%; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--cheese), var(--tomato));
  transform: rotate(-3deg); opacity: 0.18;
}
.about__mascot { position: relative; width: clamp(160px, 60%, 280px); height: auto; filter: drop-shadow(0 22px 26px oklch(0.27 0.1 22 / 0.3)); }
.about__note {
  position: absolute; right: 0; bottom: 4%; max-width: 220px;
  background: var(--ink); color: var(--paper); padding: 0.9rem 1.1rem; border-radius: 14px;
  box-shadow: var(--shadow); transform: rotate(2deg);
}
.about__note .mono { color: var(--cheese); font-size: 0.7rem; display: block; margin-bottom: 0.3rem; }
.about__note p { margin: 0; font-size: var(--step--1); }

.badges { list-style: none; margin: 1.8rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.badges li {
  display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: var(--step--1);
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: 999px; padding: 0.5em 1em;
  box-shadow: 3px 3px 0 var(--ink);
}
.badges__ico { font-size: 1.1em; }

/* ----------------------------- FEATURED ----------------------------- */
.featured { padding: 0 var(--pad) var(--sec); }
.featured__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap);
}
.fcard, .mcard {
  position: relative; background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
  display: flex; flex-direction: column;
}
.fcard:hover, .mcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--oxblood); }
.fcard__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.fcard__body h3 { font-size: var(--step-1); font-weight: 700; }
.fcard__body p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; flex: 1; }
.fcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: 0.4rem; }

/* media block (shared) */
.mcard__media, .fcard .mcard__media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--beige);
}
.mcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.fcard:hover .mcard__media img, .mcard:hover .mcard__media img { transform: scale(1.07); }
.mcard__media .ph {
  position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; text-align: center; font-family: var(--mono); font-size: 0.72rem; color: var(--oxblood);
  background:
    repeating-linear-gradient(135deg, oklch(0.45 0.155 24 / 0.05) 0 10px, transparent 10px 20px),
    radial-gradient(circle at 50% 35%, var(--paper), var(--beige));
}
.mcard__media.is-missing img { display: none; }
.mcard__media.is-missing .ph { display: flex; }
.mcard__media .ph img { opacity: 0.85; }

/* price + badges + allergens */
.price { font-family: var(--mono); font-weight: 700; font-size: var(--step-0); color: var(--oxblood); white-space: nowrap; }
.price--label { font-size: var(--step--1); }
.price--ask { color: var(--ink-mute); font-style: normal; }
.badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  font-family: var(--mono); font-weight: 600; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.03em;
  padding: 0.4em 0.7em; border-radius: 999px; background: var(--ink); color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.badge--bestseller { background: var(--tomato); color: var(--paper); }
.badge--premium { background: var(--ink); color: var(--cheese); }
.badge--cheesy, .badge--loaded { background: var(--cheese); color: var(--burgundy); }
.badge--vegan { background: oklch(0.6 0.14 145); color: var(--paper); }

.mcard__alg { display: inline-flex; gap: 0.3rem; flex-wrap: wrap; }
.alg {
  font-family: var(--mono); font-size: 0.66rem; font-weight: 600; text-decoration: none;
  width: 1.6em; height: 1.6em; display: inline-grid; place-items: center;
  border: 1.4px solid var(--line); border-radius: 6px; color: var(--ink-soft);
}

/* ----------------------------- MENU ----------------------------- */
.menu { padding: var(--sec) var(--pad); }
.menu__tabs {
  position: sticky; top: 70px; z-index: 40;
  max-width: var(--maxw); margin: 0 auto 2rem;
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem;
  background: oklch(0.955 0.026 84 / 0.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  scrollbar-width: none;
}
.menu__tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto; font-family: var(--body); font-weight: 700; font-size: var(--step--1);
  white-space: nowrap; padding: 0.6em 1.1em; border-radius: 999px; border: none; cursor: pointer;
  background: transparent; color: var(--ink-soft); transition: background 0.25s, color 0.25s;
}
.tab:hover { color: var(--ink); background: var(--paper-2); }
.tab[aria-selected="true"] { background: var(--oxblood); color: var(--paper); }

.menu__panels { max-width: var(--maxw); margin-inline: auto; }
.panel.fade { animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.menu__notes { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.menu__note {
  font-family: var(--mono); font-size: var(--step--1); font-weight: 500;
  background: var(--ink); color: var(--cheese); padding: 0.5em 0.9em; border-radius: 10px;
}
.menu__cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--gap); }
.mcard__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.mcard__top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.mcard__top h4 { font-size: var(--step-1); font-weight: 700; }
.mcard__body p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; flex: 1; }

/* list layout (sauces, beverages) */
.menu__list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: clamp(1.5rem, 5vw, 4rem); }
.mrow {
  display: flex; align-items: baseline; gap: 0.5rem; padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-2); break-inside: avoid;
}
.mrow__name { font-weight: 600; }
.mrow__dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-3px); }
.mrow .price { font-size: var(--step-0); }
.mrow .mcard__alg { flex: 0 0 auto; }

/* legend */
.legend {
  max-width: var(--maxw); margin: clamp(2rem, 5vw, 3.5rem) auto 0;
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.legend__title { font-size: var(--step-1); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.legend__title .mono { color: var(--cheese); font-size: 0.75rem; border: 1px solid var(--cheese); border-radius: 6px; padding: 0.2em 0.5em; }
.legend__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.7rem; }
.legend__list li { display: flex; align-items: center; gap: 0.6rem; font-size: var(--step--1); }
.legend__list .alg { color: var(--cheese); border-color: oklch(0.82 0.145 80 / 0.5); }
.legend__warn { font-size: var(--step--1); color: oklch(0.92 0.02 84 / 0.8); margin: 0; border-top: 1px solid oklch(1 0 0 / 0.12); padding-top: 1rem; }

/* ----------------------------- WHY (dark band) ----------------------------- */
.why {
  position: relative; padding: var(--sec) var(--pad);
  background:
    radial-gradient(900px 500px at 85% 0%, oklch(0.45 0.155 24 / 0.45), transparent 70%),
    linear-gradient(170deg, var(--burgundy), var(--burgundy-2));
  color: var(--paper); overflow: hidden;
}
.section-head--light .section-title, .why .section-title { color: var(--paper); }
.why__grid {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap);
}
.why__card {
  background: oklch(1 0 0 / 0.05); border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: var(--radius-lg); padding: 1.6rem 1.5rem;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.why__card:hover { transform: translateY(-6px); background: oklch(1 0 0 / 0.09); }
.why__num { display: block; font-size: var(--step-2); color: var(--cheese); margin-bottom: 0.6rem; }
.why__card h3 { font-size: var(--step-1); font-weight: 700; margin-bottom: 0.5rem; }
.why__card p { color: oklch(0.92 0.02 84 / 0.82); font-size: var(--step--1); margin: 0; }
/* oxblood line-art on a dark band needs a cream "specimen coin" backing */
.why__mascot {
  position: absolute; right: clamp(8px, 3vw, 40px); bottom: -34px; z-index: 1;
  width: clamp(120px, 16vw, 168px); height: clamp(120px, 16vw, 168px);
  object-fit: contain; padding: 16px;
  background: radial-gradient(circle at 50% 40%, var(--paper), var(--beige));
  border-radius: 50%; box-shadow: var(--shadow); border: 2px solid var(--cheese);
}

/* ----------------------------- LOCATION ----------------------------- */
.location { padding: var(--sec) var(--pad); }
.location__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch;
}
.location__dl { margin: 1.5rem 0 2rem; display: grid; gap: 1.1rem; }
.location__dl div { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; align-items: baseline; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.location__dl dt { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--oxblood); }
.location__dl dd { margin: 0; font-weight: 600; }
.location__dl a { color: var(--ink); text-underline-offset: 3px; }
.location__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.location__map {
  position: relative; min-height: 340px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--ink); box-shadow: var(--shadow); background: var(--beige);
}
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(0.92) contrast(1.02); }
.location__mapfallback {
  position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; text-align: center; font-family: var(--mono); color: var(--oxblood);
  background: radial-gradient(circle at 50% 40%, var(--paper), var(--beige));
}
.location__map.is-missing iframe { display: none; }
.location__map.is-missing .location__mapfallback { display: flex; }

/* ----------------------------- GALLERY ----------------------------- */
.gallery { padding: 0 var(--pad) var(--sec); }
.gallery__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.8rem;
}
.gtile {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.gtile--wide { grid-column: span 2; }
.gtile--tall { grid-row: span 2; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gtile:hover img { transform: scale(1.08); }
.gtile__ph, .gtile__art {
  position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem; font-family: var(--mono); font-size: 0.7rem; color: var(--oxblood);
}
.gtile .gtile__ph { background: radial-gradient(circle at 50% 35%, var(--paper), var(--beige)); }
.gtile.is-missing img { display: none; }
.gtile.is-missing .gtile__ph { display: flex; }
.gtile--art .gtile__art { display: flex; }
.gtile__art { color: var(--paper); }
.gtile__art--truck { background: linear-gradient(150deg, var(--oxblood), var(--burgundy)); }
.gtile__art--bts { background: linear-gradient(150deg, var(--ink), var(--oxblood-deep)); }
.gtile__art--night { background: linear-gradient(150deg, var(--burgundy), var(--ink)); }
.gtile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 0.9rem;
  font-weight: 600; font-size: var(--step--1); color: var(--paper);
  background: linear-gradient(transparent, oklch(0.2 0.012 40 / 0.82));
}
.gtile figcaption .mono { color: var(--cheese); font-size: 0.62rem; }

/* ----------------------------- CONTACT (dark band) ----------------------------- */
.contact {
  padding: var(--sec) var(--pad);
  background: linear-gradient(180deg, var(--ink), var(--burgundy-2)); color: var(--paper);
}
.contact__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start;
}
.contact .section-title { color: var(--paper); }
.contact__lead { color: oklch(0.92 0.02 84 / 0.8); margin: 0.8rem 0 1.6rem; font-size: var(--step-1); }
.contact__intro { position: relative; }
.contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }
.contact__list li { display: flex; align-items: center; gap: 0.8rem; }
.contact__list .mono { color: var(--cheese); font-size: 0.7rem; border: 1px solid oklch(0.82 0.145 80 / 0.4); border-radius: 6px; padding: 0.25em 0.5em; }
.contact__list a { color: var(--paper); text-underline-offset: 3px; }
.contact__mascot { width: 130px; margin-top: 2rem; opacity: 0.95; filter: drop-shadow(0 14px 18px oklch(0 0 0 / 0.4)); }

.contact__form {
  background: oklch(0.955 0.026 84 / 0.97); color: var(--ink);
  padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.form__row { display: grid; gap: 0.4rem; margin: 0 0 1.1rem; }
.form__row label { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--oxblood); }
.contact__form input, .contact__form textarea {
  font: inherit; color: var(--ink); width: 100%; padding: 0.8em 0.95em;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--oxblood); box-shadow: 0 0 0 4px oklch(0.455 0.155 24 / 0.14); }
.contact__form [aria-invalid="true"] { border-color: var(--tomato); }
.form__err { color: var(--tomato); font-size: var(--step--1); min-height: 1em; font-weight: 600; }
.form__success {
  margin: 1rem 0 0; padding: 0.9rem 1.1rem; border-radius: 12px;
  background: oklch(0.6 0.14 145 / 0.16); border: 1px solid oklch(0.6 0.14 145 / 0.5); color: var(--ink); font-weight: 600;
}

/* ----------------------------- FOOTER ----------------------------- */
.footer { background: var(--burgundy-2); color: oklch(0.92 0.02 84 / 0.86); padding: var(--sec) var(--pad) 2rem; }
.footer__grid {
  position: relative; max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
}
.footer__brand .brand__word--lg { color: var(--paper); }
.footer__tag { font-family: var(--display); font-weight: 700; font-size: var(--step-1); color: var(--cheese); margin: 0.4rem 0 0.6rem; }
.footer__find { color: oklch(0.92 0.02 84 / 0.7); max-width: 32ch; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer h4 { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--cheese); margin-bottom: 0.4rem; }
.footer__links a, .footer__contact a { color: oklch(0.92 0.02 84 / 0.86); text-decoration: none; transition: color 0.2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--paper); }
.footer__mark { position: absolute; right: 0; top: -30px; width: 130px; opacity: 0.16; }
.footer__bar {
  max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.4rem; border-top: 1px solid oklch(1 0 0 / 0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: var(--step--1);
}
.footer__credit { color: oklch(0.92 0.02 84 / 0.6); margin: 0; }
.footer__credit a { color: var(--cheese); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer__credit a:hover { text-decoration: underline; }
.footer__copy { margin: 0; color: oklch(0.92 0.02 84 / 0.6); }

/* ----------------------------- REVEALS ----------------------------- */
.reveal, .section-head, .about__grid, .why__card, .location__grid, .contact__grid {
  opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.is-in { opacity: 1 !important; transform: none !important; }

/* Reduced-motion handling is intentionally relaxed (owner request) so animations
   play regardless of the OS "reduced motion" setting. A <noscript> block in each
   page guarantees reveal content stays visible if JavaScript is disabled. */

/* ----------------------------- RESPONSIVE ----------------------------- */
@media (max-width: 960px) {
  .hero__grid, .about__grid, .location__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__grid { gap: 3rem; }
  .hero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .contact__mascot { display: none; }
  .gallery__grid { grid-auto-rows: 170px; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    padding: 2rem; background: var(--paper); border-left: 1.5px solid var(--line);
    transform: translateX(105%); transition: transform 0.45s var(--ease); box-shadow: var(--shadow);
  }
  .nav__links.is-open { transform: none; }
  .nav__link { font-size: 1.3rem; }
  .nav__cta { margin-top: 0.5rem; }
  .nav__toggle { display: flex; }
  .menu__tabs { top: 64px; }
  .menu__list { columns: 1; }
  .legend__warn, .footer__bar { font-size: 0.78rem; }
}

@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gtile--wide { grid-column: span 2; }
  .gtile--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .location__cta .btn { flex: 1 1 auto; }
  .about__note { position: static; transform: none; margin-top: 1rem; max-width: none; }
  .location__dl div { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ============ MASCOT SIZING + NEW COMPONENTS (authoritative) ============ */
img.hero__mascot, img.about__mascot, img.why__mascot,
img.location__mascot, img.contact__mascot, img.footer__mark { height: auto; }

/* featured -> full-menu call to action */
.featured__more {
  max-width: var(--maxw); margin: clamp(2.2rem, 5vw, 3.6rem) auto 0;
  display: grid; grid-template-columns: minmax(0, 190px) 1fr; gap: clamp(1.2rem, 4vw, 2.8rem);
  align-items: center;
  background: var(--beige); border: 1.5px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.3rem, 3.5vw, 2.2rem);
}
.featured__more img {
  width: 100%; max-width: 190px; height: auto; justify-self: center;
  filter: drop-shadow(0 16px 18px oklch(0.27 0.1 22 / 0.25));
}
.featured__more h3 { font-size: var(--step-2); font-weight: 800; margin-bottom: 0.5rem; }
.featured__more p { color: var(--ink-soft); margin: 0 0 1.3rem; }

/* location mascot (light section, sits top-right of the info column) */
.location__info { position: relative; }
.location__mascot {
  position: absolute; top: -6px; right: 0; width: clamp(92px, 13vw, 144px);
  pointer-events: none; filter: drop-shadow(0 14px 16px oklch(0.27 0.1 22 / 0.22));
}

/* contact: cream "specimen panel" so the oxblood mascot reads on the dark band */
.contact__art {
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 38%, var(--paper), var(--beige));
  border: 2px solid var(--cheese); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.6rem); box-shadow: var(--shadow);
}
.contact__mascot { width: 100%; max-width: 320px; height: auto; margin: 0; opacity: 1;
  filter: drop-shadow(0 14px 18px oklch(0.27 0.1 22 / 0.3)); }
.contact__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.7rem 0 1.4rem; }
.btn--ghost-light { --bg: transparent; --fg: var(--paper); --bd: var(--paper); }
.btn--ghost-light:hover { --bg: var(--paper); --fg: var(--ink); }

/* social icon buttons */
.socials { display: flex; gap: 0.6rem; }
.socials--footer { margin-top: 1.2rem; }
.social {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  border: 1.6px solid currentColor; color: var(--cheese);
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.social:hover { transform: translateY(-3px); background: var(--cheese); color: var(--burgundy); border-color: var(--cheese); }
.footer .social { color: oklch(0.92 0.02 84 / 0.72); border-color: oklch(1 0 0 / 0.2); }
.footer .social:hover { color: var(--burgundy); background: var(--cheese); border-color: var(--cheese); }

/* footer watermark: tint the oxblood art to a faint cream silhouette on dark */
.footer__mark { height: auto; filter: brightness(0) invert(1); opacity: 0.1; }

@media (max-width: 960px) {
  .contact__mascot { display: block; max-width: 260px; }
  .featured__more { grid-template-columns: 1fr; text-align: center; }
  .featured__more img { max-width: 168px; }
  .featured__more p { margin-inline: auto; }
}
@media (max-width: 560px) {
  .location__mascot { width: 80px; top: -2px; }
}

/* ============ MENU PAGE ============ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.menuhead {
  position: relative; max-width: var(--maxw); margin-inline: auto;
  padding: clamp(2.2rem, 6vw, 4rem) var(--pad) 0;
  display: grid; grid-template-columns: 1.35fr 0.65fr; gap: clamp(1rem, 4vw, 3rem); align-items: center;
}
.menuhead__title { font-size: var(--step-4); font-weight: 800; letter-spacing: -0.04em; margin: 0.3rem 0 1rem; }
.menuhead__sub { font-size: var(--step-1); color: var(--ink-soft); max-width: 52ch; line-height: 1.45; }
.menuhead__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.7rem; }
.menuhead__mascot {
  width: 100%; max-width: 280px; height: auto; justify-self: center;
  filter: drop-shadow(0 18px 22px oklch(0.27 0.1 22 / 0.3));
}
.page-menu .menu { padding-top: clamp(2rem, 5vw, 3.4rem); }
.page-menu .menu__tabs { top: 64px; }
@media (max-width: 760px) {
  .menuhead { grid-template-columns: 1fr; }
  .menuhead__mascot { max-width: 190px; order: -1; }
  .menuhead__actions .btn { flex: 1 1 auto; }
}
