:root {
  color-scheme: light;
  --red: #c91d2b;
  --red-dark: #8f101a;
  --yellow: #ffd34d;
  --graphite: #1d1b19;
  --graphite-2: #2b2825;
  --ink: #201514;
  --muted: #6d5f5a;
  --line: #eadfd4;
  --paper: #f7efe4;
  --paper-strong: #fffaf2;
  --white: #ffffff;
  --green: #157a4a;
  --shadow: 0 18px 50px rgba(68, 22, 12, 0.14);
}

.menu-body {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 29, 43, 0.18), transparent 34%),
    var(--graphite);
}

.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  padding: clamp(42px, 7vw, 84px) clamp(16px, 6vw, 72px) clamp(26px, 5vw, 48px);
  color: #fff4e1;
}

.menu-hero h1 {
  max-width: 760px;
}

.menu-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #f1ddc2;
  font-size: 18px;
  line-height: 1.6;
}

.menu-note {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-note svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.menu-note strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.menu-note span {
  color: #f1ddc2;
  line-height: 1.45;
}

.menu-toolbar {
  position: sticky;
  top: 69px;
  z-index: 10;
  display: flex;
  gap: 10px;
  padding: 12px clamp(16px, 6vw, 72px);
  overflow-x: auto;
  background: rgba(29, 27, 25, 0.92);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.menu-toolbar::-webkit-scrollbar {
  display: none;
}

.menu-toolbar a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff4e1;
  font-weight: 800;
  text-decoration: none;
}

.menu-toolbar a:hover,
.menu-toolbar a:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.menu-category {
  margin: 18px clamp(16px, 6vw, 72px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #24211f;
  color: #fff4e1;
  scroll-margin-top: 140px;
}

.featured-menu-category {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 211, 77, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #24211f;
}

.top-menu-category {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 29, 43, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #2b1f1f;
}

.menu-category-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.menu-category h2,
.menu-order-cta h2 {
  color: #fff4e1;
}

.site-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.site-price-grid span {
  padding: 10px;
  border: 1px solid rgba(255, 211, 77, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.14);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.site-price-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #f1ddc2;
  font-size: 12px;
  text-transform: uppercase;
}

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

.flavor-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff8eb;
  font-weight: 800;
  line-height: 1.25;
}

.menu-order-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 24px clamp(16px, 6vw, 72px) 56px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: #fff4e1;
  color: var(--ink);
}

.menu-order-cta h2 {
  color: var(--red-dark);
}

.menu-order-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-order-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.inline-menu-button {
  margin: 14px 0 4px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .menu-hero,
  .menu-category-head,
  .menu-order-cta {
    grid-template-columns: 1fr;
  }

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

  .menu-order-buttons {
    justify-content: stretch;
  }

  .menu-order-buttons .button {
    flex: 1 1 160px;
  }
}

