:root {
  --bg: #fffbef;
  --surface: #fffef8;
  --surface-strong: #f0d35a;
  --ink: #20323f;
  --muted: #566774;
  --accent: #e0ad00;
  --accent-deep: #a27600;
  --accent-soft: #f2cd4f;
  --line: #e4d19a;
  --shadow: 0 18px 45px rgba(44, 59, 70, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(180, 18, 34, 0.42), transparent 30%),
    radial-gradient(circle at top right, rgba(124, 0, 18, 0.28), transparent 24%),
    linear-gradient(180deg, #b3122a 0%, #7f0d1a 100%);
  color: var(--ink);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 16px auto 40px;
}

.hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(242, 205, 79, 0.9)),
    linear-gradient(180deg, #ffffff 0%, #f6e08d 100%);
  border: 2px solid rgba(162, 118, 0, 0.08);
  border-radius: calc(var(--radius-xl) + 8px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px 12px;
}

.brand {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.65rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--ink);
}

.topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
}

.call-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 1fr);
  gap: 28px;
  padding: 18px 28px 28px;
}

.hero-copy {
  padding: 8px 8px 18px 2px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.96;
  letter-spacing: 0.02em;
  margin: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 6.4vw, 5.7rem);
  text-transform: uppercase;
  color: var(--ink);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  text-transform: uppercase;
}

.hero-text,
.small-note,
.feature-card p,
.menu-card-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}

