:root {
  --paper: #f8f7f3;
  --surface: #fffdfa;
  --surface-strong: #ffffff;
  --ink: #242321;
  --ink-soft: #5f5b55;
  --muted: #dfdbd2;
  --muted-2: #efebe3;
  --charcoal: #151514;
  --charcoal-2: #25231f;
  --clay: #b8aa95;
  --linen: #ebe4d7;
  --magenta: #bd195f;
  --rose: #f05b8f;
  --lime: #c5d12d;
  --blue: #4a71b7;
  --blue-strong: #0075b2;
  --periwinkle: #8ca4d5;
  --shadow: 0 22px 50px rgba(28, 27, 24, 0.08);
  --radius: 8px;
  --container: 1180px;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 247, 243, 0.9)),
    linear-gradient(90deg, rgba(21, 21, 20, 0.03), transparent 18%, transparent 82%, rgba(21, 21, 20, 0.035)),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(36, 35, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 35, 33, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 58%);
}

body::after {
  content: "";
  position: fixed;
  inset: 14px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(36, 35, 33, 0.055);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--magenta), var(--lime), var(--blue-strong));
  box-shadow: 0 0 18px rgba(189, 25, 95, 0.2);
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 180ms ease-out;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 250, 0.82);
  backdrop-filter: blur(22px) saturate(1.05);
  border-bottom: 1px solid rgba(36, 35, 33, 0.08);
  box-shadow: 0 14px 34px rgba(28, 27, 24, 0.045);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 25, 95, 0.35), rgba(197, 209, 45, 0.3), rgba(0, 117, 178, 0.28), transparent);
}

.nav-shell {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 164px;
}

.brand img {
  width: 136px;
  height: auto;
  transition: transform 180ms ease-out, filter 180ms ease-out;
}

.brand:hover img {
  transform: translateY(-1px);
  filter: saturate(1.04);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 35, 33, 0.14);
  background: var(--surface-strong);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease-out, opacity 180ms ease-out;
}

.site-header.is-open .nav-toggle span {
  opacity: 0;
}

.site-header.is-open .nav-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 9px 11px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.93rem;
  transition: color 180ms ease-out, background 180ms ease-out;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
  background: rgba(239, 235, 227, 0.64);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(36, 35, 33, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-strong);
}

.lang-switcher button {
  border: 0;
  background: transparent;
  padding: 8px 10px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.82rem;
}

.lang-switcher button.is-active {
  background: var(--charcoal);
  color: #fff;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(36, 35, 33, 0.14);
  background: var(--surface-strong);
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease-out, border-color 180ms ease-out, background 180ms ease-out, color 180ms ease-out;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 25, 95, 0.35);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.46) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease-out;
}

.button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateX(-1px);
  opacity: 0;
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover::after {
  opacity: 0.78;
  transform: rotate(45deg) translateX(2px);
}

.button-primary {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.button-primary:hover {
  background: #2d2b27;
  border-color: var(--magenta);
}

.button-soft {
  background: rgba(255, 255, 255, 0.74);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--magenta);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.5), transparent 26%),
    var(--surface);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 247, 243, 0.98) 0%, rgba(248, 247, 243, 0.88) 38%, rgba(248, 247, 243, 0.38) 66%, rgba(21, 21, 20, 0.14) 100%),
    linear-gradient(180deg, rgba(248, 247, 243, 0) 54%, rgba(248, 247, 243, 0.58) 78%, var(--paper) 100%);
}

.hero-inner {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 0 112px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 60px;
}

.hero-inner::before {
  content: "Pizza & Grill";
  position: absolute;
  left: -8px;
  top: 82px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(36, 35, 33, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-inner::after,
.page-hero-inner::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: 0;
  bottom: 42px;
  border-right: 1px solid rgba(189, 25, 95, 0.28);
  border-bottom: 1px solid rgba(0, 117, 178, 0.24);
  opacity: 0.9;
  pointer-events: none;
}

.hero-content {
  max-width: 660px;
  min-width: 0;
  position: relative;
  padding-left: 34px;
  filter: drop-shadow(0 18px 42px rgba(255, 255, 255, 0.84));
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(189, 25, 95, 0.58), rgba(197, 209, 45, 0.24), transparent);
}

