@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-700.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../assets/fonts/bvp-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../assets/fonts/bvp-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../assets/fonts/bvp-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../assets/fonts/bvp-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --lime: #a6c844;
  --lime-bright: #c3e05c;
  --lime-dark: #5d7a1e;
  --red: #c1272d;
  --red-dark: #9c1b21;
  --ink: #191d12;
  --ink-soft: #2a2f1f;
  --cream: #f6f4ea;
  --paper: #fffdf5;
  --chalk: #20261a;
  --line: rgba(25, 29, 18, 0.14);
  --shadow: 0 18px 45px rgba(25, 29, 18, 0.14);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Be Vietnam Pro", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.accent-lime {
  color: var(--lime-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
}

.btn-red {
  background: var(--red);
  color: var(--paper);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.text-link {
  font-weight: 600;
  color: var(--lime-dark);
  border-bottom: 2px solid var(--lime);
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(25, 29, 18, 0.92);
  backdrop-filter: blur(10px);
  color: var(--cream);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--red), var(--red-dark));
  color: var(--lime-bright);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: inset 0 0 0 2px rgba(198, 224, 92, 0.5);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-sub {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--lime-bright);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:not(.btn):hover {
  color: var(--lime-bright);
}

.nav-call {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(166, 200, 68, 0.22), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(193, 39, 45, 0.25), transparent 55%),
    var(--ink);
  color: var(--cream);
  padding: 5.5rem 0 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--lime-bright);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  font-weight: 900;
}

.hero-tagline {
  margin-top: 1.2rem;
  max-width: 34rem;
  font-size: 1.12rem;
  color: rgba(246, 244, 234, 0.85);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.meta-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 244, 234, 0.28);
  font-size: 0.85rem;
  background: rgba(246, 244, 234, 0.06);
}

.status-chip {
  border-color: rgba(166, 200, 68, 0.6);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8a9080;
  transition: background 0.3s ease;
}

.status-chip.is-open .status-dot {
  background: var(--lime-bright);
  box-shadow: 0 0 0 4px rgba(166, 200, 68, 0.25);
}

.status-chip.is-closed .status-dot {
  background: var(--red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

.hero-board {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chalkboard {
  width: 100%;
  max-width: 380px;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255, 255, 255, 0.05), transparent 50%),
    var(--chalk);
  border: 6px solid #6b5233;
  border-radius: 10px;
  padding: 1.8rem 1.9rem;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  animation: sway 7s ease-in-out infinite alternate;
  transform-origin: top center;
}

@keyframes sway {
  from {
    transform: rotate(-1.2deg);
  }
  to {
    transform: rotate(-2deg);
  }
}

.chalk {
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  color: #eef2df;
  font-size: 1.02rem;
  padding: 0.32rem 0;
  border-bottom: 1px dashed rgba(238, 242, 223, 0.25);
}

.chalk:last-of-type {
  border-bottom: 0;
}

.chalk em {
  font-style: normal;
  color: var(--lime-bright);
}

.chalk-title {
  font-size: 1.35rem;
  border-bottom: 2px solid var(--lime-bright);
  margin-bottom: 0.6rem;
}

.chalk-note {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #f4c9a8;
}

.board-legs {
  display: flex;
  gap: 200px;
}

.board-legs span {
  width: 8px;
  height: 34px;
  background: #6b5233;
  border-radius: 0 0 4px 4px;
}

.marquee {
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
  border-block: 3px solid var(--ink);
  padding: 0.65rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  animation: marquee 26s linear infinite;
  width: max-content;
}

.marquee-track i {
  font-style: normal;
  color: var(--red);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.highlights {
  padding: 4.5rem 0;
  background: var(--cream);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.highlight-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: 0 8px 24px rgba(25, 29, 18, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.highlight-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: rgba(25, 29, 18, 0.72);
  font-size: 0.96rem;
}

.menu-section {
  background:
    radial-gradient(800px 400px at 110% 0%, rgba(166, 200, 68, 0.12), transparent 55%),
    var(--paper);
  padding: 5rem 0 5.5rem;
  border-block: 3px solid var(--ink);
}

.gallery {
  background: var(--cream);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 10px 28px rgba(25, 29, 18, 0.12);
  min-height: 0;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item.wide img {
  aspect-ratio: 2 / 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem 1.1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(25, 29, 18, 0.85));
  color: var(--cream);
  font-size: 0.84rem;
}

.gallery-item figcaption span {
  font-weight: 500;
}

.gallery-item figcaption b {
  white-space: nowrap;
  color: var(--lime-bright);
}

.gallery-hint {
  text-align: center;
  margin-top: 2.2rem;
  font-size: 1.02rem;
}

.section-head {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: 2.6rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.section-head h2,
.about h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}

.section-sub {
  margin-top: 0.9rem;
  color: rgba(25, 29, 18, 0.66);
  font-size: 0.98rem;
}

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 2.8rem;
}

.filter-btn {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
}

.filter-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.menu-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.menu-group {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.9rem 1.5rem;
  box-shadow: 0 10px 28px rgba(25, 29, 18, 0.07);
}

.menu-group.is-hidden {
  display: none;
}

.group-title {
  font-size: 1.45rem;
  color: var(--red-dark);
  margin-bottom: 1.1rem;
}

.group-note {
  font-size: 0.85rem;
  color: rgba(25, 29, 18, 0.6);
  margin: -0.6rem 0 1rem;
}

.dish-list {
  list-style: none;
}

.dish {
  padding: 0.7rem 0;
  border-bottom: 1px dotted rgba(25, 29, 18, 0.25);
}

.dish:last-child {
  border-bottom: 0;
}

.dish-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.dish-name {
  font-weight: 600;
  font-size: 0.99rem;
}

.dish-no {
  display: inline-grid;
  place-items: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding-inline: 0.3rem;
  margin-right: 0.5rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime-bright);
  font-size: 0.78rem;
  font-weight: 700;
}

.dish-price {
  font-weight: 700;
  white-space: nowrap;
  color: var(--red-dark);
}

.dish-price::after {
  content: " €";
  font-weight: 600;
  font-size: 0.82em;
}

.dish-desc {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: rgba(25, 29, 18, 0.66);
}

.tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(25, 29, 18, 0.7);
  vertical-align: middle;
}