.menu-card-intro {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.size-table-block {
  display: grid;
  gap: 10px;
  margin: 0 -22px 16px;
  padding: 16px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 213, 0.95));
  border-top: 1px solid rgba(162, 118, 0, 0.16);
  border-bottom: 1px solid rgba(162, 118, 0, 0.16);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.menu-card-intro-lead {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.size-table th,
.size-table td {
  padding: 10px 0;
  vertical-align: top;
  text-align: left;
}

.size-table tr + tr {
  border-top: 1px solid rgba(162, 118, 0, 0.16);
}

.size-table th {
  width: 96px;
  padding-right: 14px;
  font-weight: 900;
  color: var(--ink);
}

.size-table td {
  color: var(--muted);
}

.menu-card-intro-note {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

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

.hero-facts,
.detail-list,
.feature-card ul,
.hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.hero-facts li,
.detail-list li,
.feature-card li,
.hero-card li {
  margin: 0 0 10px;
  line-height: 1.5;
}

.hero-facts li {
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-side {
  display: grid;
  gap: 20px;
  align-self: end;
  max-width: 520px;
  justify-self: end;
}

.hero-photo {
  margin: 0;
  padding: 10px;
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 224, 141, 0.88));
  border: 1px solid rgba(162, 118, 0, 0.18);
  box-shadow:
    0 18px 45px rgba(44, 59, 70, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transform: translateY(10px);
}

.hero-photo img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius-lg) - 2px);
  max-height: 360px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.hero-card {
  background: rgba(255, 254, 248, 0.98);
  color: var(--ink);
  padding: 24px 24px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(162, 118, 0, 0.15);
  box-shadow:
    0 18px 45px rgba(44, 59, 70, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-card-header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(32, 50, 63, 0.15);
}

.hero-card-kicker {
  margin: 0;
  color: rgba(32, 50, 63, 0.75);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.hero-card-intro {
  margin: 0 0 14px;
  color: rgba(32, 50, 63, 0.88);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding-left: 18px;
  margin: 0;
}

.hero-card li {
  margin: 0;
  line-height: 1.35;
}

.hero-card-note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(32, 50, 63, 0.15);
  color: rgba(32, 50, 63, 0.8);
  line-height: 1.5;
}

.notice-band {
  margin: 34px 0 22px;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  border: 1px solid rgba(162, 118, 0, 0.12);
}

.notice-band p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.info-panel,
.feature-card,
.story-card,
.photo-feature-card,
.location-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(242, 205, 79, 0.9)),
    linear-gradient(180deg, #ffffff 0%, #f6e08d 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.menu-card {
  background: rgba(255, 254, 248, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.info-panel,
.feature-card {
  padding: 24px;
}

.info-panel h2 {
  margin-bottom: 14px;
}

.location-card h2 {
  margin-bottom: 14px;
}

.menu-section {
  margin: 34px 0;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(242, 205, 79, 0.9)),
    linear-gradient(180deg, #ffffff 0%, #f6e08d 100%);
  border: 1px solid rgba(162, 118, 0, 0.08);
  border-radius: calc(var(--radius-xl) + 4px);
}

.delivery-section,
.story-section,
.location-section {
  margin: 34px 0;
}

.photo-feature-section {
  margin: 34px 0;
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(248, 231, 154, 0.92), rgba(240, 211, 90, 0.92));
  border: 1px solid rgba(162, 118, 0, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.delivery-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.delivery-copy p:last-child,
.story-card p:last-child {
  margin-bottom: 0;
}

.story-card {
  padding: 24px;
}

.photo-feature-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.section-photo,
.feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
}

.section-photo img,
.feature-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.photo-feature-copy p:last-child {
  margin-bottom: 0;
}

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

.location-card {
  padding: 24px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.feature-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card-wide {
  padding: 28px;
}

.feature-card-wide h2 {
  margin-bottom: 18px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.menu-download {
  min-width: 150px;
  white-space: nowrap;
}

.search-field {
  display: grid;
  gap: 8px;
  min-width: min(100%, 340px);
  font-weight: 700;
}

.search-field input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

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

.menu-card {
  padding: 22px 22px 10px;
  background: rgba(255, 254, 248, 0.98);
}

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

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card-header h3 {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.menu-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-items {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.menu-item {
  padding: 12px 0;
  border-top: 1px dashed var(--line);
}

.menu-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.menu-item-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.menu-item-desc {
  margin: 4px 0 0;
  line-height: 1.45;
  color: var(--muted);
}

.feature-grid {
  margin-bottom: 36px;
}

.small-note {
  margin: 14px 0 0;
}

.menu-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 248, 0.96);
  color: var(--muted);
}

.site-footer {
  margin: 28px 0 12px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(242, 205, 79, 0.9)),
    linear-gradient(180deg, #ffffff 0%, #f6e08d 100%);
  color: var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 18px;
}

.footer-heading {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.site-footer .eyebrow {
  color: var(--accent-deep);
}

.footer-lead,
.site-footer p {
  line-height: 1.6;
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-content,
  .info-grid,
  .feature-grid,
  .menu-grid,
  .delivery-section,
  .location-section,
  .footer-grid,
  .photo-feature-card,
  .feature-photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    max-width: none;
    justify-self: stretch;
  }

  .hero-photo {
    transform: none;
  }

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

  .menu-download {
    width: 100%;
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(2.55rem, 8.5vw, 4.25rem);
  }

  h2 {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
    margin: 10px auto 28px;
  }

  .topbar,
  .hero-content,
  .menu-section {
    padding: 18px;
  }

  .info-panel,
  .feature-card,
  .story-card,
  .location-card,
  .delivery-section,
  .photo-feature-card,
  .site-footer {
    padding: 18px;
  }

  .brand {
    font-size: 2rem;
  }

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

  .topbar-links {
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .topbar-links a:not(.call-link) {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
  }

  .call-link,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-actions {
    margin: 22px 0 18px;
  }

  .hero-facts li {
    font-size: 1rem;
  }

  .hero-card,
  .menu-card {
    padding: 18px;
  }

  .hero-card ul {
    grid-template-columns: 1fr;
  }

  .size-table-block {
    margin: 0 -18px 14px;
    padding: 14px 18px 12px;
  }

  .size-table th {
    width: 84px;
  }

  .hero-photo {
    padding: 8px;
  }

  .menu-meta {
    gap: 8px;
  }

  .chip {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .search-field {
    min-width: 100%;
  }

  .menu-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .menu-card-header h3 {
    font-size: 1.35rem;
  }

  .menu-items {
    gap: 6px;
  }

  .menu-item {
    padding: 10px 0;
  }

  .menu-item-name {
    font-size: 1rem;
  }

  .footer-grid {
    gap: 16px;
  }
}
