:root {
  --ink: #f5f0e8;
  --muted: #8a7a6a;
  --cream: #1a1410;
  --paper: #0f0c09;
  --gold: #d4a54a;
  --gold-light: #e8b94a;
  --tomato: #e31b23;
  --tomato-dark: #b8141b;
  --charcoal: #111111;
  --surface: #1a1a1a;
  --surface-light: #222222;
  --terracotta: #a66e4e;
  --line: rgba(245, 240, 232, .08);
  --shadow: 0 8px 30px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.6);
  --heading: "Montserrat", "Impact", sans-serif;
  --script: "Permanent Marker", cursive;
  --body: "Inter", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Light mode ── */
[data-theme="light"] {
  --ink: #1A1A1A;
  --muted: #6C757D;
  --charcoal: #F4F4F2;
  --surface: #FFFFFF;
  --surface-light: #FFFFFF;
  --terracotta: #8B5E3C;
  --line: rgba(0,0,0,.08);
  --shadow: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.1);
}

[data-theme="light"] .main-nav {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(0,0,0,.08);
}

[data-theme="light"] .main-nav.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

[data-theme="light"] .top-strip {
  background: rgba(0,0,0,.06);
  color: #1A1A1A;
  border-bottom-color: rgba(0,0,0,.06);
}

[data-theme="light"] .top-strip a { color: #1A1A1A; }
[data-theme="light"] .top-strip a:hover { color: var(--tomato); }

[data-theme="light"] .menu-search input {
  background: #fff;
  border-color: rgba(0,0,0,.12);
}

[data-theme="light"] .dish-feature {
  background: #fff;
}

[data-theme="light"] .lunch-band {
  background: rgba(0,0,0,.03);
}

[data-theme="light"] .quote-band blockquote {
  color: #1A1A1A;
}

[data-theme="light"] .footer {
  border-top-color: rgba(0,0,0,.08);
}

[data-theme="light"] .contact-card {
  background: #fff;
}

[data-theme="light"] .hero::after {
  background: linear-gradient(0deg, var(--charcoal), transparent);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Chalkboard texture overlay ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.012) 2px, rgba(255,255,255,.012) 4px);
  pointer-events: none;
  z-index: 9998;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .8s var(--ease-smooth);
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

.preloader-logo {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 2rem;
}

.preloader-logo svg {
  width: 100%;
  height: 100%;
}

.preloader-logo .stroke-path {
  fill: none;
  stroke: var(--tomato);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLogo 2.5s var(--ease-smooth) forwards;
}

@keyframes drawLogo {
  0% { stroke-dashoffset: 800; }
  60% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; fill: var(--ink); }
}

.preloader-text {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--ink);
  opacity: 0;
  animation: fadeInText .8s ease 1.8s forwards;
  letter-spacing: .02em;
}

.preloader-sub {
  font-family: var(--body);
  font-size: .8rem;
  color: var(--muted);
  opacity: 0;
  animation: fadeInText .8s ease 2.2s forwards;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@keyframes fadeInText {
  to { opacity: 1; }
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--surface-light);
  border-radius: 4px;
  margin-top: 1.5rem;
  overflow: hidden;
  opacity: 0;
  animation: fadeInText .8s ease 1s forwards;
}

.preloader-bar-inner {
  height: 100%;
  width: 0;
  background: var(--tomato);
  border-radius: 4px;
  animation: loadBar 2s var(--ease-smooth) forwards;
  animation-delay: .3s;
}

@keyframes loadBar {
  to { width: 100%; }
}

a { color: inherit; text-decoration: none; transition: all .3s ease; }
img { max-width: 100%; display: block; }

::selection { background: var(--tomato); color: #fff; }

/* ── Top Strip ── */
.top-strip {
  background: rgba(17,17,17,.95);
  color: rgba(245,240,232,.5);
  font-size: .78rem;
  font-weight: 500;
  padding: .5rem 0;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--line);
}

.top-strip a {
  color: rgba(245,240,232,.75);
  font-weight: 700;
  transition: color .3s ease;
}

.top-strip a:hover { color: var(--tomato); }