.hero-content::after {
  content: "LOVE";
  position: absolute;
  left: 22px;
  top: -72px;
  z-index: -1;
  color: rgba(21, 21, 20, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  line-height: 1;
  pointer-events: none;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 0.98;
  font-weight: 500;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero h1 {
  font-size: 5.4rem;
}

.hero-subtitle {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero-showcase {
  position: relative;
  min-height: 520px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 42px 18px 36px 54px;
  border: 1px solid rgba(36, 35, 33, 0.12);
  background: rgba(255, 253, 250, 0.38);
  backdrop-filter: blur(8px);
}

.showcase-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 70px rgba(21, 21, 20, 0.18);
  background: var(--surface-strong);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(21, 21, 20, 0.74);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.showcase-main {
  left: 0;
  top: 24px;
  width: 74%;
  height: 460px;
}

.showcase-side {
  right: 0;
  bottom: 22px;
  width: 48%;
  height: 248px;
}

.showcase-note {
  position: absolute;
  right: 8px;
  top: 0;
  width: 250px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid rgba(36, 35, 33, 0.1);
  box-shadow: 0 18px 44px rgba(28, 27, 24, 0.12);
}

.showcase-note strong,
.showcase-note span {
  display: block;
}

.showcase-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.2;
}

.showcase-note span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.taste-ribbon {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  background: var(--charcoal);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(36, 35, 33, 0.12);
}

.taste-ribbon::before,
.taste-ribbon::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(189, 25, 95, 0.14), transparent);
}

.taste-ribbon::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, rgba(0, 117, 178, 0.14), transparent);
}

.taste-ribbon span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.taste-ribbon span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(197, 209, 45, 0.14);
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: calc(100% - 32px);
  max-width: var(--container);
  margin: 28px auto 0;
  position: relative;
  z-index: 2;
  background: rgba(36, 35, 33, 0.085);
  border: 1px solid rgba(36, 35, 33, 0.08);
  box-shadow: 0 32px 70px rgba(28, 27, 24, 0.11);
  overflow: hidden;
}

.hero-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(189, 25, 95, 0.7), rgba(197, 209, 45, 0.75), rgba(0, 117, 178, 0.6), transparent);
}

.strip-item {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(249, 246, 239, 0.9)),
    rgba(255, 253, 250, 0.94);
  padding: 24px;
  transition: background 220ms ease-out, transform 220ms ease-out;
}

.strip-item:hover {
  background: #fff;
  transform: translateY(-2px);
}

.strip-item::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(197, 209, 45, 0.14);
}

.strip-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.strip-item span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  overflow-wrap: break-word;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(100% - 32px, var(--container));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(36, 35, 33, 0.08), transparent);
}

main {
  counter-reset: premium-section;
}

main > .section {
  counter-increment: premium-section;
}

main > .section > .container::before,
main > .section > .container.split::before {
  content: "0" counter(premium-section);
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  top: 42px;
  color: rgba(36, 35, 33, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  line-height: 1;
  pointer-events: none;
}

.section > .container,
.section > .container.split,
.section > .container.split.reverse {
  position: relative;
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 42%),
    #eeece6;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  color: #f8f4ec;
}

.section-dark .eyebrow,
.section-dark .section-copy,
.section-dark .card p,
.section-dark .split-copy {
  color: rgba(248, 244, 236, 0.72);
}

.container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin: 0 auto;
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: min(180px, 36%);
  height: 1px;
  background: linear-gradient(90deg, rgba(189, 25, 95, 0.55), rgba(74, 113, 183, 0));
}

h2,
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 500;
}

h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 500;
}

