:root {
  --ink: #24100c;
  --burgundy: #511a13;
  --burgundy-dark: #260b08;
  --terracotta: #a84d31;
  --gold: #d9aa48;
  --gold-light: #f2d283;
  --cream: #fff9ec;
  --paper: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(217, 170, 72, 0.13), transparent 24rem),
    #f6efe3;
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.menu-header {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 110px) 24px;
  text-align: center;
  color: var(--cream);
  background:
    linear-gradient(rgba(31, 7, 5, 0.82), rgba(67, 18, 12, 0.9)),
    url("images/IMG_2841.webp") center / cover;
}

.menu-header::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(242, 210, 131, 0.42);
  content: "";
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: clamp(12px, 1.2vw, 17px);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.menu-header h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(60px, 10vw, 145px);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.business-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin-top: 24px;
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 700;
}

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

.section-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px max(18px, calc((100vw - 1500px) / 2));
  background: rgba(38, 11, 8, 0.96);
  box-shadow: 0 8px 28px rgba(36, 16, 12, 0.18);
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  flex: none;
  padding: 9px 14px;
  border: 1px solid rgba(217, 170, 72, 0.42);
  border-radius: 999px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 80px;
}

.menu-section {
  scroll-margin-top: 82px;
  margin-bottom: clamp(58px, 8vw, 100px);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading::after {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.section-title {
  margin: 0;
  color: var(--burgundy);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 36px);
}

.menu-card {
  overflow: hidden;
  border: 1px solid rgba(81, 26, 19, 0.13);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(61, 27, 19, 0.11);
}

.card-image-wrap {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background: #f1e7d7;
}

.card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-content {
  min-height: 106px;
  padding: 18px 20px 20px;
  text-align: center;
}

.item-name {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.25;
}

.item-price {
  margin: 9px 0 0;
  color: var(--terracotta);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px 20px;
  color: var(--cream);
  background: var(--burgundy-dark);
}

footer strong {
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
}

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

@media (max-width: 620px) {
  .menu {
    width: min(100% - 22px, 1500px);
    padding-top: 28px;
  }

  .items-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-content {
    min-height: auto;
  }

  footer {
    flex-direction: column;
  }
}

@media print {
  .section-nav {
    display: none;
  }

  .menu-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
