:root {
  --red: #e63329;
  --green: #1a5c3a;
  --green-deep: #0f3f32;
  --cream: #fff7ea;
  --cream-2: #f8ecd9;
  --dark: #17352c;
  --text: #24312d;
  --muted: #6d6a61;
  --white: #ffffff;
  --shadow: rgba(34, 24, 16, 0.14);
  --line: rgba(23, 53, 44, 0.14);
  --gold: #c9964b;
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 92px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(230, 51, 41, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(26, 92, 58, 0.08), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.36) 25%, transparent 25%) 0 0 / 28px 28px,
    var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 53, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 53, 44, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 85%);
}

.pizza-particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
  transform: translateZ(0);
}

.pizza-slice-particle,
.pizza-whole-particle {
  position: absolute;
  top: var(--top);
  left: var(--x);
  width: var(--size);
  opacity: var(--opacity);
  filter: drop-shadow(0 8px 10px rgba(34, 24, 16, 0.12));
  animation: pizza-float var(--duration) ease-in-out infinite alternate;
  animation-delay: var(--delay);
  will-change: transform;
}

.pizza-slice-particle {
  height: calc(var(--size) * 1.16);
  background:
    radial-gradient(circle at 45% 54%, #cf3428 0 8%, transparent 9%),
    radial-gradient(circle at 64% 72%, #cf3428 0 7%, transparent 8%),
    radial-gradient(circle at 36% 78%, #6b4a2b 0 6%, transparent 7%),
    linear-gradient(150deg, #ffd36d, #f5a83d);
  clip-path: polygon(50% 0, 2% 100%, 98% 100%);
}

.pizza-slice-particle::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4%;
  height: 18%;
  background: #d78334;
  border-radius: 999px;
}

.pizza-whole-particle {
  height: var(--size);
  border: calc(var(--size) * 0.08) solid #d78334;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 36%, #cf3428 0 7%, transparent 8%),
    radial-gradient(circle at 65% 32%, #6b4a2b 0 6%, transparent 7%),
    radial-gradient(circle at 58% 68%, #cf3428 0 8%, transparent 9%),
    radial-gradient(circle at 34% 70%, #2f8a42 0 5%, transparent 6%),
    conic-gradient(from 24deg, rgba(255,255,255,0.22) 0 7deg, transparent 7deg 60deg, rgba(255,255,255,0.18) 60deg 68deg, transparent 68deg),
    #ffd36d;
}

@keyframes pizza-float {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--rotate)) scale(var(--scale));
  }

  to {
    transform: translate3d(var(--drift-x), var(--drift-y), 0) rotate(calc(var(--rotate) + var(--spin))) scale(var(--scale));
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--red);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid rgba(230, 51, 41, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--dark);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--cream {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(248, 236, 217, 0.68)),
    var(--cream-2);
}

.section--green {
  color: var(--white);
  background: var(--green-deep);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 33%, var(--cream) 33% 66%, var(--red) 66%);
  box-shadow: 0 0 0 1px rgba(23, 53, 44, 0.1);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--dark);
  font-family: var(--font-heading);
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.text-stack {
  display: grid;
  gap: 1rem;
}

.muted {
  color: var(--muted);
}

.brand-line {
  width: 116px;
  height: 5px;
  margin: 1.35rem 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 33%, var(--white) 33% 66%, var(--red) 66%);
  box-shadow: 0 0 0 1px rgba(23, 53, 44, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  color: var(--white);
  background: var(--red);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(230, 51, 41, 0.24);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  color: var(--white);
  background: #c92720;
  box-shadow: 0 18px 34px rgba(230, 51, 41, 0.3);
  transform: translateY(-2px);
}

.btn--light {
  color: var(--dark);
  background: var(--cream);
  box-shadow: 0 14px 28px rgba(34, 24, 16, 0.12);
}

.btn--light:hover {
  color: var(--dark);
  background: var(--white);
}

.btn--ghost {
  color: var(--green);
  background: transparent;
  border-color: rgba(26, 92, 58, 0.26);
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(26, 92, 58, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 247, 234, 0.94);
  border-bottom: 1px solid rgba(23, 53, 44, 0.1);
  box-shadow: 0 10px 26px rgba(34, 24, 16, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  min-height: var(--header-height);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(104px, 10vw, 138px);
  padding: 0.45rem 0;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.7rem;
  color: var(--dark);
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.35rem;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(26, 92, 58, 0.16);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(34, 24, 16, 0.08);
  font-size: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-link::before {
  content: "";
  display: block;
}

.social-link--instagram::before {
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 7px;
  background:
    radial-gradient(circle at 72% 28%, currentColor 0 1.8px, transparent 2px),
    radial-gradient(circle, transparent 0 4.5px, currentColor 4.8px 6.4px, transparent 6.8px);
}

.social-link--facebook::before {
  content: "f";
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(2px);
}

.social-link:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(23, 53, 44, 0.14);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(34, 24, 16, 0.08);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-header.nav-open .nav-toggle span {
  background: transparent;
}

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

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(560px, 78vh, 820px);
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero--compact {
  min-height: clamp(430px, 62vh, 650px);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 31, 25, 0.86), rgba(14, 31, 25, 0.52) 46%, rgba(14, 31, 25, 0.22)),
    linear-gradient(0deg, rgba(14, 31, 25, 0.74), transparent 56%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero-content {
  max-width: 780px;
}

.hero h1,
.hero h2,
.hero p {
  color: inherit;
}

.hero .eyebrow {
  color: var(--cream);
}

.hero .lead {
  max-width: 620px;
  margin-top: 1rem;
  color: rgba(255, 247, 234, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-actions--home {
  gap: 1rem 1.2rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(14, 31, 25, 0.46);
}

.hero-phone:hover {
  color: var(--white);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-pills li,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.78rem;
  color: var(--dark);
  background: rgba(255, 247, 234, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(34, 24, 16, 0.12);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.chip:hover {
  color: var(--white);
  background: var(--red);
}

.hero-label,
.media-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.48rem 0.68rem;
  color: var(--cream);
  background: rgba(15, 63, 50, 0.82);
  border: 1px solid rgba(255, 247, 234, 0.28);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

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

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--cream-2);
  border: 1px solid rgba(23, 53, 44, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px var(--shadow);
}

.media-frame img,
.image-cover {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 31, 25, 0.28), transparent 58%);
  pointer-events: none;
}

.story-copy {
  display: grid;
  gap: 1.2rem;
}

.signature {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card,
.menu-card,
.menu-item,
.info-card,
.gallery-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 53, 44, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 38px rgba(34, 24, 16, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.value-card:hover,
.menu-card:hover,
.menu-item:hover,
.info-card:hover,
.gallery-card:hover {
  border-color: rgba(230, 51, 41, 0.22);
  box-shadow: 0 24px 52px rgba(34, 24, 16, 0.13);
  transform: translateY(-4px);
}

.value-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #b9261f);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.value-card p {
  color: var(--muted);
}

.menu-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  overflow: hidden;
}

.menu-card .media-frame {
  min-height: 220px;
  border: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  box-shadow: none;
}

.menu-card-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.dish-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(23, 53, 44, 0.1);
}

.dish-row:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.dish-row strong {
  display: block;
  color: var(--dark);
}

.price {
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 63, 50, 0.96), rgba(23, 53, 44, 0.9)),
    var(--green-deep);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(230, 51, 41, 0.22), transparent 18rem),
    radial-gradient(circle at 85% 75%, rgba(255, 247, 234, 0.16), transparent 18rem);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr);
  align-items: center;
  gap: 2rem;
}

