:root {
  --ink: #211a16;
  --muted: #6d6259;
  --paper: #fffaf3;
  --cream: #f4eadc;
  --olive: #5f6f3a;
  --tomato: #a83d2a;
  --wine: #5a2526;
  --gold: #d4a64e;
  --line: rgba(33, 26, 22, 0.15);
  --shadow: 0 20px 60px rgba(33, 26, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 34px);
  color: var(--muted);
  font-weight: 700;
}

nav a:hover {
  color: var(--tomato);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
}

.header-call {
  min-width: 88px;
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: clamp(140px, 20vh, 220px) clamp(20px, 5vw, 70px) clamp(28px, 7vh, 68px);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 26, 22, 0.86), rgba(33, 26, 22, 0.45) 52%, rgba(33, 26, 22, 0.12)),
    url("assets/pizza-hero.jpg") center / cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-width: 150px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--tomato);
  color: white;
}

.button.ghost {
  border-color: currentColor;
  color: inherit;
}

.quick-info {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 8vh, 94px);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.14);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.quick-info div {
  padding: 18px;
  background: rgba(33, 26, 22, 0.24);
}

.quick-info span,
.feature-band span,
.menu-item span,
.event-stack span,
.map-card span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong,
.feature-band strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.intro,
.events,
.menu-section,
.visit {
  padding: clamp(56px, 9vw, 116px) clamp(20px, 5vw, 70px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(280px, 1fr);
  gap: clamp(26px, 7vw, 96px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:not(.eyebrow),
.events p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--wine);
  color: var(--paper);
}

.feature-band div {
  min-height: 150px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.055);
}

.section-heading {
  max-width: 820px;
}

.menu-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.menu-tab {
  min-width: 106px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.menu-tab.active,
.menu-tab:hover {
  border-color: var(--olive);
  background: var(--olive);
  color: white;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.menu-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 34px rgba(33, 26, 22, 0.08);
}

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

.menu-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-item div {
  padding: 18px;
}

.menu-item h3 {
  margin: 5px 0 8px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
}

.events {
  background: #29201c;
  color: var(--paper);
}

.events .section-grid {
  align-items: center;
}

.event-stack {
  display: grid;
  gap: 12px;
}

.event-stack article {
  padding: 22px;
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.06);
}

.event-stack strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.55fr);
  gap: 18px;
  align-items: stretch;
}

.visit-panel,
.map-card {
  border-radius: 8px;
  padding: clamp(26px, 5vw, 46px);
}

.visit-panel {
  background: var(--cream);
}

.visit-panel p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.1rem;
}

.map-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(33, 26, 22, 0.05), rgba(33, 26, 22, 0.78)),
    url("assets/breadsticks.jpg") center / cover;
  color: white;
}

.map-card strong {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.map-card p {
  max-width: 260px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .quick-info,
  .feature-band,
  .section-grid,
  .visit {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-width: 72px;
  }

  .hero {
    min-height: 820px;
    padding: 126px 18px 22px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .quick-info {
    margin-top: 36px;
  }

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

  .menu-tab {
    flex: 1 1 130px;
  }

  footer {
    flex-direction: column;
  }
}
