:root {
  --burgundy-950: #2d090a;
  --burgundy-900: #461011;
  --burgundy-800: #5b1716;
  --burgundy-700: #731f1c;
  --gold-500: #c79a47;
  --gold-400: #ddb968;
  --gold-300: #e9cf91;
  --cream-50: #fffdf7;
  --cream-100: #fbf5e8;
  --cream-200: #f4e8cf;
  --ink: #241b18;
  --muted: #75665f;
  --green: #597a38;
  --shadow: 0 20px 60px rgba(61, 27, 18, 0.11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(199, 154, 71, 0.12), transparent 24rem),
    radial-gradient(circle at 90% 45%, rgba(115, 31, 28, 0.07), transparent 30rem),
    var(--cream-100);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--burgundy-900);
  border-radius: 0.4rem;
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4.5rem 1.25rem 5rem;
  color: var(--gold-300);
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(208, 137, 49, 0.17), transparent 22rem),
    linear-gradient(135deg, rgba(30, 5, 6, 0.25), transparent 38%),
    var(--burgundy-900);
  border-bottom: 1px solid var(--gold-500);
}

.hero::before,
.hero::after {
  position: absolute;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(221, 185, 104, 0.4);
  transform: rotate(45deg);
}

.hero::before {
  top: -195px;
  left: -120px;
}

.hero::after {
  right: -120px;
  bottom: -195px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.brand-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.8rem;
  color: var(--gold-400);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero h1 span {
  font-size: 0.44em;
  vertical-align: 0.8em;
}

.hero__subtitle {
  margin: 0.65rem 0 1.4rem;
  color: var(--gold-300);
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.28em;
  text-transform: lowercase;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  max-width: 420px;
  margin: 0 auto 1.2rem;
}

.hero__divider span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.hero__divider span:last-child {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.hero__divider b {
  font-weight: 400;
}

.hero__categories {
  margin: 0;
  color: var(--cream-200);
  font-family: var(--serif);
  font-size: clamp(0.85rem, 2.3vw, 1.1rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__categories i {
  color: var(--gold-500);
  font-style: normal;
}

.hero__ornament {
  position: absolute;
  left: 50%;
  color: rgba(221, 185, 104, 0.62);
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 1rem;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero__ornament--top {
  top: 1rem;
}

.hero__ornament--bottom {
  bottom: 1rem;
}

.special {
  position: relative;
  z-index: 3;
  width: min(92%, 650px);
  min-height: 98px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  margin: -35px auto 1.8rem;
  padding: 1rem 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow);
}

.special::before,
.special::after {
  position: absolute;
  top: 7px;
  bottom: 7px;
  width: 4px;
  content: "";
  border-top: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
}

.special::before { left: 7px; border-left: 1px solid var(--gold-500); }
.special::after { right: 7px; border-right: 1px solid var(--gold-500); }

.special__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-500);
  border: 1px solid var(--gold-300);
  border-radius: 50%;
}

.special p {
  margin: 0 0 0.25rem;
  color: var(--burgundy-800);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.special span {
  color: var(--muted);
  font-size: 0.86rem;
}

.special strong {
  color: var(--burgundy-800);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.65rem max(1rem, calc((100% - 1180px) / 2));
  background: rgba(251, 245, 232, 0.92);
  border-block: 1px solid rgba(199, 154, 71, 0.28);
  box-shadow: 0 5px 22px rgba(60, 23, 13, 0.07);
  backdrop-filter: blur(14px);
}

.category-nav__inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav__inner::-webkit-scrollbar { display: none; }

.category-nav a {
  flex: none;
  padding: 0.58rem 0.85rem;
  color: var(--burgundy-800);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: 160ms ease;
}

.category-nav a:hover,
.category-nav a:focus-visible,
.category-nav a.active {
  color: var(--cream-50);
  background: var(--burgundy-800);
}

.menu-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.intro {
  max-width: 650px;
  margin: 0 auto 3.8rem;
  text-align: center;
}

.intro h2 {
  margin: 0;
  color: var(--burgundy-800);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
}

.intro > p:not(.eyebrow):not(.search-status) {
  margin: 0.8rem auto 1.7rem;
  color: var(--muted);
  line-height: 1.6;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 520px);
  margin: 0 auto;
  color: var(--muted);
}

.search svg {
  position: absolute;
  left: 1rem;
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search input {
  width: 100%;
  padding: 0.95rem 3rem;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid #dfd0b7;
  border-radius: 999px;
  box-shadow: 0 7px 24px rgba(50, 24, 18, 0.06);
  outline: none;
}

.search input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(199, 154, 71, 0.17), 0 7px 24px rgba(50, 24, 18, 0.06);
}

.search button {
  position: absolute;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  display: none;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
}

.search button.visible { display: block; }
.search button:hover { background: var(--cream-200); }

.search-status {
  min-height: 1.2em;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.menu-section {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(199, 154, 71, 0.28);
  border-radius: 0.25rem;
  box-shadow: 0 12px 42px rgba(53, 25, 17, 0.055);
  scroll-margin-top: 102px;
}

.menu-section::after {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  content: "";
  border: 1px solid rgba(199, 154, 71, 0.2);
  transform: rotate(45deg);
}

.menu-section--feature {
  color: var(--cream-50);
  background:
    radial-gradient(circle at 100% 0, rgba(218, 165, 77, 0.18), transparent 17rem),
    var(--burgundy-800);
  border-color: var(--burgundy-700);
}

.menu-section--feature .section-heading h2,
.menu-section--feature .menu-item h3,
.menu-section--feature .price {
  color: var(--cream-50);
}

.menu-section--feature .section-heading p,
.menu-section--feature .menu-item p {
  color: #e2cfc4;
}

.menu-section--feature .menu-item + .menu-item {
  border-color: rgba(233, 207, 145, 0.18);
}

.menu-section--green .section-icon { color: var(--green); }

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(199, 154, 71, 0.35);
}

.section-heading p {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--burgundy-800);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
}

.section-icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex: none;
  place-items: center;
  color: var(--gold-500);
  border: 1px solid rgba(199, 154, 71, 0.4);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.section-icon--flame { color: var(--gold-300); }

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

.menu-item + .menu-item {
  border-top: 1px dotted rgba(131, 101, 66, 0.28);
}

.menu-item h3 {
  margin: 0;
  color: #2d1c18;
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1.25;
}

.menu-item h3 small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
}

