:root {
  --palumbo-red: #8f1722;
  --palumbo-red-dark: #4c1117;
  --gold: #d69a12;
  --gold-light: #f1c24b;
  --ink: #241d1a;
  --cream: #fbf4e8;
  --paper: #fffaf1;
  --charcoal: #171514;
  --brick: #5d231f;
  --muted: #7b6a60;
  --shadow: 0 22px 60px rgba(36, 29, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(93, 35, 31, 0.18) 0 10px, transparent 10px 100%),
    linear-gradient(var(--cream), #f7ead9);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background-image:
    linear-gradient(335deg, var(--brick) 23px, transparent 23px),
    linear-gradient(155deg, var(--brick) 23px, transparent 23px),
    linear-gradient(335deg, var(--brick) 23px, transparent 23px),
    linear-gradient(155deg, var(--brick) 23px, transparent 23px);
  background-size: 58px 58px;
  background-position: 0 2px, 4px 35px, 29px 31px, 34px 6px;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.95);
  border-bottom: 5px solid var(--gold);
  box-shadow: 0 8px 30px rgba(36, 29, 26, 0.12);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(150px, 16vw, 218px);
  max-height: 66px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
}

.site-nav a {
  padding: 10px 13px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--palumbo-red);
}

.site-nav .nav-order {
  color: white;
  background: var(--palumbo-red);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--palumbo-red);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: stretch;
  background: var(--charcoal);
}

.hero-media {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 21, 20, 0.04), rgba(23, 21, 20, 0.72));
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 86px);
  color: var(--paper);
  background:
    linear-gradient(rgba(23, 21, 20, 0.9), rgba(23, 21, 20, 0.9)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 9px);
}

.script {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-family: Caveat, cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: white;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.9rem);
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.35rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
}

.button,
.order-band a,
.chalk-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.primary {
  color: white;
  background: var(--palumbo-red);
}

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

.secondary {
  color: var(--paper);
  border-color: var(--gold);
}

.secondary:not(.dark):hover {
  background: rgba(214, 154, 18, 0.15);
}

.secondary.dark {
  color: var(--palumbo-red-dark);
  border-color: var(--palumbo-red);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.quick-facts div {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.quick-facts dt {
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  color: var(--gold-light);
}

.quick-facts dd {
  margin: 0;
  color: white;
}

.order-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 6vw, 72px);
  color: var(--charcoal);
  background: var(--gold);
}

.order-band .script {
  color: var(--palumbo-red-dark);
  font-size: 2rem;
}

.order-band strong {
  display: block;
  max-width: 900px;
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  text-transform: uppercase;
}

.order-band a {
  flex: 0 0 auto;
  color: white;
  background: var(--charcoal);
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(22px, 6vw, 76px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  background: var(--paper);
}

.section-kicker {
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--palumbo-red);
}

.intro-grid p,
.split-copy p,
.section-heading p:not(.script) {
  color: var(--muted);
  font-size: 1.06rem;
}

.chalk-card {
  padding: 28px;
  color: var(--paper);
  background:
    linear-gradient(rgba(23, 21, 20, 0.92), rgba(23, 21, 20, 0.92)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 10px);
  border: 8px solid #3d1916;
  box-shadow: var(--shadow);
}

.chalk-card h3 {
  color: white;
}

.chalk-card a {
  margin-top: 12px;
  color: var(--charcoal);
  background: var(--gold);
}

.place-section {
  background:
    linear-gradient(rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.92)),
    repeating-linear-gradient(90deg, rgba(93, 35, 31, 0.18) 0 9px, transparent 9px 46px);
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
}

.place-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  margin: 0;
  color: white;
  background: var(--charcoal);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.place-card.wide {
  grid-row: auto;
  min-height: 205px;
}

.place-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
}

.place-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 21, 20, 0.82), rgba(23, 21, 20, 0.04) 58%);
}

.place-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 14px;
}

.place-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-family: Oswald, Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.place-card strong {
  display: block;
  max-width: 640px;
  font-size: clamp(0.96rem, 1.2vw, 1.1rem);
  line-height: 1.22;
}