.section-copy,
.split-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.grid-3,
.grid-2,
.menu-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  grid-template-rows: repeat(2, minmax(260px, auto));
  gap: 24px;
}

.signature-large {
  grid-row: span 2;
}

.signature-large .card-media {
  aspect-ratio: auto;
  min-height: 560px;
}

.signature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.signature-large {
  display: block;
}

.signature-card .card-media {
  aspect-ratio: auto;
  min-height: 100%;
}

.signature-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.signature-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: rgba(36, 35, 33, 0.06);
  color: var(--blue-strong);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card {
  --rx: 0deg;
  --ry: 0deg;
  --raise: 0px;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.94)),
    var(--surface-strong);
  border: 1px solid rgba(36, 35, 33, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(28, 27, 24, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--raise));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, rgba(189, 25, 95, 0.68), rgba(197, 209, 45, 0.6), rgba(0, 117, 178, 0.55));
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 260ms ease-out;
}

.card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border-right: 1px solid rgba(74, 113, 183, 0.26);
  border-bottom: 1px solid rgba(189, 25, 95, 0.28);
  opacity: 0;
  transform: translate(8px, 8px);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
  pointer-events: none;
}

.card:hover {
  --raise: -6px;
  border-color: rgba(74, 113, 183, 0.26);
  box-shadow:
    0 32px 70px rgba(28, 27, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted-2);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 44%, transparent 62%),
    linear-gradient(180deg, transparent 56%, rgba(21, 21, 20, 0.14));
  transform: translateX(-120%);
  transition: transform 620ms ease-out;
  pointer-events: none;
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease-out;
}

.card:hover .card-media img {
  transform: scale(1.035);
}

.card:hover .card-media::after {
  transform: translateX(120%);
}

.card-body {
  padding: 24px;
  position: relative;
}

.card-body::before,
.menu-category::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(36, 35, 33, 0.12);
  border-right: 1px solid rgba(36, 35, 33, 0.12);
}

.card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.accent-line {
  width: 42px;
  height: 2px;
  background: var(--magenta);
  margin-bottom: 18px;
  transition: width 220ms ease-out, background 220ms ease-out;
}

.card:hover .accent-line {
  width: 72px;
  background: linear-gradient(90deg, var(--magenta), var(--blue-strong));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 28px 64px rgba(28, 27, 24, 0.14),
    0 0 0 1px rgba(36, 35, 33, 0.08);
}

.split-media::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 38%;
  height: 34%;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  border-radius: var(--radius);
  pointer-events: none;
}

.story-list,
.contact-list,
.open-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.story-list li,
.contact-list li,
.open-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.story-list li::before,
.contact-list li::before,
.open-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(197, 209, 45, 0.16);
}

.page-hero {
  --page-photo: url("assets/images/esterno-dehors-ulivo.jpg");
  position: relative;
  min-height: 520px;
  padding: 0;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 247, 243, 0.98) 0%, rgba(248, 247, 243, 0.9) 44%, rgba(248, 247, 243, 0.28) 72%, rgba(21, 21, 20, 0.24) 100%),
    linear-gradient(180deg, rgba(248, 247, 243, 0.1), rgba(248, 247, 243, 0.78)),
    var(--page-photo) center / cover no-repeat,
    var(--paper);
  border-bottom: 1px solid rgba(36, 35, 33, 0.08);
  overflow: hidden;
}

.page-hero::before {
  content: "LOVE";
  position: absolute;
  right: -0.08em;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(21, 21, 20, 0.05);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 1;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(189, 25, 95, 0.5), rgba(197, 209, 45, 0.45), rgba(0, 117, 178, 0.4), transparent);
}

body[data-page="storia"] .page-hero {
  --page-photo: url("assets/images/esterno-facciata.jpg");
}

body[data-page="menu"] .page-hero {
  --page-photo: url("assets/images/trancio-salsiccia-funghi.jpg");
}

body[data-page="asporto"] .page-hero {
  --page-photo: url("assets/images/trancio-napoli.jpg");
}

