:root {
  --red: #d71920;
  --deep-red: #8f0f14;
  --yellow: #ffc72c;
  --ink: #211814;
  --muted: #6e625e;
  --paper: #f8f7f3;
  --white: #ffffff;
  --green: #0c7b45;
  --line: rgba(33, 24, 20, 0.14);
  --shadow: 0 10px 28px rgba(33, 24, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  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: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.brand img,
.site-footer img {
  width: 86px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: 0.92rem;
  font-weight: 800;
}

.header-action,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.header-action,
.primary-btn {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: none;
}

.secondary-btn {
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 116px clamp(22px, 6vw, 82px) 54px;
  color: var(--ink);
  background: var(--white);
}

.hero-media {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
}

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

.hero-content {
  width: min(520px, 100%);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 560px;
  font-size: clamp(2.4rem, 4.6vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  width: min(500px, 100%);
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

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

.hero-pager {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.hero-pager button {
  width: 46px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 24, 20, 0.2);
}

.hero-pager button.is-active {
  background: var(--yellow);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 clamp(18px, 6vw, 82px) clamp(58px, 7vw, 88px);
  background: var(--white);
}

.quick-strip article {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 0 0 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.quick-strip img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.quick-strip strong {
  display: block;
  padding: 0 20px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.quick-strip a {
  padding: 0 20px;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.quick-strip p,
.section-heading p,
.story-band p,
.site-footer p {
  color: var(--muted);
}

.promos,
.menu-section,
.locations,
.news-strip {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 82px);
}

.section-heading {
  width: min(960px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  width: min(720px, 100%);
}

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

.promo-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: none;
}

.promo-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.promo-card::after {
  display: none;
}

.promo-card div {
  padding: 24px;
  color: var(--ink);
}

.promo-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  line-height: 0.95;
}

.promo-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0;
  border-radius: 999px;
  color: var(--red);
  background: transparent;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.menu-section {
  background: var(--white);
}

.menu-toolbar {
  display: grid;
  grid-template-columns: auto minmax(220px, 420px) 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.select-label {
  font-weight: 950;
}

select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.menu-status {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-weight: 750;
}

.category-tabs {
  display: flex;
  gap: 10px;
  min-height: 46px;
  margin-bottom: 26px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.category-tab.is-active {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

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

.product-card,
.location-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card {
  overflow: hidden;
  min-height: 360px;
  display: grid;
  grid-template-rows: 190px 1fr;
}

.product-card img,
.product-image-fallback {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--yellow);
}

.product-image-fallback {
  display: grid;
  place-items: center;
  color: var(--deep-red);
  font-size: 2.5rem;
  font-weight: 950;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.product-body h3 {
  margin-bottom: 0;
  line-height: 1.08;
}

.product-body p {
  color: var(--muted);
  font-size: 0.94rem;
}

.product-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.price {
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 950;
}

.badge {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(12, 123, 69, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-card.is-disabled {
  opacity: 0.62;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 36px;
  text-align: center;
}

.empty-state img {
  width: 112px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 16px;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(26px, 6vw, 72px);
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 92px);
  background: var(--paper);
  color: var(--ink);
}

.story-band img {
  width: min(390px, 100%);
  justify-self: center;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.story-band p {
  color: var(--muted);
  font-size: 1.08rem;
}

.story-band .eyebrow {
  color: var(--red);
}

.location-card {
  min-height: 180px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-card h3 {
  margin-bottom: 0;
}

.location-card p {
  color: var(--muted);
}

.location-card button {
  align-self: flex-start;
  margin-top: auto;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

.news-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--yellow);
}

.news-strip h2 {
  margin-bottom: 0;
}

.news-strip .eyebrow {
  color: var(--deep-red);
}

.news-strip .primary-btn {
  background: var(--white);
}

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

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

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

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

  .menu-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .brand img {
    width: 72px;
    height: auto;
  }

  .hero {
    min-height: auto;
    padding: 92px 20px 42px;
    gap: 24px;
  }

  .hero-media {
    min-height: 340px;
    order: -1;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.35rem);
  }

  .quick-strip,
  .story-band,
  .news-strip {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    padding: 0 20px 54px;
    gap: 16px;
  }

  .promo-grid,
  .product-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .promo-card img {
    height: 260px;
  }

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

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