/* ── Navbar ── */
.main-nav {
  background: rgba(17,17,17,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: .5rem 0;
  transition: all .4s ease;
}

.main-nav.scrolled {
  background: rgba(17,17,17,.98);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.navbar-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-link {
  color: rgba(245,240,232,.6) !important;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem .85rem !important;
  border-radius: 8px;
  transition: all .3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--tomato);
  transition: transform .3s var(--ease-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
  color: rgba(245,240,232,.9) !important;
  background: rgba(227,27,35,.08);
}

.nav-link.active {
  color: var(--tomato) !important;
  text-shadow: 0 0 20px rgba(227,27,35,.3);
}

.nav-order {
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff !important;
  font-weight: 800;
  font-size: .8rem;
  padding: .65rem 1.3rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(227,27,35,.3);
}

.nav-order:hover {
  background: var(--tomato-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(227,27,35,.4);
}

.nav-order::after { display: none !important; }

/* ── Slide-in Menu Overlay ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}

.menu-overlay.open {
  pointer-events: auto;
  opacity: 1;
}

.menu-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transform: translateY(30px);
  transition: transform .6s var(--ease-smooth);
  transition-delay: .1s;
}

.menu-overlay.open .menu-overlay-inner {
  transform: translateY(0);
}

.menu-overlay-link {
  font-family: var(--heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: rgba(245,240,232,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem 0;
  transition: all .3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.menu-overlay.open .menu-overlay-link {
  opacity: 1;
  transform: translateY(0);
  transition: all .5s var(--ease-smooth);
}

.menu-overlay.open .menu-overlay-link:nth-child(1) { transition-delay: .15s; }
.menu-overlay.open .menu-overlay-link:nth-child(2) { transition-delay: .2s; }
.menu-overlay.open .menu-overlay-link:nth-child(3) { transition-delay: .25s; }
.menu-overlay.open .menu-overlay-link:nth-child(4) { transition-delay: .3s; }
.menu-overlay.open .menu-overlay-link:nth-child(5) { transition-delay: .35s; }
.menu-overlay.open .menu-overlay-link:nth-child(6) { transition-delay: .4s; }

.menu-overlay-link:hover {
  color: var(--tomato);
  text-shadow: 0 0 40px rgba(227,27,35,.4);
}

.menu-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .3s ease;
}

.menu-overlay-close:hover {
  background: var(--tomato);
  border-color: var(--tomato);
  transform: rotate(90deg);
}

.hamburger-btn {
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  padding: .25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all .3s ease;
  flex: 0 0 auto;
  padding: 0;
}

.theme-toggle:hover {
  border-color: var(--tomato);
  color: var(--tomato);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 0 80px;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../assets/img/slide3-1024x512-1.jpg');
  background-size: cover;
  background-position: center;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.hero-text {
  max-width: 720px;
  padding: 0 24px;
}

.hero-text .label {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 1.2rem;
}

.hero-text h1 {
  font-family: var(--heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 .5rem;
}

.hero-text .sub {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #FFD700;
  margin: 0 0 2.5rem;
}

.hero-text .cta {
  display: inline-block;
  border: 2px solid #FFD700;
  border-radius: 999px;
  background: transparent;
  color: #FFD700;
  font-family: var(--heading);
  font-weight: 900;
  font-size: .9rem;
  padding: .9rem 2.8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: all .35s ease;
  text-decoration: none;
}

.hero-text .cta:hover {
  background: #FFD700;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,215,0,.35);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 200px;
  background: linear-gradient(0deg, var(--charcoal), transparent);
  pointer-events: none;
}

.overline {
  margin: 0 0 .9rem;
  color: var(--tomato);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.overline::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--tomato);
}

.btn-gold {
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  padding: .85rem 1.8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 4px 20px rgba(227,27,35,.3);
  transition: all .3s ease;
}

.btn-gold:hover {
  background: var(--tomato-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227,27,35,.4);
  color: #fff;
}

/* ── Quick Categories ── */
.quick-cats {
  position: relative;
  z-index: 3;
  margin-top: -52px;
  padding-bottom: 3rem;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
}

.category-pill {
  min-height: 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  place-items: center;
  gap: .4rem;
  padding: 1rem .5rem;
  text-align: center;
  transition: all .3s var(--ease-smooth);
  cursor: pointer;
}

.category-pill:hover {
  transform: translateY(-6px);
  border-color: var(--tomato);
  box-shadow: 0 8px 30px rgba(227,27,35,.15);
  background: var(--surface-light);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(227,27,35,.1);
  font-size: 1.3rem;
  transition: transform .3s ease;
}

.category-pill:hover .category-icon {
  transform: scale(1.15);
  background: rgba(227,27,35,.2);
}

.category-pill span:last-child {
  font-size: .78rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Section Shared ── */
.section-pad { padding: 6rem 0; }

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2 {
  font-family: var(--heading);
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.section-heading .script-title {
  font-family: var(--script);
  font-weight: 400;
  text-transform: none;
  color: var(--terracotta);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  display: block;
  margin-top: -.3rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: .95rem;
}

/* ── Lunch Band ── */
.lunch-band {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.lunch-band::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(227,27,35,.06);
}

.lunch-band h2 {
  font-family: var(--heading);
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.lunch-band p { color: var(--muted); }

.lunch-price {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--tomato), var(--tomato-dark));
  color: #fff;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(227,27,35,.25);
}

.lunch-price span {
  display: block;
  color: rgba(255,255,255,.7);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.lunch-price strong {
  display: block;
  font-family: var(--heading);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  margin-top: .2rem;
  font-weight: 900;
}

/* ── Signature Dishes ── */
.dish-feature {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: all .4s var(--ease-smooth);
}

.dish-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(227,27,35,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.dish-feature img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .6s ease;
}

.dish-feature:hover img {
  transform: scale(1.06);
}

.dish-feature div { padding: 1.4rem; }

.dish-feature h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: .3rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.dish-feature p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.dish-feature strong { color: var(--tomato); font-size: 1rem; font-weight: 900; }

/* ── Circular Pizza Selector ── */
.pizza-selector-section {
  background: var(--surface);
  position: relative;
}

.pizza-selector-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.pizza-wheel {
  position: relative;
  width: min(70vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  flex: 0 0 auto;
}

.pizza-wheel-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--line);
  box-shadow: 0 0 60px rgba(227,27,35,.15);
}

.pizza-slice-marker {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.slice-marker {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(50% 50%, 50% 0%, 55% 0%, 55% 50%);
  opacity: 0;
  transition: opacity .4s ease;
}

.slice-marker.active {
  opacity: 1;
  background: rgba(227,27,35,.2);
}

.pizza-wheel-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tomato);
  border: 2px solid #fff;
  box-shadow: 0 0 20px rgba(227,27,35,.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.pizza-slices-list {
  flex: 1;
  min-width: 280px;
}

.pizza-slice-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .5rem;
  cursor: pointer;
  transition: all .3s var(--ease-smooth);
  background: transparent;
}

.pizza-slice-item:hover,
.pizza-slice-item.active {
  border-color: var(--tomato);
  background: rgba(227,27,35,.06);
  transform: translateX(6px);
}

.pizza-slice-item .slice-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tomato);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .8rem;
  color: #fff;
  flex: 0 0 auto;
}

.menu-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tomato);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .8rem;
  flex: 0 0 auto;
  align-self: start;
  margin-top: 2px;
}