.menu-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.89rem;
  line-height: 1.45;
}

.price {
  padding-top: 0.05rem;
  color: var(--burgundy-800);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.tag {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  margin-left: 0.25rem;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
  vertical-align: 0.15em;
}

.tag--vegan {
  color: #fff;
  background: var(--green);
}

.tag--spicy {
  color: #fff;
  background: #b43b29;
}

.more-note {
  margin: 0.8rem 0 0;
  padding: 0.9rem 1rem;
  color: var(--burgundy-800);
  background: var(--cream-100);
  border-left: 2px solid var(--gold-500);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
}

.menu-section--compact .menu-item {
  padding: 0.72rem 0;
}

[hidden] { display: none !important; }

.no-results {
  padding: 4rem 1rem;
  text-align: center;
}

.no-results > span {
  color: var(--gold-500);
  font-size: 1.5rem;
}

.no-results h2 {
  margin: 0.8rem 0 0.5rem;
  color: var(--burgundy-800);
  font-family: var(--serif);
}

.no-results p { margin: 0; color: var(--muted); }

.legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  padding: 1.2rem;
  color: var(--muted);
  border-top: 1px solid rgba(199, 154, 71, 0.3);
  border-bottom: 1px solid rgba(199, 154, 71, 0.3);
  font-size: 0.75rem;
}

.legend p {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}

footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem;
  color: #dbcdbd;
  background: var(--burgundy-950);
  border-top: 2px solid var(--gold-500);
  text-align: center;
}

footer::before,
footer::after {
  position: absolute;
  top: -85px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(221, 185, 104, 0.2);
  transform: rotate(45deg);
}

footer::before { left: -85px; }
footer::after { right: -85px; }

.footer__mark {
  color: var(--gold-500);
}

footer h2 {
  margin: 0.7rem 0;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 500;
}

footer p {
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer__fineprint {
  color: #9f8c82;
  font-size: 0.72rem;
}

footer a {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero {
    min-height: 360px;
    padding-block: 3.7rem 4.5rem;
  }

  .special {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 0.9rem 1.2rem;
  }

  .special strong {
    grid-column: 2;
    font-size: 1.2rem;
  }

  .special__icon { grid-row: 1 / 3; }

  .menu-shell {
    width: min(100% - 1.2rem, 620px);
    padding: 3.5rem 0;
  }

  .intro { margin-bottom: 2.7rem; }

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

  .menu-section { padding: 1.35rem; }

  .menu-item { gap: 0.7rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 3.25rem; }
  .hero__subtitle { letter-spacing: 0.2em; }
  .hero__categories { letter-spacing: 0.12em; }
  .special p { font-size: 1rem; }
  .special span { font-size: 0.76rem; }
  .section-heading { align-items: flex-start; }
  .section-icon { width: 37px; height: 37px; }
  .menu-item h3 { font-size: 1rem; }
  .menu-item p { font-size: 0.84rem; }
  .legend { align-items: flex-start; flex-direction: column; gap: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