.tag.spicy {
  border-color: var(--red);
  color: var(--red);
}

.tag.fav {
  border-color: var(--lime-dark);
  background: var(--lime);
  color: var(--ink);
}

.dish.is-hidden {
  display: none;
}

.menu-service-note {
  text-align: center;
  font-size: 0.92rem;
  color: rgba(25, 29, 18, 0.7);
  margin-bottom: 1.6rem;
}

.menu-service-note a {
  font-weight: 600;
  color: var(--red-dark);
}

.menu-search {
  max-width: 26rem;
  margin: 0 auto 2.4rem;
  text-align: left;
}

.menu-search label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(25, 29, 18, 0.6);
  margin-bottom: 0.35rem;
}

.menu-search input {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
}

.menu-search input:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

.noscript-note {
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
}

.legend {
  margin-top: 3rem;
  background: var(--cream);
  border: 1px dashed rgba(25, 29, 18, 0.3);
  border-radius: var(--radius);
  padding: 1.7rem 2rem;
  font-size: 0.85rem;
  color: rgba(25, 29, 18, 0.72);
}

.legend h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.legend p + p {
  margin-top: 0.5rem;
}

.legend-note {
  font-style: italic;
}

.about {
  padding: 5.5rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about-copy p {
  margin-top: 1rem;
  color: rgba(25, 29, 18, 0.75);
  max-width: 32rem;
}

.about-facts {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.6rem;
}

.about-facts li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.96rem;
}

.about-facts li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--red);
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.9rem;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--paper);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.about-photo:hover img {
  transform: scale(1.04);
}

.about-photo.main {
  grid-column: 1 / -1;
}

.about-photo.main img {
  aspect-ratio: 16 / 10;
}

.visit {
  background:
    radial-gradient(700px 400px at 0% 10%, rgba(193, 39, 45, 0.16), transparent 55%),
    var(--ink);
  color: var(--cream);
  padding: 5.5rem 0;
}

.section-head.light .section-kicker {
  color: var(--lime-bright);
}

.section-head.light .section-sub {
  color: rgba(246, 244, 234, 0.7);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}

.visit-card {
  background: rgba(246, 244, 234, 0.05);
  border: 1px solid rgba(246, 244, 234, 0.16);
  border-radius: var(--radius);
  padding: 1.9rem;
}