.pizza-slice-item .slice-info {
  flex: 1;
}

.pizza-slice-item .slice-name {
  font-weight: 800;
  font-size: .95rem;
  display: block;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.pizza-slice-item .slice-desc {
  color: var(--muted);
  font-size: .82rem;
}

.pizza-slice-item .slice-price {
  color: var(--tomato);
  font-weight: 900;
  font-size: .95rem;
  flex: 0 0 auto;
}

/* ── Menu Section ── */
.menu-section { background: var(--charcoal); }

.menu-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.menu-search input {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: .9rem 1.3rem;
  font-weight: 600;
  font-family: var(--body);
  font-size: .9rem;
  outline: none;
  transition: all .3s ease;
  min-width: 260px;
}

.menu-search input::placeholder { color: var(--muted); }

.menu-search input:focus {
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(227,27,35,.1);
}

.menu-tabs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .4rem 0 1.4rem;
  scrollbar-width: thin;
  scrollbar-color: var(--tomato) transparent;
}

.menu-tabs::-webkit-scrollbar { height: 4px; }
.menu-tabs::-webkit-scrollbar-track { background: transparent; }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--tomato); border-radius: 4px; }

.menu-tab {
  flex: 0 0 auto;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: .6rem 1rem;
  font-size: .78rem;
  font-weight: 800;
  font-family: var(--body);
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.menu-tab:hover {
  border-color: var(--tomato);
  color: var(--tomato);
}

.menu-tab.active {
  border-color: var(--tomato);
  background: var(--tomato);
  color: #fff;
}

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

.menu-grid.switching {
  animation: menuPanel .4s var(--ease-smooth);
}

.menu-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.1rem;
  animation: menuItem .45s var(--ease-smooth) both;
  transition: all .3s ease;
}

.menu-card:hover {
  border-color: rgba(227,27,35,.3);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.menu-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: .75rem;
}

.menu-category-note {
  font-size: .8rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: -.8rem 0 1.2rem;
  letter-spacing: .04em;
}

.menu-card-head > div {
  text-align: left;
  flex: 1;
  min-width: 0;
}

.menu-card h3 {
  margin: 0;
  font-size: .92rem;
  font-weight: 800;
}

.menu-card p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.menu-card strong {
  flex: 0 0 auto;
  color: var(--tomato);
  font-weight: 900;
  font-size: .9rem;
}