.cta-band h2,
.cta-band p {
  color: inherit;
}

.quick-contact {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  color: var(--dark);
  background: rgba(255, 247, 234, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.quick-contact a {
  font-weight: 800;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
  margin-top: 2rem;
}

.menu-nav {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  z-index: 20;
  padding: 1rem 0;
  background: rgba(255, 247, 234, 0.92);
  border-bottom: 1px solid rgba(23, 53, 44, 0.1);
  backdrop-filter: blur(14px);
}

.menu-nav .chip {
  box-shadow: none;
}

.menu-section {
  scroll-margin-top: 140px;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.menu-section + .menu-section {
  border-top: 1px solid rgba(23, 53, 44, 0.1);
}

.menu-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 160px);
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.menu-section-header p {
  max-width: 620px;
  color: var(--muted);
}

.menu-category-media {
  justify-self: end;
  width: min(100%, 156px);
  min-height: 0;
  aspect-ratio: 1;
}

.menu-category-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-section--featured {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(230, 51, 41, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 236, 217, 0.84));
}

.menu-section--featured .menu-section-header {
  grid-template-columns: minmax(0, 1fr) minmax(140px, 160px);
  align-items: center;
}

.menu-section--featured .menu-category-media {
  min-height: 0;
}

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

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  padding: 1.1rem;
}

.menu-item h3 {
  font-size: 1.22rem;
}

.menu-item p {
  grid-column: 1 / -1;
  color: var(--muted);
}

.menu-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 53, 44, 0.1);
  border-radius: var(--radius-sm);
}