body[data-page="prenota"] .page-hero {
  --page-photo: url("assets/images/esterno-dehors-ulivo.jpg");
}

body[data-page="galleria"] .page-hero {
  --page-photo: url("assets/images/trancio-salamino-piccante.jpg");
}

body[data-page="contatti"] .page-hero {
  --page-photo: url("assets/images/esterno-insegna.jpg");
}

.page-hero-inner {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.48fr);
  gap: 56px;
  align-items: center;
  position: relative;
  padding: 98px 0 88px;
}

.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.page-hero-inner > p {
  position: relative;
  padding: 30px 30px 34px;
  border-left: 1px solid rgba(189, 25, 95, 0.35);
  background: rgba(255, 253, 250, 0.82);
  box-shadow: 0 28px 70px rgba(28, 27, 24, 0.14);
  backdrop-filter: blur(16px);
}

.page-hero-inner > p::before,
.page-hero-inner > p::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero-inner > p::before {
  right: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(197, 209, 45, 0.66);
  border-right: 1px solid rgba(0, 117, 178, 0.34);
}

.page-hero-inner > p::after {
  left: 28px;
  right: 28px;
  bottom: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(189, 25, 95, 0.4), transparent);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.menu-tabs a {
  position: relative;
  padding: 9px 13px;
  border-radius: var(--radius);
  border: 1px solid rgba(36, 35, 33, 0.12);
  background: var(--surface-strong);
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: transform 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out, background 180ms ease-out;
}

.menu-tabs a:hover {
  color: var(--ink);
  border-color: rgba(189, 25, 95, 0.32);
  background: #fff;
  transform: translateY(-2px);
}

.menu-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.72fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 18px;
  margin: 0 0 42px;
}

.menu-showcase-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(36, 35, 33, 0.1);
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 28px 72px rgba(28, 27, 24, 0.12);
  isolation: isolate;
}

.menu-showcase-main {
  grid-row: span 2;
  min-height: 404px;
}

.menu-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.78), rgba(21, 21, 20, 0.36) 48%, rgba(21, 21, 20, 0.08)),
    linear-gradient(180deg, transparent 38%, rgba(21, 21, 20, 0.78));
}

.menu-showcase-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.7;
  pointer-events: none;
  transition: inset 240ms ease-out, opacity 240ms ease-out;
}

.menu-showcase-card:hover::after {
  inset: 12px;
  opacity: 1;
}

.menu-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transition: transform 520ms ease-out, filter 520ms ease-out;
}

.menu-showcase-card:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.07);
}

.menu-showcase-card > div {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
}

.menu-showcase-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-showcase-card span::before {
  content: "";
  width: 26px;
  height: 2px;
  margin: 0 10px 0 0;
  align-self: center;
  background: var(--lime);
}

.menu-showcase-card h2,
.menu-showcase-card h3 {
  color: #fff;
}

.menu-showcase-card p {
  max-width: 56ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  counter-reset: menu-card;
}

.menu-category {
  counter-increment: menu-card;
  padding: 28px;
  position: relative;
  background:
    linear-gradient(120deg, rgba(36, 35, 33, 0.018) 25%, transparent 25%, transparent 50%, rgba(36, 35, 33, 0.018) 50%, rgba(36, 35, 33, 0.018) 75%, transparent 75%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 250, 0.94)),
    var(--surface-strong);
  background-size: 18px 18px, auto, auto;
}