@media (max-width: 560px) {
  .menu-toolbar {
    top: 59px;
    padding-inline: 14px;
  }

  .menu-hero {
    padding: 36px 14px 24px;
  }

  .menu-category {
    margin-inline: 14px;
  }

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

  .flavor-grid {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 5px clamp(16px, 5vw, 56px);
  background: rgba(29, 27, 25, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.header-logo {
  width: 112px;
  height: 58px;
  object-fit: cover;
  object-position: center;
}

.logo-crop {
  display: inline-block;
  overflow: hidden;
  background: var(--red);
  box-shadow: 0 8px 20px rgba(49, 13, 8, 0.18);
}

.logo-round {
  width: 66px;
  height: 66px;
  border-radius: 50%;
}

.logo-round img {
  transform: scale(1.36);
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.top-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  color: #f8ead8;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 13px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.call-button svg,
.button svg,
.deal svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 40px;
  border-radius: 8px;
  background: #21b55b;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(9, 83, 39, 0.2);
  text-decoration: none;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #168c45;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.call-button {
  color: var(--red-dark);
  background: var(--yellow);
  box-shadow: 0 8px 22px rgba(119, 50, 8, 0.12);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, #df2635, var(--red));
  box-shadow: 0 12px 24px rgba(143, 16, 26, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.secondary {
  color: #fff4e1;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.full {
  width: 100%;
}

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(36px, 6vw, 72px) clamp(16px, 6vw, 72px) 38px;
  background:
    linear-gradient(110deg, rgba(29, 27, 25, 0.98) 0%, rgba(43, 40, 37, 0.94) 52%, rgba(43, 40, 37, 0.62) 100%),
    var(--graphite);
}

.hero-media {
  order: 2;
  justify-self: stretch;
  aspect-ratio: 965 / 450;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  background: var(--red-dark);
  outline: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero-content {
  max-width: 680px;
}

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

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

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 0.92;
  color: #fff4e1;
  text-wrap: balance;
}

h2 {
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1;
  color: var(--red-dark);
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 26px;
  color: #f0dfcf;
  font-size: 22px;
  line-height: 1.45;
}

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

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -1px clamp(16px, 6vw, 72px) 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.quick-strip div {
  min-height: 92px;
  padding: 20px;
  background: var(--graphite-2);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 6px;
  color: #fff4e1;
}

.quick-strip span {
  color: #d8c8ba;
  line-height: 1.4;
}

.section {
  padding: 72px clamp(16px, 6vw, 72px);
  background: var(--paper);
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow),
.service-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.unit-card,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #fffdf8);
  box-shadow: 0 16px 36px rgba(68, 22, 12, 0.09);
}

.unit-card:hover,
.faq-grid article:hover {
  border-color: #dcc6b2;
  box-shadow: 0 18px 42px rgba(68, 22, 12, 0.12);
}

.unit-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 22px;
}

.unit-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.unit-card-head span {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  background: #fff0ba;
  color: #754607;
  font-size: 12px;
  font-weight: 800;
}

.unit-card p {
  color: var(--muted);
  line-height: 1.5;
}

.unit-card dl {
  display: grid;
  gap: 10px;
  margin: auto 0 12px;
}

.unit-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.unit-card dt {
  color: var(--muted);
  font-weight: 700;
}

.unit-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.map-link:hover,
.map-link:focus-visible {
  text-decoration: underline;
}

.map-link svg {
  width: 17px;
  height: 17px;
}

.promo-section {
  background:
    linear-gradient(135deg, rgba(201, 29, 43, 0.24), rgba(29, 27, 25, 0) 42%),
    var(--graphite);
  color: var(--white);
}

.promo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.promo-section .eyebrow,
.promo-section h2 {
  color: var(--yellow);
}

.today-line {
  font-size: 19px;
}

.flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.flavor-list li,
.flavor-cloud span {
  border-radius: 999px;
  font-weight: 800;
}

.flavor-list li {
  padding: 10px 12px;
  background: rgba(255, 211, 77, 0.14);
  color: #fff4c9;
}

.price-line,
.small-note {
  color: #e6c9b4;
  line-height: 1.5;
}

.week-promos {
  margin-top: 24px;
}

.week-promos > h3 {
  color: #fff4c9;
  font-size: 18px;
  margin-bottom: 12px;
}

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

.week-grid article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.week-grid article.is-today {
  border-color: rgba(255, 211, 77, 0.62);
  background: rgba(255, 211, 77, 0.1);
}

.week-grid h3 {
  margin-bottom: 6px;
  color: #fff4c9;
  font-size: 15px;
  text-transform: capitalize;
}

.week-grid p {
  margin-bottom: 0;
  color: #e6c9b4;
  font-size: 14px;
  line-height: 1.45;
}

.promo-side {
  display: grid;
  gap: 12px;
}

.deal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 211, 77, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.deal strong,
.deal span {
  display: block;
}

.deal span {
  margin-top: 5px;
  color: #eed8c1;
  line-height: 1.45;
}

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

.seo-section {
  background: #f1e4d6;
}

.review-hero {
  padding: 96px clamp(16px, 6vw, 72px) 70px;
  background:
    linear-gradient(135deg, rgba(201, 29, 43, 0.2), rgba(29, 27, 25, 0) 44%),
    var(--graphite);
  color: #fff4e1;
}

.review-hero-inner {
  max-width: 820px;
}

.review-hero h1 {
  margin-bottom: 18px;
}

.review-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #f0dfcf;
  font-size: 20px;
  line-height: 1.5;
}

.review-section {
  min-height: 420px;
}

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

.review-card {
  min-height: 260px;
}

.pending-review {
  pointer-events: none;
  opacity: 0.68;
  box-shadow: none;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
}

.coverage-list span {
  padding: 10px 12px;
  border: 1px solid #decbb8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #4b342f;
  font-weight: 800;
}

.flavor-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 980px;
}

