:root {
  --ink: #191512;
  --muted: #6f6761;
  --paper: #fffaf3;
  --cream: #f8efe3;
  --red: #dc272f;
  --deep-red: #9e151b;
  --gold: #f3b33e;
  --line: rgba(25, 21, 18, 0.14);
  --shadow: 0 24px 60px rgba(45, 21, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(20, 14, 10, 0.84);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: Oswald, Inter, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.text-link {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-links a:hover,
.text-link:hover {
  text-decoration-line: underline;
}

.call-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.call-button,
.primary-action {
  color: #fff;
  background: var(--red);
}

.secondary-action {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.secondary-action.dark {
  color: var(--ink);
  border-color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(22px, 6vw, 86px) 68px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(243, 179, 62, 0.35), transparent 28%),
    linear-gradient(135deg, rgba(158, 21, 27, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(25, 10, 8, 0.96), rgba(158, 21, 27, 0.9) 58%, rgba(243, 179, 62, 0.62)),
    #24110f;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--red) 0 24px, #fff 24px 48px, var(--gold) 48px 72px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  font-family: Oswald, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(74px, 15vw, 178px);
  line-height: 0.84;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 7px;
  font-size: 24px;
  line-height: 1.02;
}

.hero-line {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.18;
}

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

.hero-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 52px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.hero-info span {
  padding: 8px 0;
}

.hero-info span:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--gold);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: var(--deep-red);
}

.quick-strip span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-weight: 800;
}

.section,
.combo-band,
.visit-band {
  padding: clamp(56px, 8vw, 104px) clamp(22px, 6vw, 86px);
}

section[id] {
  scroll-margin-top: 88px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  background: var(--cream);
}

.intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading > p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.menu-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(220, 39, 47, 0.08) 0 1px, transparent 1px 34px),
    #fff;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--red) 0 28px, #fff 28px 56px, var(--gold) 56px 84px);
}

.menu-section .section-heading {
  position: relative;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 4px solid var(--red);
}

.menu-section h2 {
  color: var(--deep-red);
}

.section-note {
  padding: 14px 18px;
  border-left: 6px solid var(--gold);
  background: var(--cream);
}

.menu-board-callout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--deep-red);
  box-shadow: var(--shadow);
}

.menu-board-callout span,
.menu-board-callout strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 18px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-board-callout strong {
  color: var(--ink);
  background: var(--gold);
}

.highlight-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.menu-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border: 2px solid var(--red);
  color: var(--deep-red);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-button.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

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

.menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 208px;
  padding: 22px;
  border: 2px solid var(--red);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--gold);
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--red) 0 18px, #fff 18px 36px);
}

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

.menu-item h3 {
  margin-top: 12px;
  color: var(--deep-red);
}

.menu-item p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.menu-item strong {
  align-self: flex-start;
  padding: 8px 12px;
  color: #fff;
  background: var(--red);
  font-size: 22px;
}

.combo-band {
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(243, 179, 62, 0.42), transparent 26%),
    linear-gradient(135deg, var(--deep-red), var(--red) 56%, #7d1016);
}

.combo-band .eyebrow,
.combo-band .section-heading > p {
  color: var(--gold);
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
  border: 0;
}

.combo-grid article {
  min-height: 168px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--gold);
}

.combo-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.combo-grid h3 {
  min-height: 52px;
  color: var(--deep-red);
}

.combo-grid strong {
  color: var(--ink);
  font-size: 20px;
}

.full-menu-section {
  background: #fff;
}

.full-menu {
  column-count: 2;
  column-gap: 34px;
}

.menu-category {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.menu-category h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--deep-red);
}

.menu-category h3::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--gold);
}

.menu-category p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 9px;
  border-bottom: 1px dotted rgba(25, 21, 18, 0.26);
  line-height: 1.35;
}

.price-list span {
  min-width: 0;
  color: var(--deep-red);
  font-weight: 900;
}

.price-list b {
  display: block;
  font-weight: inherit;
}

.price-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.94em;
  font-weight: 500;
  line-height: 1.35;
}

.price-list strong {
  color: var(--deep-red);
  font-size: 16px;
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--gold);
}

.visit-band p:not(.eyebrow) {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    background:
      radial-gradient(circle at 78% 26%, rgba(243, 179, 62, 0.32), transparent 30%),
      linear-gradient(180deg, rgba(25, 10, 8, 0.9), rgba(25, 10, 8, 0.78)),
      #24110f;
  }

  .quick-strip,
  .intro,
  .menu-grid,
  .visit-band {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .menu-board-callout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-board-callout span,
  .menu-board-callout strong {
    min-height: 58px;
  }

  .menu-tools {
    justify-content: flex-start;
  }

  .menu-item,
  .menu-item:nth-child(odd),
  .menu-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

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

  .full-menu {
    column-count: 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 25px;
  }

  .call-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 90vh;
    padding: 104px 18px 52px;
  }

  h1 {
    font-size: clamp(64px, 24vw, 104px);
  }

  .hero-info {
    display: grid;
    gap: 4px;
  }

  .hero-info span:not(:last-child)::after {
    content: "";
    margin: 0;
  }

  .quick-strip,
  .combo-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .menu-item {
    min-height: 132px;
  }

  .menu-category {
    padding: 18px;
  }

  .visit-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