.menu-preview {
  background: #f5ead9;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading .script {
  color: var(--palumbo-red);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.food-card {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(76, 17, 23, 0.12);
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(36, 29, 26, 0.08);
}

.food-card.feature {
  grid-column: span 1;
  grid-row: span 1;
}

.food-card img {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
  object-position: center 42%;
}

.food-card.feature img {
  aspect-ratio: 1 / 0.74;
}

.food-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px;
}

.food-card span {
  color: var(--gold);
  font-family: Oswald, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.food-card h3 {
  margin: 6px 0 7px;
  color: var(--palumbo-red-dark);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.08;
}

.food-card p {
  flex: 1;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.36;
}

.food-card a {
  width: fit-content;
  color: var(--palumbo-red);
  border-bottom: 2px solid var(--gold);
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: 640px;
  background: var(--charcoal);
}

.photo-panel {
  position: relative;
  overflow: hidden;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px);
  color: var(--paper);
}

.split-copy .script {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.split-copy h2 {
  color: white;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.service-list span {
  padding: 9px 12px;
  color: white;
  background: rgba(214, 154, 18, 0.18);
  border: 1px solid rgba(214, 154, 18, 0.45);
  border-radius: 4px;
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
}

.gallery-section {
  background: var(--paper);
}

.compact {
  max-width: 720px;
}

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

.menu-categories article {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #171514;
  border: 1px solid rgba(76, 17, 23, 0.16);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.menu-categories div {
  flex: 1;
  padding: 24px;
  color: var(--paper);
  background:
    linear-gradient(rgba(23, 21, 20, 0.92), rgba(23, 21, 20, 0.92)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 10px);
}

.menu-categories span {
  color: var(--gold-light);
  font-family: Oswald, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-categories h3 {
  margin: 8px 0 10px;
  color: white;
}

.menu-categories p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.76);
}

.menu-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 26px clamp(22px, 4vw, 38px);
  color: var(--charcoal);
  background: var(--gold);
  border-radius: 6px;
}

.menu-callout .script {
  color: var(--palumbo-red-dark);
  font-size: 2.3rem;
}

.menu-callout h3 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  text-transform: uppercase;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  background: #f6ead6;
}

.visit-card,
.map-card {
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visit-card {
  padding: clamp(30px, 5vw, 52px);
}

.visit-card .script {
  color: var(--palumbo-red);
}

.visit-details {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.visit-details h3 {
  margin-bottom: 5px;
  color: var(--palumbo-red-dark);
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
}

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

.visit .secondary {
  color: var(--palumbo-red-dark);
  border-color: var(--palumbo-red);
}

.map-card {
  min-height: 520px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(22px, 6vw, 72px);
  color: var(--paper);
  background: var(--charcoal);
}

.site-footer img {
  width: 150px;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.22));
}

.site-footer p {
  margin-bottom: 4px;
}

.social-links {
  display: flex;
  gap: 14px;
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
}

.social-links a {
  color: var(--gold-light);
  text-decoration: none;
}

.sticky-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  min-height: 48px;
  padding: 13px 18px;
  color: white;
  background: var(--palumbo-red);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .hero,
  .split-section,
  .visit,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(23, 21, 20, 0.72), rgba(23, 21, 20, 0.05));
  }

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

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

  .place-card.wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 235px;
  }

  .photo-panel {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 22px 18px;
    background: var(--paper);
    border-bottom: 4px solid var(--gold);
  }

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

  .site-nav a {
    padding: 13px 0;
  }

  .site-nav .nav-order {
    padding: 13px 14px;
    text-align: center;
  }

  .hero-content {
    padding: 38px 22px 48px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .order-band strong {
    overflow-wrap: anywhere;
  }

  .quick-facts,
  .menu-categories,
  .place-grid {
    grid-template-columns: 1fr;
  }

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

  .place-card,
  .place-card.wide {
    grid-column: auto;
    min-height: 220px;
  }

  .quick-facts {
    gap: 8px;
  }

  .order-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-band a {
    width: 100%;
  }

  .food-card.feature {
    grid-column: span 1;
    grid-row: span 1;
  }

  .menu-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .sticky-order {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .food-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 148px;
    max-height: 58px;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-actions,
  .visit-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