.menu-category::before {
  content: counter(menu-card, decimal-leading-zero);
  position: absolute;
  right: 28px;
  bottom: 18px;
  color: rgba(36, 35, 33, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  line-height: 0.82;
  z-index: 0;
  pointer-events: none;
}

.menu-category > * {
  position: relative;
  z-index: 1;
}

.menu-category header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.menu-category small {
  color: var(--blue-strong);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.dish-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.dish-list li {
  position: relative;
  padding-top: 14px;
  border-top: 1px solid rgba(36, 35, 33, 0.08);
  transition: padding-left 180ms ease-out, border-color 180ms ease-out;
}

.dish-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: width 180ms ease-out;
}

.menu-category:hover .dish-list li:hover {
  padding-left: 18px;
  border-color: rgba(189, 25, 95, 0.16);
}

.menu-category:hover .dish-list li:hover::before {
  width: 10px;
}

.dish-list strong {
  display: block;
}

.dish-list span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: var(--radius);
  color: var(--magenta);
  background: rgba(189, 25, 95, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.feature {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: background 220ms ease-out, transform 220ms ease-out;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(189, 25, 95, 0.6), rgba(197, 209, 45, 0.6), rgba(0, 117, 178, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease-out;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-3px);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.feature span {
  display: block;
  margin-top: 8px;
  color: rgba(248, 244, 236, 0.72);
}

.mobile-dock {
  display: none;
}

.experience-rail {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 16;
  display: grid;
  gap: 1px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 0;
  background: rgba(21, 21, 20, 0.88);
  box-shadow: 0 22px 54px rgba(21, 21, 20, 0.18);
  backdrop-filter: blur(16px);
}

.experience-rail a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 94px;
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease-out, color 180ms ease-out;
}

.experience-rail a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-rail a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.experience-rail a:nth-child(2) {
  color: #fff;
}

.experience-rail a:nth-child(2)::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 230px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--muted-2);
  box-shadow:
    0 18px 38px rgba(28, 27, 24, 0.08),
    0 0 0 1px rgba(36, 35, 33, 0.05);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.large {
  grid-row: span 2;
}

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

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease-out, filter 420ms ease-out;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 10px;
  border-radius: var(--radius);
  background: rgba(21, 21, 20, 0.72);
  color: #fff;
  font-size: 0.88rem;
  transform: translateY(6px);
  opacity: 0.92;
  transition: transform 180ms ease-out, opacity 180ms ease-out;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: stretch;
}

.map-frame {
  min-height: 520px;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 28px 64px rgba(28, 27, 24, 0.12);
  background: var(--muted-2);
}

.note {
  position: relative;
  margin-top: 20px;
  padding: 18px;
  border-left: 2px solid var(--magenta);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  box-shadow: 0 10px 24px rgba(28, 27, 24, 0.045);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    var(--charcoal);
  color: #f8f4ec;
  padding: 70px 0 28px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--lime), var(--blue-strong));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.7fr));
  gap: 38px;
}

.footer-logo {
  width: 154px;
  height: auto;
  filter: brightness(1.03);
  background: #fff;
  padding: 8px;
  border-radius: var(--radius);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(248, 244, 236, 0.72);
}

.footer-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.6;
}

.footer-bottom a {
  text-decoration: underline;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease-out, transform 520ms ease-out;
}