.menu-meta {
  display: inline-block;
  margin-bottom: .6rem;
  color: var(--terracotta);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.extras-note {
  margin-top: 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.2rem;
  color: var(--muted);
  font-size: .88rem;
}

.extras-note p { margin: .3rem 0; }
.extras-note strong { color: var(--ink); }

/* ── About ── */
.about {
  background: var(--surface);
  color: var(--ink);
  position: relative;
}

.about .overline::before { background: var(--tomato); }

.about h2 {
  font-family: var(--heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.02em;
}

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

.image-stack {
  position: relative;
  min-height: 480px;
}

.image-stack img {
  position: absolute;
  width: 68%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(0,0,0,.5);
  transition: transform .5s ease;
}

.image-stack img:first-child { top: 0; left: 0; z-index: 1; }
.image-stack img:last-child { right: 0; bottom: 0; z-index: 2; }
.image-stack:hover img:first-child { transform: translate(-4px, -4px); }
.image-stack:hover img:last-child { transform: translate(4px, 4px); }

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

.values-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  color: var(--ink);
  font-weight: 700;
  font-size: .82rem;
  transition: all .3s ease;
  background: var(--surface-light);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.values-grid span:hover {
  border-color: var(--tomato);
  background: rgba(227,27,35,.08);
}

/* ── Quote Band ── */
.quote-band {
  background: linear-gradient(135deg, var(--tomato), var(--tomato-dark));
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--script);
  font-size: 18rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
}

.quote-band blockquote {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-family: var(--heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.quote-band cite {
  color: rgba(255,255,255,.6);
  font-style: normal;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  cursor: pointer;
  border: 0;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.gallery-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* ── Contact ── */
.contact { background: var(--charcoal); }

.contact-card,
.contact-form {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-card h2 {
  font-family: var(--heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.contact-line,
.hours {
  display: block;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  transition: all .3s ease;
}

.contact-line:hover { padding-left: .5rem; }

.contact-line span,
.hours span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-line strong,
.hours p {
  color: var(--ink);
  font-size: .95rem;
  font-weight: 700;
}

.facebook-link {
  display: inline-flex;
  margin-top: 1rem;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  padding: .75rem 1.2rem;
  font-weight: 800;
  font-size: .82rem;
  transition: all .3s ease;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.facebook-link:hover {
  background: #0d65d9;
  transform: translateY(-2px);
  color: #fff;
}

.contact-form h3 {
  margin-bottom: 1.2rem;
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.form-control {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-weight: 600;
  font-family: var(--body);
  font-size: .9rem;
  transition: all .3s ease;
  background: var(--surface-light);
  color: var(--ink);
}

.form-control:focus {
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(227,27,35,.1);
  background: var(--surface);
  color: var(--ink);
}

.form-control::placeholder { color: var(--muted); }
.form-status { margin: 1rem 0 0; color: var(--tomato); font-weight: 800; }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: var(--muted);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer h4 {
  color: var(--ink);
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: .4rem;
  font-size: .85rem;
  transition: all .3s ease;
}

.footer a:hover { color: var(--tomato); padding-left: 4px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand img { width: 48px; height: 48px; object-fit: contain; }

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  font-size: .8rem;
}

/* ── To Top ── */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--tomato);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all .3s ease;
  z-index: 20;
  box-shadow: 0 4px 16px rgba(227,27,35,.3);
}

.to-top:hover { background: var(--tomato-dark); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ── Page Header ── */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(227,27,35,.08) 0%, transparent 60%);
}

.page-header h1 {
  font-family: var(--heading);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: .3rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.page-header .script-sub {
  font-family: var(--script);
  font-weight: 400;
  color: var(--terracotta);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  position: relative;
}

.page-header p {
  color: var(--muted);
  font-size: 1rem;
  position: relative;
  margin-top: .5rem;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
}

.reveal.in-view { opacity: 1; transform: none; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
}

.slide-left.in-view,
.slide-right.in-view { opacity: 1; transform: none; }

.slide-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .5s var(--ease-smooth), transform .5s var(--ease-smooth);
}

.slide-up.in-view { opacity: 1; transform: none; }

@keyframes menuPanel {
  from { opacity: .15; transform: translateY(14px) scale(.995); }
  to { opacity: 1; transform: none; }
}

@keyframes menuItem {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

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

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 6rem 0 4rem; }
  .category-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .menu-grid { grid-template-columns: 1fr; }
  .image-stack { min-height: 380px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-head { flex-direction: column; align-items: stretch; }
  .menu-search input { min-width: auto; width: 100%; }
}

@media (max-width: 767px) {
  .hero { padding: 5rem 0 3rem; }
  .category-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-pad { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .image-stack { min-height: auto; display: grid; gap: 1rem; }
  .image-stack img { position: static; width: 100%; height: 240px; }
  .pizza-selector-wrapper { flex-direction: column; }
  .top-strip { text-align: center; }
  .dish-feature img { height: 200px; }
  .page-header { padding: 6rem 0 2.5rem; }
}