.visit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  color: var(--lime-bright);
}

.visit-card p,
.visit-card address {
  font-style: normal;
  color: rgba(246, 244, 234, 0.82);
  font-size: 0.96rem;
  margin-bottom: 1rem;
}

.hours {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dotted rgba(246, 244, 234, 0.3);
  padding-bottom: 0.4rem;
}

.hours dt {
  color: rgba(246, 244, 234, 0.75);
}

.hours dd {
  font-weight: 600;
}

.visit .status-chip {
  border-color: rgba(166, 200, 68, 0.6);
}

.visit .text-link {
  color: var(--lime-bright);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--lime);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.15);
}

.map-facade {
  display: grid;
  place-items: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 380px;
  padding: 2rem;
  border: 0;
  cursor: pointer;
  background:
    radial-gradient(700px 300px at 30% 20%, rgba(166, 200, 68, 0.25), transparent 60%),
    var(--chalk);
  color: var(--cream);
  font-family: var(--font-body);
  text-align: center;
}

.map-facade strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lime-bright);
}

.map-facade span {
  max-width: 30rem;
  font-size: 0.85rem;
  color: rgba(246, 244, 234, 0.8);
}

.map-facade a {
  color: var(--lime-bright);
  text-decoration: underline;
}

.map-facade:hover strong {
  text-decoration: underline;
}

.btn-route {
  margin-top: 0.4rem;
}

@media print {
  .site-header,
  .hero,
  .marquee,
  .highlights,
  .gallery,
  .about,
  .visit,
  .site-footer,
  .to-top,
  .menu-filter,
  .menu-search,
  .menu-service-note,
  .lightbox,
.legal-page {
  padding: 4rem 0 5rem;
  max-width: 46rem;
}

.legal-page h1 {
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal-hint {
  background: var(--lime);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.placeholder {
  background: repeating-linear-gradient(-45deg, rgba(193, 39, 45, 0.08), rgba(193, 39, 45, 0.08) 12px, transparent 12px, transparent 24px);
  border: 1px dashed var(--red);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--red-dark);
}

.reveal {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .menu-section {
    border: 0;
    padding: 0;
    background: #fff;
  }
  .menu-group {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
    background: #fff;
  }
  .dish {
    break-inside: avoid;
  }
}

.site-footer {
  background: #12150d;
  color: rgba(246, 244, 234, 0.78);
  padding: 3.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(246, 244, 234, 0.14);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-head {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--lime-bright);
  margin-bottom: 0.6rem;
}

.footer-grid a:hover {
  color: var(--lime-bright);
}

.footer-review {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.4rem;
  font-size: 0.8rem;
  color: rgba(246, 244, 234, 0.5);
  text-align: center;
}

.site-nav a.is-active:not(.btn) {
  color: var(--lime-bright);
  border-bottom: 2px solid var(--lime-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track {
    animation: none;
  }
  .chalkboard {
    animation: none;
    transform: rotate(-1.5deg);
  }
  .menu-group.is-appearing {
    animation: none;
  }
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--red);
  color: var(--paper);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--red-dark);
}

.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-board {
    order: -1;
  }
  .chalkboard {
    transform: rotate(0deg);
    animation: none;
    max-width: 420px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .gallery-item.wide img {
    aspect-ratio: 2 / 1;
  }
  .menu-groups {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    inset: 62px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-soft);
    border-bottom: 3px solid var(--lime);
    padding: 0.6rem 6% 1.4rem;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 40;
  }
  .site-nav.is-open {
    transform: none;
  }
  .site-nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid rgba(246, 244, 234, 0.12);
  }
  .site-nav a.nav-call {
    margin-top: 1rem;
    justify-content: center;
    border-bottom: 0;
  }
  .hero {
    padding: 3.6rem 0 4.2rem;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.6rem);
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .board-legs {
    display: none;
  }
  .highlight-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .menu-group {
    padding: 1.4rem 1.2rem 1.1rem;
  }
  .dish-head {
    flex-direction: column;
    gap: 0.15rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide {
    grid-column: auto;
  }
  .gallery-item.wide img {
    aspect-ratio: 1 / 1;
  }
  .gallery-item figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .about-visual {
    grid-template-columns: 1fr;
  }
  .to-top {
    right: 1rem;
    bottom: 1rem;
  }
}