.flavor-cloud span {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: #4b342f;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(201, 29, 43, 0.78), rgba(143, 16, 26, 0.96)),
    var(--red-dark);
  color: var(--white);
}

.service-section .eyebrow,
.service-section h2 {
  color: var(--yellow);
}

.service-copy {
  max-width: 680px;
}

.service-copy p {
  color: #f1d9ca;
}

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

.faq-grid article {
  padding: 20px;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(16px, 6vw, 72px);
  background: #141210;
  color: #d8c4ae;
}

.site-footer .logo-crop {
  flex: 0 0 auto;
}

.site-footer p {
  margin: 0;
}

.footer-copy {
  max-width: 760px;
}

.footer-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #fff4e1;
}

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

  .top-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-media {
    order: 0;
    height: auto;
  }

  h1 {
    font-size: 52px;
  }

  .unit-grid,
  .review-grid,
  .promo-panel,
  .faq-grid,
  .service-section {
    grid-template-columns: 1fr;
  }

  .service-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 4px 14px;
  }

  .header-logo {
    width: 96px;
    height: 50px;
  }

  .logo-round {
    width: 54px;
    height: 54px;
  }

  .call-button {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 13px;
  }

  .whatsapp-button {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 24px 14px 30px;
  }

  .hero-media {
    height: auto;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .service-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .service-actions {
    display: grid;
  }

  .week-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    margin-inline: 14px;
  }

  .section {
    padding: 56px 14px;
  }

  .unit-card {
    min-height: 0;
  }

  .unit-card-head {
    display: grid;
  }

  .unit-card-head span {
    justify-self: start;
  }

  .site-footer {
    display: grid;
  }
}

/* Cardapio page overrides live at the end so the shared site styles do not wash them out. */
.menu-body main {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 29, 43, 0.18), transparent 34%),
    var(--graphite);
}

.menu-body .menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  padding: clamp(42px, 7vw, 84px) clamp(16px, 6vw, 72px) clamp(26px, 5vw, 48px);
  color: #fff4e1;
  background:
    linear-gradient(110deg, rgba(29, 27, 25, 0.72), rgba(201, 29, 43, 0.18)),
    var(--graphite);
}

.menu-body .menu-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: #fff4e1;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
}

.menu-body .menu-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #f1ddc2;
  font-size: 18px;
  line-height: 1.6;
}

.menu-body .menu-category {
  margin: 18px clamp(16px, 6vw, 72px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #24211f;
  color: #fff4e1;
  scroll-margin-top: 140px;
}

.menu-body .featured-menu-category {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 211, 77, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #24211f;
}

.menu-body .top-menu-category {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 29, 43, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #2b1f1f;
}

.menu-body .menu-category-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.menu-body .menu-category h2,
.menu-body .menu-order-cta h2 {
  color: #fff4e1;
  font-size: clamp(36px, 4vw, 52px);
}

.menu-body .site-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.menu-body .site-price-grid span {
  padding: 10px;
  border: 1px solid rgba(255, 211, 77, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.14);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.menu-body .site-price-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #f1ddc2;
  font-size: 12px;
  text-transform: uppercase;
}

.menu-body .flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.menu-body .flavor-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff8eb;
  font-weight: 800;
  line-height: 1.25;
}

.menu-body .menu-order-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 24px clamp(16px, 6vw, 72px) 56px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: #fff4e1;
  color: var(--ink);
}

.menu-body .menu-order-cta h2 {
  color: var(--red-dark);
}

.menu-body .menu-order-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-body .menu-order-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .menu-body .menu-hero,
  .menu-body .menu-category-head,
  .menu-body .menu-order-cta {
    grid-template-columns: 1fr;
  }

  .menu-body .site-price-grid,
  .menu-body .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-body .menu-order-buttons {
    justify-content: stretch;
  }

  .menu-body .menu-order-buttons .button {
    flex: 1 1 160px;
  }
}

@media (max-width: 560px) {
  .menu-body .menu-toolbar {
    top: 59px;
    padding-inline: 14px;
  }

  .menu-body .menu-hero {
    padding: 36px 14px 24px;
  }

  .menu-body .menu-hero h1 {
    font-size: 43px;
  }

  .menu-body .menu-category {
    margin-inline: 14px;
  }

  .menu-body .site-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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