.js-enabled .reveal {
  opacity: 1;
  transform: translateY(18px);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-loaded .card,
body.page-loaded .gallery-item,
body.page-loaded .feature,
body.page-loaded .strip-item {
  animation: riseIn 620ms ease-out both;
  animation-delay: calc(var(--item-index, 0) * 55ms);
}

@keyframes riseIn {
  from {
    translate: 0 18px;
  }
  to {
    translate: 0 0;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--surface-strong);
    border: 1px solid rgba(36, 35, 33, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-showcase {
    min-height: 420px;
  }

  .showcase-main {
    width: 68%;
    height: 380px;
  }

  .showcase-side {
    height: 220px;
  }

  .signature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .menu-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .menu-showcase-main {
    grid-row: auto;
    min-height: 360px;
  }

  .signature-large {
    grid-row: auto;
  }

  .signature-card,
  .signature-large {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  }

  .signature-large .card-media,
  .signature-card .card-media {
    min-height: 280px;
  }

  .section-heading,
  .page-hero-inner,
  .split,
  .split.reverse,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main > .section > .container::before,
  main > .section > .container.split::before {
    display: none;
  }
}

@media (max-width: 740px) {
  body {
    font-size: 15px;
    padding-bottom: 74px;
  }

  body::before {
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 44%);
  }

  body::after {
    inset: 8px;
  }

  .brand img {
    width: 98px;
  }

  .nav-shell {
    width: calc(100% - 20px);
    max-width: var(--container);
    gap: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .nav-actions {
    position: absolute;
    left: clamp(112px, 31vw, 132px);
    top: 12px;
    z-index: 12;
    gap: 0;
    padding: 4px;
    border-radius: var(--radius);
    background: rgba(255, 253, 250, 0.9);
    border: 1px solid rgba(36, 35, 33, 0.12);
    box-shadow: 0 10px 24px rgba(28, 27, 24, 0.12);
    backdrop-filter: blur(14px);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    justify-self: end;
  }

  .main-nav {
    top: 70px;
    left: 10px;
    right: 10px;
    padding: 8px;
    gap: 2px;
  }

  .main-nav a {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .main-nav a::after {
    left: 14px;
    right: auto;
    width: 24px;
  }

  .lang-switcher {
    border-radius: 7px;
  }

  .lang-switcher button {
    min-width: 34px;
    min-height: 40px;
    padding: 7px 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(248, 247, 243, 0.92) 0%, rgba(248, 247, 243, 0.82) 58%, rgba(248, 247, 243, 0.34) 100%),
      linear-gradient(180deg, rgba(248, 247, 243, 0) 76%, var(--paper) 100%);
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 50px 0 106px;
    display: block;
  }

  .hero-showcase {
    display: none;
  }

  .taste-ribbon {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .taste-ribbon::-webkit-scrollbar {
    display: none;
  }

  .taste-ribbon span {
    flex: 0 0 auto;
    min-height: 50px;
    white-space: nowrap;
    justify-content: flex-start;
  }

  .hero-inner::before,
  .hero-content::after,
  .page-hero::before {
    display: none;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-content::before {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.14rem;
    line-height: 1.02;
  }

  .hero-subtitle,
  .page-hero p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-subtitle {
    margin-top: 20px;
    max-width: 34ch;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 26px;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    text-align: center;
  }

  .hero-actions .button:nth-child(3):last-child,
  .section-actions .button:nth-child(odd):last-child {
    grid-column: auto;
  }

  .button::after {
    display: none;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .strip-item {
    padding: 22px 24px;
  }

  .strip-item strong {
    font-size: 1.18rem;
  }

  .strip-item::after {
    right: 24px;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    min-height: 430px;
    padding: 0;
    background:
      linear-gradient(180deg, rgba(248, 247, 243, 0.9) 0%, rgba(248, 247, 243, 0.82) 50%, rgba(248, 247, 243, 0.58) 100%),
      var(--page-photo) center / cover no-repeat,
      var(--paper);
  }

  .page-hero-inner,
  .container {
    width: calc(100% - 32px);
  }

  .page-hero-inner {
    gap: 22px;
    padding: 56px 0 52px;
  }

  .page-hero-inner > p {
    padding: 18px 18px 20px;
    border-left: 0;
    border-top: 1px solid rgba(189, 25, 95, 0.28);
    background: rgba(255, 253, 250, 0.72);
  }

  .page-hero-inner > p::after {
    left: 18px;
    right: 18px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .section-heading::after {
    bottom: -12px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  h2,
  .section-title {
    font-size: 1.88rem;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .grid-2,
  .grid-3,
  .signature-grid,
  .menu-showcase,
  .menu-grid,
  .feature-band,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .menu-showcase {
    margin-bottom: 30px;
  }

  .menu-showcase-main,
  .menu-showcase-card {
    min-height: 270px;
  }

  .menu-showcase-card > div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .menu-showcase-card::after {
    left: 12px;
    right: 12px;
    top: 12px;
    bottom: 12px;
  }

  .signature-card,
  .signature-large {
    display: block;
  }

  .signature-large .card-media,
  .signature-card .card-media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .grid-2,
  .grid-3,
  .menu-grid {
    gap: 18px;
  }

  .card {
    --rx: 0deg !important;
    --ry: 0deg !important;
    transform: translateY(var(--raise));
    box-shadow: 0 10px 24px rgba(28, 27, 24, 0.045);
  }

  .card:hover {
    --raise: -2px;
  }

  .card::after,
  .card-body::before,
  .menu-category::after,
  .gallery-item::before,
  .card-media::after {
    display: none;
  }

  .card-body,
  .menu-category {
    padding: 22px;
  }

  .card p,
  .dish-list span,
  .section-copy,
  .split-copy {
    line-height: 1.58;
  }

  .card-media {
    aspect-ratio: 16 / 11;
  }

  .split,
  .split.reverse {
    gap: 30px;
  }

  .split-media img {
    aspect-ratio: 4 / 3;
    border-width: 5px;
  }

  .split-media::after {
    right: -8px;
    bottom: -8px;
    width: 30%;
    height: 28%;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-item.large {
    aspect-ratio: 4 / 5;
  }

  .gallery-item.wide {
    aspect-ratio: 16 / 10;
  }

  .gallery-item figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 0.82rem;
  }

  .menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 -16px 28px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tabs a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 10px 13px;
    background: rgba(255, 255, 255, 0.86);
    white-space: nowrap;
  }

  .menu-category header {
    gap: 12px;
    flex-wrap: wrap;
  }

  .menu-category header > div {
    min-width: 0;
  }

  .badge {
    white-space: nowrap;
  }

  .section-copy,
  .split-copy,
  .page-hero p,
  .card p,
  .dish-list span,
  .contact-list li,
  .story-list li,
  .open-points li {
    overflow-wrap: break-word;
  }

  .dish-list {
    gap: 10px;
  }

  .dish-list li {
    padding-top: 12px;
  }

  .feature {
    padding: 22px;
  }

  .feature-band {
    gap: 1px;
  }

  .contact-layout {
    gap: 20px;
  }

  .map-frame {
    min-height: 360px;
  }

  .footer-grid {
    gap: 24px;
  }

  .site-footer {
    padding: 54px 0 24px;
  }

  .mobile-dock {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 10px;
    z-index: 18;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.08fr) minmax(0, 0.86fr);
    gap: 1px;
    padding: 5px;
    border-radius: var(--radius);
    border: 1px solid rgba(36, 35, 33, 0.12);
    background: rgba(255, 253, 250, 0.88);
    box-shadow: 0 18px 48px rgba(28, 27, 24, 0.22);
    backdrop-filter: blur(18px);
  }

  .experience-rail {
    display: none;
  }

  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 0;
    border-radius: 7px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-dock a:nth-child(2) {
    background: var(--charcoal);
    color: #fff;
  }

  .mobile-dock a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(197, 209, 45, 0.13);
  }

  .mobile-dock a:first-child::before,
  .mobile-dock a:last-child::before {
    display: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-inner::after,
  .page-hero-inner::after {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 92px;
  }

  .nav-shell {
    width: calc(100% - 20px);
  }

  .lang-switcher button {
    min-width: 32px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero-inner,
  .page-hero-inner,
  .container {
    width: calc(100% - 28px);
  }

  .button {
    min-height: 46px;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .hero-inner,
  .hero-strip,
  .page-hero-inner,
  .container {
    width: calc(100% - 28px);
    max-width: 362px;
    margin-left: 16px;
    margin-right: auto;
  }

  .nav-shell {
    margin-left: 14px;
    margin-right: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.02rem;
  }

  .page-hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-inner {
    padding-top: 48px;
    padding-bottom: 96px;
  }

  .hero-subtitle {
    max-width: 30ch;
  }

  .menu-tabs {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .card-body,
  .menu-category,
  .feature {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .card {
    transform: none;
  }
}