.menu-board-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 84% 20%, rgba(230, 51, 41, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.34);
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 540px));
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.menu-board img {
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 53, 44, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 36px rgba(34, 24, 16, 0.1);
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card .media-frame {
  min-height: 240px;
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.gallery-caption {
  padding: 0.9rem 1rem 1rem;
  color: var(--dark);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem;
}

.info-card strong {
  color: var(--dark);
}

.contact-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 53, 44, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px var(--shadow);
}

.google-review-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0.75rem;
  color: var(--dark);
  background: rgba(255, 247, 234, 0.78);
  border: 1px solid rgba(23, 53, 44, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 28px rgba(34, 24, 16, 0.08);
}

.google-review-card:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.google-review-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.google-review-copy {
  display: grid;
  gap: 0.12rem;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.google-review-stars {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
}

.google-review-copy strong {
  color: var(--dark);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.google-review-copy em {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(23, 53, 44, 0.16);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 164px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(230, 51, 41, 0.12);
  outline: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-alert {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 800;
}

.form-alert.is-visible {
  display: block;
}

.form-alert.is-error {
  color: #7d1f18;
  background: rgba(230, 51, 41, 0.1);
  border: 1px solid rgba(230, 51, 41, 0.22);
}

.form-alert.is-success {
  color: var(--green-deep);
  background: rgba(26, 92, 58, 0.1);
  border: 1px solid rgba(26, 92, 58, 0.2);
}

.map-shell {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(23, 53, 44, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px var(--shadow);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-overlay {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: min(330px, calc(100% - 2rem));
  padding: 1rem;
  color: var(--dark);
  background: rgba(255, 247, 234, 0.94);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(34, 24, 16, 0.16);
}

.map-overlay strong {
  display: block;
  margin-bottom: 0.25rem;
}

.site-footer {
  position: relative;
  margin-top: 4rem;
  padding: 5rem 0 2rem;
  color: rgba(255, 247, 234, 0.86);
  background:
    radial-gradient(circle at 82% 24%, rgba(230, 51, 41, 0.16), transparent 18rem),
    var(--green-deep);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -46px;
  height: 48px;
  background: var(--green-deep);
  clip-path: polygon(0 64%, 7% 50%, 15% 58%, 23% 36%, 33% 52%, 45% 28%, 57% 48%, 68% 30%, 79% 54%, 90% 38%, 100% 58%, 100% 100%, 0 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.5fr) minmax(220px, 0.55fr);
  gap: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--cream);
}

.site-footer h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 247, 234, 0.9);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.footer-contact a {
  color: var(--cream);
  font-weight: 800;
}

.footer-socials .social-link {
  color: var(--green-deep);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 247, 234, 0.18);
  color: rgba(255, 247, 234, 0.72);
  font-size: 0.92rem;
}

.footer-legal-button {
  color: rgba(255, 247, 234, 0.9);
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.footer-legal-button:hover {
  color: var(--white);
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(14, 31, 25, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-dialog {
  position: relative;
  width: min(100%, 840px);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(255, 247, 234, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.legal-close {
  position: sticky;
  top: 0;
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 1rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(23, 53, 44, 0.16);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(34, 24, 16, 0.1);
  font-size: 1.35rem;
  line-height: 1;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-content h3 {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.seo-note {
  max-width: 660px;
}

.message-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.status-panel {
  width: min(100%, 680px);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 53, 44, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px var(--shadow);
}

.status-panel .brand-logo {
  margin-bottom: 1.4rem;
}

.status-panel p {
  color: var(--muted);
  margin-top: 0.75rem;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.js-enabled .hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

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

@media (max-width: 1060px) {
  .values-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    position: relative;
    grid-template-columns: auto 1fr auto;
    padding-right: 58px;
  }

  .brand-logo {
    grid-column: 1;
    grid-row: 1;
    width: 116px;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-flex;
    justify-self: end;
    transform: translateY(-50%);
  }

  .header-socials {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding-bottom: 0.8rem;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0.2rem;
  }

  .site-nav a {
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
  }

  html.js-enabled .site-nav {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-bottom: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  html.js-enabled .site-header.nav-open .site-nav {
    max-height: 420px;
    opacity: 1;
    padding-bottom: 0.8rem;
    pointer-events: auto;
  }

  .split-grid,
  .split-grid--reverse,
  .cta-grid,
  .menu-section-header,
  .menu-section--featured .menu-section-header,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-section--featured .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .menu-category-media {
    justify-self: start;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(14, 31, 25, 0.9), rgba(14, 31, 25, 0.58)),
      linear-gradient(0deg, rgba(14, 31, 25, 0.78), transparent 56%);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .header-socials {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero .container {
    padding-bottom: 3.2rem;
  }

  .hero-actions,
  .form-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .values-grid,
  .gallery-grid,
  .menu-preview,
  .menu-items-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item .price {
    justify-self: start;
  }

  .menu-nav {
    position: static;
  }

  .menu-board {
    grid-template-columns: 1fr;
  }

  .chip-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .chip {
    flex: 0 1 auto;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    font-size: 0.86rem;
    white-space: normal;
  }

  .map-overlay {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .map-shell {
    display: flex;
    flex-direction: column;
  }

  .google-review-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .google-review-card img {
    width: 54px;
    height: 54px;
  }
}

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

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }

  .pizza-particles {
    display: none;
  }
}
