:root {
  --bg: #070707;
  --bg-soft: #0d0d0c;
  --panel: #141311;
  --panel-2: #1d1a16;
  --paper: #fbf3e2;
  --paper-soft: #efe2c7;
  --ink: #fff9ee;
  --text: #f4ead9;
  --muted: #b9ad99;
  --muted-2: #7d735f;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(26, 19, 12, 0.15);
  --red: #db402d;
  --red-dark: #b72f20;
  --sage: #79a875;
  --copper: #c88a46;
  --gold: #eac06a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.cart-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: #15100b;
  transform: translateY(-150%);
}

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

.announcement {
  position: relative;
  z-index: 25;
  border-bottom: 1px solid rgba(200, 138, 70, 0.42);
  background: #080808;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.announcement__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
}

.open-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(121, 168, 117, 0.14);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 34px;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(18px);
  animation: header-drop 220ms ease both;
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 192, 106, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  font-family: var(--display);
  font-size: 27px;
  line-height: 1;
}

.brand__mark--image {
  overflow: hidden;
  padding: 2px;
  background: #fff;
}

.brand__mark--image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand__text {
  display: block;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 249, 238, 0.64);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 720;
}

.nav__links a {
  position: relative;
  color: rgba(255, 249, 238, 0.77);
  transition: color 180ms ease;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: #fff;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-pill,
.button,
.filter-button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 8px 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cart-pill:hover,
.cart-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(234, 192, 106, 0.72);
  background: rgba(234, 192, 106, 0.12);
}

.cart-pill svg {
  width: 18px;
  height: 18px;
}

.cart-pill__count,
.mobile-order-bar__count,
.menu-order-cta__count {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0 7px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: max(650px, calc(100svh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #070707 0%, #11100e 48%, #18130f 100%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, black, transparent 86%);
}

.hero__line {
  position: absolute;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 192, 106, 0.45), transparent);
  transform: rotate(-18deg);
}

.hero__line--one {
  top: 27%;
  right: -8%;
}

.hero__line--two {
  right: 8%;
  bottom: 17%;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: 62px;
  padding: 118px 0 68px;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

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

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

h1,
h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(56px, 7vw, 88px);
}

h2 {
  font-size: clamp(38px, 5vw, 70px);
}

.hero__claim {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 249, 238, 0.74);
  font-size: 18px;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 860;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 35px rgba(219, 64, 45, 0.24);
}

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

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.13);
}

.social-icon-link {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  transform: translateY(-1px);
  border-color: #e35d7c;
  background: rgba(227, 93, 124, 0.14);
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
}

.social-icon-link--contact {
  border-color: var(--line);
  background: transparent;
}

.button--outline {
  border: 1px solid var(--line-dark);
  background: transparent;
  color: #1d1710;
}

.button--outline:hover,
.button--outline:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(219, 64, 45, 0.5);
  color: var(--red-dark);
}

.hero__proof {
  position: absolute;
  left: calc((100% - min(calc(100% - 40px), var(--container))) / 2);
  bottom: 24px;
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
}

.hero__proof div {
  min-height: 88px;
  padding: 18px;
  background: rgba(10, 10, 10, 0.62);
}

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

.hero__proof strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}

.hero__proof span {
  margin-top: 4px;
  color: rgba(255, 249, 238, 0.6);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.pizza-emblem {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 192, 106, 0.28);
  border-radius: 50%;
  background:
    conic-gradient(from 22deg, rgba(219, 64, 45, 0.18), rgba(234, 192, 106, 0.18), rgba(121, 168, 117, 0.18), rgba(219, 64, 45, 0.18)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 18px rgba(0, 0, 0, 0.22), var(--shadow);
}

.pizza-emblem__ring {
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 249, 238, 0.18);
  border-radius: 50%;
}

.pizza-emblem__core {
  width: 162px;
  height: 162px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 192, 106, 0.45);
  border-radius: 50%;
  background: #10100f;
  color: var(--gold);
  font-family: var(--display);
  font-size: 98px;
  line-height: 1;
}

.pizza-emblem__core--brand {
  overflow: hidden;
  padding: 8px;
  background: #fff;
}

.pizza-emblem__core--brand img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.pizza-emblem__slice {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(219, 64, 45, 0.11);
}

.pizza-emblem__slice--one {
  top: 28%;
  left: 22%;
}

.pizza-emblem__slice--two {
  right: 22%;
  bottom: 27%;
  background: var(--sage);
  box-shadow: 0 0 0 8px rgba(121, 168, 117, 0.11);
}

.pizza-emblem__slice--three {
  top: 26%;
  right: 28%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(234, 192, 106, 0.1);
}

.hero-card {
  position: absolute;
  width: 210px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(11, 11, 10, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
}

.hero-card--top {
  top: 62px;
  right: 0;
}

.hero-card--bottom {
  bottom: 42px;
  left: 0;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 249, 238, 0.72);
  font-size: 12px;
  font-weight: 760;
  transform: translateX(50%);
}

.hero__scroll svg {
  width: 17px;
  height: 17px;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.section-heading p {
  margin-bottom: 8px;
  color: rgba(36, 28, 20, 0.68);
  font-size: 17px;
}

.menu-section {
  background: var(--paper);
  color: #1d1710;
}

.fulfillment-choice {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.fulfillment-choice legend {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.fulfillment-choice legend span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fulfillment-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fulfillment-card {
  position: relative;
  min-height: 142px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: start;
  gap: 8px 12px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.fulfillment-card:hover {
  transform: translateY(-1px);
  border-color: rgba(219, 64, 45, 0.32);
}

.fulfillment-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fulfillment-card svg {
  width: 27px;
  height: 27px;
  grid-row: span 2;
  color: var(--red);
}

.fulfillment-card strong,
.fulfillment-card small {
  display: block;
}

.fulfillment-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.fulfillment-card small {
  color: rgba(36, 28, 20, 0.62);
  font-size: 13px;
}

.fulfillment-card__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(36, 28, 20, 0.26);
  border-radius: 50%;
}

.fulfillment-card:has(input:checked) {
  border-color: rgba(219, 64, 45, 0.66);
  background: #fff8ec;
  box-shadow: 0 18px 40px rgba(96, 63, 24, 0.1);
}

.fulfillment-card:has(input:checked) .fulfillment-card__check {
  border-color: var(--red);
  background: radial-gradient(circle, var(--red) 42%, transparent 45%);
}

.field-error {
  margin: 12px 0 0;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 760;
}

.menu-photo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  align-items: start;
  gap: 16px;
  margin-top: 28px;
}

.menu-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #d9c0a7;
  box-shadow: 0 24px 60px rgba(86, 55, 22, 0.13);
}

.menu-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.menu-photo img {
  width: 100%;
  height: auto;
  transition: transform 300ms ease;
}

.menu-photo:hover img,
.menu-photo:focus-visible img {
  transform: scale(1.012);
}

.menu-photo__aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff8ec;
}

.menu-photo__aside > span {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-photo__aside h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.02;
}

.menu-photo__aside p {
  margin: 0 0 4px;
  color: rgba(36, 28, 20, 0.66);
}

.menu-photo__aside .button {
  width: 100%;
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  color: rgba(36, 28, 20, 0.72);
  font-size: 13px;
  font-weight: 820;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(219, 64, 45, 0.52);
  background: #1c1510;
  color: var(--ink);
}

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

.menu-item {
  min-height: 182px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-item:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 64, 45, 0.34);
  box-shadow: 0 20px 45px rgba(72, 48, 18, 0.1);
}

.menu-item__meta {
  min-width: 0;
}

.menu-item__category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 13px;
  padding: 4px 8px;
  border: 1px solid rgba(219, 64, 45, 0.18);
  border-radius: var(--radius);
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-item h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.menu-item p {
  margin-bottom: 0;
  color: rgba(36, 28, 20, 0.66);
  font-size: 14px;
}

.menu-item__side {
  min-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.menu-item__price {
  color: #1d1710;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.add-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(219, 64, 45, 0.42);
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.add-button:hover,
.add-button:focus-visible {
  transform: translateY(-1px);
  background: var(--red-dark);
}

.add-button svg {
  width: 19px;
  height: 19px;
}

.menu-note,
.menu-order-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff8ec;
}

.menu-note svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--red);
}

.menu-note p,
.menu-order-cta p {
  margin: 0;
  color: rgba(36, 28, 20, 0.67);
}

.menu-order-cta {
  justify-content: space-between;
  gap: 20px;
}

.menu-order-cta span:first-child {
  display: block;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #0b0b0b 0%, #14110e 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(390px, 1fr);
  gap: 58px;
  align-items: center;
}

.products-copy p {
  max-width: 600px;
  color: rgba(255, 249, 238, 0.72);
  font-size: 17px;
}

.product-signature {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
}

.product-signature div {
  min-height: 72px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
}

.product-signature strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.product-signature span {
  color: rgba(255, 249, 238, 0.78);
}

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

.products-board article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.products-board article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(219, 64, 45, 0.17), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.products-board article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(234, 192, 106, 0.16), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.products-board article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(121, 168, 117, 0.18), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.products-board span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.products-board h3 {
  margin: auto 0 10px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.products-board p {
  margin: 0;
  color: rgba(255, 249, 238, 0.67);
  font-size: 14px;
}

.products-carousel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0a09;
  box-shadow: var(--shadow);
  outline: none;
}

.products-carousel:focus-visible {
  box-shadow: 0 0 0 3px rgba(234, 192, 106, 0.55), var(--shadow);
}

.products-carousel__viewport {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #080808;
}

.product-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 520ms ease, transform 720ms ease;
}

.product-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: rgba(8, 8, 8, 0.82);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.product-slide figcaption span,
.product-slide figcaption strong {
  display: block;
}

.product-slide figcaption span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-slide figcaption strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

.products-carousel__controls {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.carousel-button {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: rgba(234, 192, 106, 0.65);
  background: rgba(234, 192, 106, 0.12);
}

.carousel-button svg {
  width: 19px;
  height: 19px;
}

.products-carousel__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.products-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.products-carousel__dots button[aria-current="true"] {
  width: 24px;
  border-radius: 5px;
  background: var(--gold);
}

.products-carousel__counter {
  margin-left: auto;
  color: rgba(255, 249, 238, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.products-carousel__counter strong {
  color: var(--ink);
  font-size: 15px;
}

.reviews-section {
  background: #faf0dd;
  color: #1d1710;
}

.reviews-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.reviews-head > span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reviews-head p {
  max-width: 580px;
  color: rgba(36, 28, 20, 0.66);
  font-size: 17px;
}

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

.review-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.review-stars {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.review-card__top span {
  color: rgba(36, 28, 20, 0.56);
  font-size: 12px;
  font-weight: 820;
}

.review-card blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.14;
}

.review-card footer {
  margin-top: 34px;
}

.review-card footer strong,
.review-card footer span {
  display: block;
}

.review-card footer strong {
  font-size: 14px;
}

.review-card footer span {
  color: rgba(36, 28, 20, 0.56);
  font-size: 12px;
}

.reviews-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff8ec;
}

.reviews-action strong,
.reviews-action span {
  display: block;
}

.reviews-action strong {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
}

.reviews-action > div span {
  color: rgba(36, 28, 20, 0.62);
  font-size: 14px;
}

.reviews-action .button {
  flex: 0 0 auto;
}

.contact-section {
  background: var(--paper);
  color: #1d1710;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.contact-panel,
.map-panel {
  min-height: 520px;
  border-radius: var(--radius);
}

.contact-panel {
  padding: 42px;
  background: #fff8ec;
  border: 1px solid var(--line-dark);
}

.contact-panel__label {
  display: block;
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 1px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(26, 19, 12, 0.1);
}

.contact-row {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.contact-row small {
  color: rgba(36, 28, 20, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: 18px;
}

.map-panel {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 30px;
  background: #12110f;
  color: var(--ink);
}

.map-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 5, 5, 0.86) 100%);
  content: "";
  pointer-events: none;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-panel__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  opacity: 0.34;
}

.map-panel__grid span {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.map-panel__pin {
  position: absolute;
  top: 34%;
  left: 52%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 14px rgba(219, 64, 45, 0.16), var(--shadow);
  transform: translate(-50%, -50%);
}

.map-panel__pin svg {
  width: 31px;
  height: 31px;
}

.map-panel__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.map-panel__content span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-panel__content strong {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.98;
}

.map-panel__content a {
  width: max-content;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(234, 192, 106, 0.6);
  text-underline-offset: 7px;
  pointer-events: auto;
}

.site-footer {
  padding: 32px 0 102px;
  border-top: 1px solid var(--line);
  background: #080808;
  color: var(--ink);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand--footer .brand__mark {
  width: 40px;
  height: 40px;
  font-size: 23px;
}

.brand--footer strong {
  font-size: 17px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 249, 238, 0.7);
  font-size: 13px;
  font-weight: 750;
}

.footer-grid > span {
  color: rgba(255, 249, 238, 0.52);
  font-size: 12px;
}

.mobile-order-bar {
  position: fixed;
  z-index: 50;
  right: 14px;
  bottom: 14px;
  left: 14px;
  min-height: 56px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 15, 14, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-order-bar span:first-child {
  font-size: 13px;
  font-weight: 850;
}

.mobile-order-bar strong {
  margin-left: auto;
  font-size: 14px;
}

.mobile-order-bar > svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
}

.cart-shell {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.cart-shell.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cart-shell.is-open .cart-backdrop {
  opacity: 1;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 470px);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  color: #1d1710;
  box-shadow: -26px 0 70px rgba(0, 0, 0, 0.28);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.cart-shell.is-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer__header,
.cart-drawer__footer {
  padding: 22px;
  border-color: var(--line-dark);
}

.cart-drawer__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.cart-drawer__header span {
  display: block;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cart-drawer__header h2 {
  margin: 6px 0 0;
  font-size: 36px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  color: #1d1710;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.cart-drawer__body {
  min-height: 0;
  overflow-y: auto;
  padding: 20px 22px;
}

.reservation-intro {
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff8ec;
}

.reservation-intro h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.reservation-intro p {
  margin: 0;
  color: rgba(36, 28, 20, 0.64);
}

.empty-cart {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff8ec;
}

.empty-cart h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.empty-cart p {
  margin: 0;
  color: rgba(36, 28, 20, 0.64);
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.cart-item h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.cart-item small {
  color: rgba(36, 28, 20, 0.58);
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__actions button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff8ec;
  color: #1d1710;
  cursor: pointer;
}

.cart-item__actions span {
  min-width: 24px;
  text-align: center;
  font-weight: 850;
}

.order-summary,
.cart-mode-choice,
.order-fields {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.order-summary span,
.cart-mode-choice legend,
.order-fields label {
  color: rgba(36, 28, 20, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-mode-choice {
  border: 1px solid var(--line-dark);
}

.cart-mode-choice__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.cart-mode-choice label {
  display: grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.cart-mode-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cart-mode-choice label:has(input:checked) {
  border-color: rgba(219, 64, 45, 0.58);
  background: #1c1510;
  color: var(--ink);
}

.order-fields {
  display: grid;
  gap: 10px;
}

.order-fields label span {
  color: rgba(36, 28, 20, 0.46);
}

.order-fields select,
.order-fields textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff8ec;
  color: #1d1710;
}

.order-fields select {
  min-height: 44px;
  padding: 0 12px;
}

.order-fields textarea {
  resize: vertical;
  min-height: 104px;
  padding: 12px;
}

.cart-drawer__footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line-dark);
  background: #fff8ec;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-total span {
  color: rgba(36, 28, 20, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.cart-total strong {
  font-size: 24px;
}

.cart-drawer__footer small {
  color: rgba(36, 28, 20, 0.58);
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 150;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #171310;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 820;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes header-drop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .nav__links {
    gap: 18px;
  }

  .hero__grid,
  .products-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 36px;
  }

  .hero__visual {
    min-height: 440px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .products-carousel {
    width: min(100%, 690px);
    margin-inline: auto;
  }
}

@media (max-height: 780px) and (min-width: 781px) {
  .hero__proof {
    display: none;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement {
    font-size: 10px;
    letter-spacing: 0.03em;
  }

  .announcement__inner {
    min-height: 32px;
    gap: 8px;
  }

  .site-header {
    top: 32px;
  }

  .nav {
    height: 72px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    max-width: 170px;
    white-space: normal;
  }

  .nav__links {
    display: none;
  }

  .cart-pill span:not(.cart-pill__count) {
    display: none;
  }

  .hero__grid {
    display: block;
    padding: 112px 0 86px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 58px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 50px);
  }

  .hero__claim {
    font-size: 16px;
  }

  .hero__actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__proof {
    display: none;
  }

  .hero__visual {
    position: absolute;
    z-index: -1;
    top: 154px;
    right: -118px;
    width: 286px;
    min-height: 0;
    opacity: 0.38;
    pointer-events: none;
  }

  .pizza-emblem {
    width: 286px;
  }

  .pizza-emblem__core {
    width: 122px;
    height: 122px;
    font-size: 72px;
  }

  .hero-card {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .fulfillment-choice__grid,
  .menu-grid,
  .products-board {
    grid-template-columns: 1fr;
  }

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

  .menu-photo__aside {
    position: static;
  }

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

  .menu-item__side {
    flex-direction: row;
    align-items: center;
  }

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

  .reviews-action {
    align-items: stretch;
    flex-direction: column;
  }

  .reviews-action .button {
    width: 100%;
  }

  .product-signature div {
    grid-template-columns: 44px 1fr;
  }

  .contact-panel {
    padding: 28px;
  }

  .contact-panel,
  .map-panel {
    min-height: auto;
  }

  .map-panel {
    min-height: 420px;
  }

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

  .mobile-order-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .toast {
    right: 14px;
    bottom: 82px;
  }
}

/* Delivery details, opening hours and monochrome WhatsApp mark */
.whatsapp-logo {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.cart-pill {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.cart-pill:hover,
.cart-pill:focus-visible {
  border-color: rgba(219, 64, 45, 0.8);
  background: rgba(219, 64, 45, 0.16);
}

.menu-order-cta .button,
#whatsappCheckout {
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 35px rgba(219, 64, 45, 0.24);
}

.menu-order-cta .button:hover,
.menu-order-cta .button:focus-visible,
#whatsappCheckout:hover,
#whatsappCheckout:focus-visible {
  background: var(--red-dark);
}

/* Collision-safe header for narrow Android phones. */
@media (max-width: 480px) {
  .site-header .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
  }

  .site-header .brand {
    width: 100%;
    min-width: 0;
    gap: 8px;
    overflow: hidden;
  }

  .site-header .brand__mark {
    width: 40px;
    height: 40px;
  }

  .site-header .brand__text {
    min-width: 0;
    overflow: hidden;
  }

  .site-header .brand strong {
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .nav__actions {
    min-width: max-content;
    margin-left: 0;
    gap: 4px;
  }

  .site-header .language-switcher {
    min-height: 36px;
    gap: 2px;
    margin-left: 0;
    padding: 2px 4px;
    font-size: 10px;
  }

  .site-header .language-switcher button {
    padding: 3px;
  }

  .site-header .mobile-call-pill {
    width: 40px;
    height: 40px;
  }
}

.delivery-rates {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.4fr);
  gap: 14px;
  margin-top: 12px;
  padding: 15px;
  border: 1px solid rgba(219, 64, 45, 0.32);
  border-radius: var(--radius);
  background: #151210;
  color: var(--ink);
}

.delivery-rates__heading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.delivery-rates__heading svg {
  width: 30px;
  height: 30px;
  color: #ef7060;
}

.delivery-rates__heading strong,
.delivery-rates__heading small,
.delivery-rates__zones strong,
.delivery-rates__zones span {
  display: block;
}

.delivery-rates__heading strong {
  font-size: 14px;
}

.delivery-rates__heading small {
  margin-top: 3px;
  color: rgba(255, 250, 241, 0.56);
  font-size: 11px;
}

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

.delivery-rates__zones > div {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 3px);
  background: rgba(255, 255, 255, 0.045);
}

.delivery-rates__zones strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
}

.delivery-rates__zones span {
  color: #ef7060;
  font-size: 11px;
  font-weight: 850;
}

.contact-row--hours {
  min-height: 112px;
}

.contact-hours {
  display: grid;
  gap: 8px;
}

.contact-hours > span {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.contact-hours b {
  font-size: 14px;
}

.contact-hours time {
  color: rgba(255, 250, 241, 0.78);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.delivery-address-field select {
  width: 100%;
}

.delivery-zone-note {
  margin: -2px 0 4px;
  padding: 9px 10px;
  border-left: 2px solid rgba(255, 250, 241, 0.28);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 250, 241, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.delivery-zone-note.is-warning {
  border-left-color: var(--gold);
  color: #f5cc7d;
}

.delivery-zone-note.is-valid {
  border-left-color: #ef7060;
  color: #f08b7d;
}

.cart-delivery-fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: -8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: rgba(255, 250, 241, 0.6);
  font-size: 11px;
}

.cart-delivery-fee strong {
  color: var(--ink);
  font-size: 13px;
}

@media (max-width: 780px) {
  .delivery-rates {
    grid-template-columns: 1fr;
  }

  .delivery-rates__zones {
    grid-template-columns: 1fr;
  }

  .contact-hours > span {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-hours time {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .announcement__divider,
  .announcement__inner span:last-child {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero-card--top {
    top: 14px;
    right: -2px;
  }

  .hero-card--bottom {
    bottom: 8px;
    left: -2px;
  }

  .cart-mode-choice__options {
    grid-template-columns: 1fr;
  }

  .menu-photo__aside {
    padding: 20px;
  }

  .products-carousel__viewport {
    aspect-ratio: 3 / 4;
  }

  .product-slide figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 14px;
  }

  .product-slide figcaption strong {
    font-size: 23px;
  }

  .products-carousel__controls {
    gap: 9px;
    padding: 10px;
  }

  .products-carousel__dots {
    gap: 5px;
  }

  .products-carousel__dots button {
    width: 7px;
    height: 7px;
  }

  .products-carousel__dots button[aria-current="true"] {
    width: 18px;
  }

  .products-carousel__counter {
    display: none;
  }

  .cart-drawer__header,
  .cart-drawer__footer,
  .cart-drawer__body {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Dark brand refresh */
:root {
  --paper: #080808;
  --paper-soft: #11110f;
  --ink: #fffaf1;
  --text: #f4eee4;
  --muted: #aaa39a;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --red: #db402d;
  --red-dark: #bd3121;
  --sage: #32965a;
  --gold: #f2b84b;
}

body,
.menu-section,
.products-section,
.reviews-section,
.contact-section {
  background: #080808;
  color: var(--text);
}

.menu-section,
.products-section,
.reviews-section,
.contact-section {
  border-top: 1px solid var(--line);
}

.section {
  padding: 88px 0;
}

.site-header {
  background: rgba(7, 7, 7, 0.28);
  backdrop-filter: blur(7px);
}

.nav {
  height: 90px;
}

.brand__mark {
  width: 56px;
  height: 56px;
}

.brand strong {
  font-size: 21px;
}

.brand small {
  font-size: 10px;
}

.cart-pill {
  padding-right: 8px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.cart-pill:hover,
.cart-pill:focus-visible {
  border-color: rgba(219, 64, 45, 0.8);
  background: rgba(219, 64, 45, 0.16);
}

.whatsapp-logo {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.hero {
  min-height: max(670px, calc(100svh - 34px));
  background-image:
    linear-gradient(90deg, rgba(4, 4, 4, 0.62) 0%, rgba(4, 4, 4, 0.3) 46%, rgba(4, 4, 4, 0.04) 100%),
    url("assets/hero-locale.jpg");
  background-position: center;
  background-size: cover;
}

.hero__grid {
  display: block;
  padding: 156px 0 94px;
}

.hero__content {
  max-width: 690px;
}

.hero__claim {
  color: rgba(255, 250, 241, 0.84);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.68);
}

.eyebrow,
.contact-panel__label {
  color: #eb6757;
}

.section-heading p,
.products-copy p,
.reviews-head p {
  color: rgba(255, 250, 241, 0.68);
}

.fulfillment-card,
.menu-item,
.menu-note,
.menu-order-cta,
.review-card,
.reviews-action,
.contact-panel,
.contact-row {
  border-color: var(--line);
  background: #11110f;
  color: var(--text);
}

.fulfillment-card:hover,
.fulfillment-card:has(input:checked) {
  border-color: rgba(219, 64, 45, 0.72);
  background: #171210;
  box-shadow: none;
}

.fulfillment-card small,
.menu-item p,
.menu-note p,
.menu-order-cta p,
.reviews-action > div span,
.contact-row small {
  color: rgba(255, 250, 241, 0.6);
}

.fulfillment-card__check {
  border-color: rgba(255, 255, 255, 0.32);
}

.menu-toolbar {
  margin: 30px 0 24px;
}

.filter-button {
  border-color: var(--line);
  background: #11110f;
  color: rgba(255, 250, 241, 0.72);
}

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

.menu-grid {
  gap: 12px;
}

.menu-item {
  min-height: 170px;
  grid-template-columns: minmax(0, 1fr) 176px;
  padding: 18px;
}

.menu-item:hover {
  border-color: rgba(219, 64, 45, 0.55);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.menu-item__category {
  margin-bottom: 10px;
  border-color: rgba(219, 64, 45, 0.35);
  color: #ef7060;
}

.menu-item h3 {
  color: var(--ink);
  font-size: 26px;
}

.menu-item__prices {
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  gap: 8px;
}

.price-button {
  min-height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #191816;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.price-button:hover,
.price-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--sage);
  background: rgba(50, 150, 90, 0.14);
}

.price-button span {
  color: rgba(255, 250, 241, 0.66);
  font-size: 11px;
  font-weight: 800;
}

.price-button strong {
  font-size: 14px;
}

.price-button svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
}

.menu-note svg {
  color: #ef7060;
}

.menu-order-cta span:first-child,
.contact-panel__label {
  color: #ef7060;
}

.menu-order-cta .button,
#whatsappCheckout {
  background: var(--red);
  box-shadow: 0 18px 35px rgba(219, 64, 45, 0.24);
}

.menu-order-cta .button:hover,
.menu-order-cta .button:focus-visible,
#whatsappCheckout:hover,
#whatsappCheckout:focus-visible {
  background: var(--red-dark);
}

.products-section {
  background: #080808;
}

.products-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}

.products-copy h2 {
  max-width: 540px;
  font-size: clamp(42px, 4.6vw, 62px);
}

.product-signature {
  margin-top: 26px;
}

.product-signature div {
  min-height: 62px;
}

.product-signature strong {
  color: #ef7060;
}

.products-carousel {
  height: 470px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 64px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.products-carousel__viewport {
  height: 100%;
  aspect-ratio: auto;
}

.product-slide img {
  object-fit: cover;
}

.products-carousel__controls {
  min-height: 64px;
}

.reviews-head {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.reviews-head > span {
  color: #ef7060;
}

.reviews-head p {
  max-width: none;
}

.review-card {
  min-height: 270px;
  padding: 24px;
  background: #11110f;
}

.review-card__top {
  margin-bottom: 22px;
}

.review-stars {
  color: var(--gold);
}

.review-card__top span,
.review-card footer span {
  color: rgba(255, 250, 241, 0.55);
}

.review-card blockquote {
  color: var(--ink);
  font-size: 24px;
}

.google-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.google-logo {
  display: inline-grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 25% 42%, #fbbc05 42% 68%, #ea4335 68% 84%, #4285f4 84% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.google-logo--button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.reviews-action {
  background: #11110f;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.reviews-action .button {
  align-self: center;
}

.contact-section {
  padding: 76px 0;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
}

.contact-panel,
.map-panel {
  min-height: 390px;
}

.contact-panel {
  padding: 30px;
}

.contact-panel h2 {
  font-size: clamp(38px, 3.8vw, 50px);
}

.contact-list {
  margin: 22px 0;
  border-color: var(--line);
  background: var(--line);
}

.contact-row {
  min-height: 68px;
}

.contact-row strong {
  color: var(--ink);
  font-size: 16px;
}

.button--outline {
  border-color: var(--line);
  color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--red);
  color: #fff;
}

.map-panel__content span {
  color: #ef7060;
}

.map-panel__content strong {
  font-size: clamp(34px, 4vw, 48px);
}

.map-panel__content a {
  text-decoration-color: rgba(219, 64, 45, 0.75);
}

.cart-drawer,
.cart-drawer__footer {
  background: #0b0b0a;
  color: var(--text);
}

.cart-drawer__header,
.cart-drawer__footer {
  border-color: var(--line);
}

.cart-drawer__header span {
  color: #ef7060;
}

.icon-button,
.empty-cart,
.cart-item,
.order-summary,
.cart-mode-choice,
.order-fields {
  border-color: var(--line);
  background: #141311;
  color: var(--text);
}

.icon-button {
  color: var(--ink);
}

.empty-cart p,
.cart-item small,
.order-summary span,
.cart-mode-choice legend,
.order-fields label,
.cart-total span,
.cart-drawer__footer small {
  color: rgba(255, 250, 241, 0.58);
}

.cart-item__actions button,
.cart-mode-choice label,
.order-fields select,
.order-fields textarea {
  border-color: var(--line);
  background: #1a1917;
  color: var(--ink);
}

.cart-mode-choice label:has(input:checked) {
  border-color: var(--red);
  background: var(--red);
}

@media (max-width: 1040px) {
  .hero__grid {
    display: block;
  }

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

  .products-carousel {
    width: min(100%, 680px);
    height: 470px;
  }

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

@media (max-width: 780px) {
  .nav {
    height: 78px;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 720px;
    background-image:
      linear-gradient(90deg, rgba(4, 4, 4, 0.6), rgba(4, 4, 4, 0.16)),
      url("assets/hero-locale.jpg");
    background-position: 58% center;
  }

  .hero__grid {
    padding: 122px 0 104px;
  }

  .section {
    padding: 68px 0;
  }

  .social-icon-link {
    justify-self: start;
  }

  .menu-toolbar {
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .filter-button {
    flex: 0 0 auto;
  }

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

  .menu-item__prices {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  }

  .products-carousel {
    height: 430px;
  }

  .products-carousel__viewport {
    aspect-ratio: auto;
  }

  .reviews-action {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-panel,
  .map-panel {
    min-height: 340px;
  }

  .contact-section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 18px;
  }

  .products-carousel {
    height: 420px;
  }

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

  .review-card blockquote {
    font-size: 22px;
  }
}

/* Language, Halal mark and privacy controls */
.language-switcher {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 7, 7, 0.32);
  color: rgba(255, 249, 238, 0.5);
  font-size: 11px;
  font-weight: 900;
}

.language-switcher button {
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 249, 238, 0.55);
  cursor: pointer;
  font: inherit;
}

.language-switcher button[aria-pressed="true"],
.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: #fff;
}

.language-switcher button[aria-pressed="true"] {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.hero__halal-badge {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 6vw, 96px);
  bottom: 48px;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  padding: 9px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  background: rgba(251, 243, 226, 0.78);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  opacity: 0.82;
  backdrop-filter: blur(10px);
}

.hero__halal-badge img {
  width: 100%;
  height: 100%;
}

.map-consent {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  margin: auto;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.9);
  box-shadow: var(--shadow);
}

.map-consent__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(219, 64, 45, 0.16);
  color: #ef7060;
}

.map-consent__icon svg {
  width: 22px;
  height: 22px;
}

.map-consent > span {
  color: #ef7060;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-consent h3,
.map-consent p {
  margin: 0;
}

.map-consent h3 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.05;
}

.map-consent p {
  color: rgba(255, 249, 238, 0.64);
  font-size: 13px;
}

.map-consent > a {
  color: rgba(255, 249, 238, 0.72);
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--sage);
}

.consent-check span {
  color: rgba(255, 249, 238, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.consent-check a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-check--map {
  margin: 4px 0;
}

.consent-check--whatsapp {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #141311;
}

button:disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(290px, auto);
  align-items: start;
}

.footer-legal {
  display: grid;
  gap: 3px;
  color: rgba(255, 249, 238, 0.56);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.footer-legal strong {
  color: rgba(255, 249, 238, 0.82);
  font-size: 12px;
}

/* Legal pages */
.legal-page {
  background: #0a0a09;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.legal-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  color: rgba(255, 249, 238, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: #fff;
}

.legal-main {
  padding: 72px 0 96px;
}

.legal-document {
  width: min(100%, 820px);
}

.legal-kicker {
  display: block;
  margin-bottom: 14px;
  color: #ef7060;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-document h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 82px);
}

.legal-updated {
  margin-bottom: 46px;
  color: rgba(255, 249, 238, 0.55);
  font-size: 13px;
}

.legal-document section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
}

.legal-document p,
.legal-document li {
  color: rgba(255, 249, 238, 0.72);
}

.legal-document a {
  color: var(--paper);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-document ul {
  padding-left: 20px;
}

.legal-identity {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: rgba(255, 249, 238, 0.74);
  font-style: normal;
}

.legal-identity strong {
  color: var(--ink);
}

.legal-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 249, 238, 0.56);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .nav {
    gap: 14px;
  }

  .nav__links {
    gap: 14px;
  }

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

  .footer-legal {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 780px) {
  .language-switcher {
    margin-left: auto;
  }

  .hero__halal-badge {
    right: 18px;
    bottom: 76px;
    width: 70px;
    height: 70px;
    padding: 7px;
    opacity: 0.76;
  }

  .map-panel {
    padding: 16px;
  }

  .map-consent {
    padding: 22px;
  }

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

  .footer-legal {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 8px;
  }

  .language-switcher {
    padding-inline: 6px;
  }

  .cart-pill {
    padding-left: 9px;
  }

  .legal-header__inner {
    min-height: 76px;
  }

  .legal-header .brand__text {
    display: none;
  }

  .legal-main {
    padding-top: 50px;
  }
}

/* Refinements: centered desktop navigation and lighter content sections */
.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.hero__social-row {
  display: inline-flex;
  align-items: center;
  flex-basis: 100%;
  gap: 10px;
  margin-top: 2px;
}

.hero__halal-badge {
  position: static;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 5px;
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(251, 243, 226, 0.88);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  opacity: 0.86;
}

.products-copy__seo {
  display: grid;
  gap: 16px;
}

.products-copy__seo p {
  margin: 0;
  line-height: 1.72;
}

.products-carousel {
  position: relative;
  grid-template-rows: minmax(0, 1fr);
}

.carousel-button--prev,
.carousel-button--next {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.carousel-button--prev {
  left: 16px;
  transform: translateY(-50%);
}

.carousel-button--next {
  right: 16px;
  transform: translateY(-50%);
}

.carousel-button--prev:hover,
.carousel-button--prev:focus-visible,
.carousel-button--next:hover,
.carousel-button--next:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(219, 64, 45, 0.84);
  transform: translateY(-50%) scale(1.04);
}

.reviews-action {
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 56px;
}

.footer-brand-block {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.footer-legal {
  text-align: left;
}

.footer-links--legal {
  justify-content: flex-end;
  padding-top: 6px;
}

@media (min-width: 781px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .nav > .brand {
    justify-self: start;
  }

  .nav__links {
    justify-self: center;
    margin-left: 0;
  }

  .nav__actions {
    justify-self: end;
  }
}

@media (max-width: 780px) {
  .nav__actions {
    margin-left: auto;
  }

  .language-switcher {
    margin-left: 0;
  }

  .hero__halal-badge {
    position: static;
    width: 48px;
    height: 48px;
    padding: 5px;
    opacity: 0.86;
  }

  .products-carousel {
    grid-template-rows: minmax(0, 1fr);
  }

  .carousel-button--prev {
    left: 12px;
  }

  .carousel-button--next {
    right: 12px;
  }

  .reviews-action {
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links--legal {
    justify-content: flex-start;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .nav__actions {
    gap: 6px;
  }

  .footer-links--legal {
    gap: 14px;
  }
}

/* Google Maps consent shown at every visit */
.map-cookie-notice {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(5px);
}

.map-cookie-notice__panel {
  width: min(100%, 720px);
  display: grid;
  gap: 13px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #0d0d0c;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

.map-cookie-notice__label {
  color: #ef7060;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-cookie-notice h2,
.map-cookie-notice p {
  margin: 0;
}

.map-cookie-notice h2 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.02;
}

.map-cookie-notice p {
  color: rgba(255, 249, 238, 0.68);
  font-size: 14px;
}

.map-cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.map-cookie-notice__actions .button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-cookie-notice__panel > a {
  width: max-content;
  color: rgba(255, 249, 238, 0.7);
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero h1 .hero__halal-badge {
  width: 96px;
  height: 96px;
  display: inline-grid;
  margin-left: 0.12em;
  padding: 8px;
  vertical-align: -0.18em;
  opacity: 0.92;
}

@media (max-width: 780px) {
  .hero h1 .hero__halal-badge {
    width: 72px;
    height: 72px;
    padding: 6px;
    vertical-align: -0.16em;
  }
}

@media (max-width: 480px) {
  .map-cookie-notice {
    padding: 10px;
  }

  .map-cookie-notice__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-cookie-notice__actions .button {
    width: 100%;
  }

  .hero h1 .hero__halal-badge {
    width: 64px;
    height: 64px;
  }
}

/* Mobile experience refinement */
.mobile-call-pill {
  display: none;
}

.delivery-address-field {
  display: grid;
  gap: 10px;
}

.order-fields input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #1a1917;
  color: var(--ink);
}

@media (max-width: 780px) {
  .hero {
    height: calc(100svh - 32px);
    min-height: 680px;
    max-height: 920px;
    background-image:
      linear-gradient(180deg, rgba(4, 4, 4, 0.38) 0%, rgba(4, 4, 4, 0.2) 48%, rgba(4, 4, 4, 0.5) 100%),
      url("assets/hero-mobile.jpg");
    background-position: center;
    background-size: cover;
  }

  .hero__grid {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 114px 0 104px;
  }

  .hero__content {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .hero .eyebrow,
  .hero__claim,
  .hero__primary-cta,
  .hero__location-cta {
    display: none;
  }

  .hero h1 {
    max-width: 350px;
    margin: 0 auto;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.98;
    text-align: center;
  }

  .hero__actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }

  .hero .social-icon-link {
    justify-self: auto;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(7, 7, 7, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(8px);
  }

  .hero__scroll {
    right: auto;
    bottom: 22px;
    left: 50%;
    width: min(calc(100% - 28px), 360px);
    min-height: 54px;
    justify-content: center;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    font-size: 14px;
    font-weight: 900;
    transform: translateX(-50%);
  }

  .hero__scroll svg {
    width: 20px;
    height: 20px;
  }

  .cart-pill {
    display: none;
  }

  .mobile-call-pill {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 26px rgba(219, 64, 45, 0.3);
  }

  .mobile-call-pill svg {
    width: 20px;
    height: 20px;
  }

  .mobile-order-bar {
    border-color: rgba(255, 255, 255, 0.28);
    background: var(--red);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .mobile-order-bar.is-hidden-on-hero {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .mobile-order-bar__count {
    background: #fff;
    color: var(--red-dark);
  }

  .consent-check--whatsapp {
    grid-template-columns: 17px minmax(0, 1fr);
    gap: 8px;
    padding: 7px 2px;
    border: 0;
    background: transparent;
  }

  .consent-check--whatsapp input {
    width: 16px;
    height: 16px;
  }

  .consent-check--whatsapp span {
    color: rgba(255, 249, 238, 0.58);
    font-size: 10px;
    line-height: 1.35;
  }

  .cart-drawer__footer {
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .products-copy {
    display: contents;
  }

  .products-copy.reveal {
    opacity: 1;
    transform: none;
  }

  .products-copy > .eyebrow {
    order: 1;
    margin-bottom: -10px;
  }

  .products-copy > h2 {
    order: 2;
    margin-bottom: 0;
  }

  .products-carousel {
    order: 3;
    margin-top: 4px;
  }

  .products-copy__seo {
    order: 4;
    margin-top: 4px;
  }

  .reviews-grid {
    display: flex;
    gap: 14px;
    margin-right: -14px;
    padding: 0 14px 12px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: 0;
    flex: 0 0 calc(100% - 46px);
    scroll-snap-align: start;
  }

  .contact-actions .social-icon-link--contact {
    justify-self: center;
  }

  .footer-grid,
  .footer-brand-block {
    justify-items: center;
    text-align: center;
  }

  .brand--footer {
    justify-content: center;
  }

  .footer-legal {
    justify-items: center;
    text-align: center;
  }

  .footer-links--legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 .hero__halal-badge {
    width: 58px;
    height: 58px;
  }

  .reviews-grid {
    margin-right: -14px;
  }

  .review-card {
    flex-basis: calc(100% - 38px);
  }
}

/* Compact mobile cards and centered stacked footer */
.footer-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.footer-brand-block,
.footer-legal {
  justify-items: center;
  text-align: center;
}

.brand--footer {
  justify-content: center;
}

.footer-links--legal {
  justify-content: center;
  padding-top: 0;
}

@media (max-width: 780px) {
  .consent-check--whatsapp {
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 6px;
    margin: 0;
    padding: 2px 0;
  }

  .consent-check--whatsapp input {
    width: 14px;
    height: 14px;
    margin-top: 1px;
  }

  .consent-check--whatsapp span {
    font-size: 9px;
    line-height: 1.25;
  }

  .consent-check--whatsapp a {
    text-underline-offset: 2px;
  }

  .cart-drawer__footer {
    gap: 6px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .cart-drawer__footer > small {
    font-size: 10px;
    line-height: 1.25;
  }

  .products-copy__seo {
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #11110f;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  }

  .products-copy__seo p {
    font-size: 15px;
    line-height: 1.58;
  }

  .review-card {
    min-height: 220px;
    padding: 18px;
  }

  .review-card__top {
    margin-bottom: 14px;
  }

  .review-card blockquote {
    font-size: 20px;
    line-height: 1.18;
  }

  .review-card footer {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .review-card {
    min-height: 205px;
    padding: 16px;
  }

  .review-card blockquote {
    font-size: 19px;
  }
}

/* Final colour lock: WhatsApp is shown as a clean, monochrome glyph. */
.whatsapp-logo {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.cart-pill {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.cart-pill:hover,
.cart-pill:focus-visible {
  border-color: rgba(219, 64, 45, 0.8);
  background: rgba(219, 64, 45, 0.16);
}

.menu-order-cta .button,
#whatsappCheckout {
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 35px rgba(219, 64, 45, 0.24);
}

.menu-order-cta .button:hover,
.menu-order-cta .button:focus-visible,
#whatsappCheckout:hover,
#whatsappCheckout:focus-visible {
  background: var(--red-dark);
}

/* Custom pizza builder */
body.customizer-open {
  overflow: hidden;
}

.filter-button--custom {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-color: rgba(219, 64, 45, 0.48);
  color: #f08b7d;
}

.filter-button--custom svg {
  width: 16px;
  height: 16px;
}

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

.menu-grid--custom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.custom-menu-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  align-items: end;
  gap: 28px;
  padding: 24px;
  border: 1px solid rgba(219, 64, 45, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 20%, rgba(219, 64, 45, 0.2), transparent 36%),
    #11110f;
}

.custom-menu-intro span {
  color: #ef7060;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.custom-menu-intro h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.custom-menu-intro p {
  margin: 0;
  color: rgba(255, 250, 241, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.custom-pizza-card {
  min-height: 250px;
  grid-template-columns: 1fr;
  align-content: space-between;
}

.custom-pizza-card .menu-item__prices {
  width: 100%;
}

.custom-pizza-card__button {
  width: 100%;
}

.customizer-shell {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}

.customizer-shell.is-open {
  pointer-events: auto;
  visibility: visible;
}

.customizer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity 220ms ease;
}

.customizer-shell.is-open .customizer-backdrop {
  opacity: 1;
}

.customizer-dialog {
  position: relative;
  width: min(100%, 760px);
  height: min(90svh, 850px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #0b0b0a;
  color: var(--text);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.62);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 200ms ease, transform 240ms ease;
}

.customizer-shell.is-open .customizer-dialog {
  opacity: 1;
  transform: none;
}

.customizer-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: #11110f;
}

.customizer-dialog__header > div {
  min-width: 0;
}

.customizer-dialog__header span {
  display: block;
  color: #ef7060;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.customizer-dialog__header h2 {
  margin: 5px 0 4px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
}

.customizer-dialog__header p {
  margin: 0;
  color: rgba(255, 250, 241, 0.58);
  font-size: 13px;
}

.customizer-dialog__header .icon-button {
  flex: 0 0 auto;
}

.customizer-dialog__body {
  min-height: 0;
  overflow-y: auto;
  padding: 20px 24px 28px;
  overscroll-behavior: contain;
}

.customizer-base-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 16px;
  border: 1px solid rgba(219, 64, 45, 0.38);
  border-radius: var(--radius);
  background: rgba(219, 64, 45, 0.08);
}

.customizer-base-summary small,
.customizer-base-summary strong {
  display: block;
}

.customizer-base-summary small {
  color: rgba(255, 250, 241, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.customizer-base-summary strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 15px;
}

.customizer-base-summary > span {
  color: #ef7060;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.customizer-ingredients-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0 12px;
}

.customizer-ingredients-heading h3,
.customizer-ingredients-heading p {
  margin: 0;
}

.customizer-ingredients-heading h3 {
  color: var(--ink);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.customizer-ingredients-heading p {
  margin-top: 4px;
  color: rgba(255, 250, 241, 0.55);
  font-size: 12px;
}

#clearCustomIngredients {
  border: 0;
  background: transparent;
  color: #ef7060;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.custom-ingredient {
  min-width: 0;
  min-height: 52px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #171614;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.custom-ingredient:hover {
  border-color: rgba(219, 64, 45, 0.55);
  transform: translateY(-1px);
}

.custom-ingredient input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-ingredient__check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ef7060;
}

.custom-ingredient__check svg {
  width: 16px;
  height: 16px;
}

.custom-ingredient__tick {
  display: none;
}

.custom-ingredient strong {
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.custom-ingredient__price {
  color: rgba(255, 250, 241, 0.66);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.custom-ingredient:has(input:checked) {
  border-color: rgba(219, 64, 45, 0.72);
  background: rgba(219, 64, 45, 0.12);
}

.custom-ingredient:has(input:focus-visible) {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.custom-ingredient:has(input:checked) .custom-ingredient__check {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.custom-ingredient:has(input:checked) .custom-ingredient__plus {
  display: none;
}

.custom-ingredient:has(input:checked) .custom-ingredient__tick {
  display: block;
}

.customizer-dialog__footer {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) minmax(260px, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: #11110f;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.22);
}

.customizer-total span,
.customizer-total strong {
  display: block;
}

.customizer-total span {
  color: rgba(255, 250, 241, 0.5);
  font-size: 10px;
  font-weight: 850;
}

.customizer-total strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.customizer-dialog__footer .button {
  width: 100%;
}

.cart-item__custom-details {
  max-width: 280px;
  margin: 8px 0 0;
  color: rgba(255, 250, 241, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.cart-item__custom-details b {
  color: #ef7060;
}

@media (max-width: 780px) {
  .filter-button--custom {
    flex: 1 0 100%;
    justify-content: center;
  }

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

  .custom-menu-intro {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .custom-pizza-card {
    min-height: 210px;
  }

  .customizer-shell {
    align-items: end;
    padding: 0;
  }

  .customizer-dialog {
    width: 100%;
    height: calc(100svh - 18px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
  }

  .customizer-dialog__header {
    padding: 16px;
  }

  .customizer-dialog__header h2 {
    font-size: 30px;
  }

  .customizer-dialog__header p {
    display: none;
  }

  .customizer-dialog__body {
    padding: 14px 16px 22px;
  }

  .customizer-ingredients-heading {
    margin-top: 18px;
  }

  .customizer-ingredients {
    grid-template-columns: 1fr;
  }

  .customizer-dialog__footer {
    grid-template-columns: minmax(100px, 0.42fr) minmax(190px, 1fr);
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  }

  .customizer-total strong {
    font-size: 20px;
  }
}

@media (max-width: 390px) {
  .customizer-dialog__footer {
    grid-template-columns: 1fr;
  }

  .customizer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}

/* Compact, swipeable menu categories on mobile. */
@media (max-width: 780px) {
  .menu-toolbar {
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: 14px;
    padding-bottom: 7px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .menu-toolbar .filter-button,
  .menu-toolbar .filter-button--custom {
    min-height: 40px;
    flex: 0 0 auto;
    justify-content: center;
    padding: 9px 12px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .menu-toolbar .filter-button--custom {
    max-width: none;
  }
}

/* Individual framing for the latest carousel photographs. */
.product-slide--dish img {
  object-position: center 72%;
}

.product-slide--pizza-portrait img {
  object-position: center 62%;
}

.product-slide--landscape {
  background: #080706;
}

.product-slide--landscape img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 780px) {
  .product-slide--dish img {
    object-position: center 68%;
  }

  .product-slide--pizza-portrait img {
    object-position: center 58%;
  }
}

/* Full-bleed framing for the latest carousel photographs. */
.product-slide--fitted {
  background: #080706;
}

.product-slide--fitted img,
.product-slide--fitted.product-slide--dish img,
.product-slide--fitted.product-slide--pizza-portrait img,
.product-slide--fitted.product-slide--landscape img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: var(--product-position, center);
}

/* Stable, evenly aligned review cards. */
.reviews-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.review-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.review-card blockquote {
  align-self: start;
}

.review-card footer {
  align-self: end;
}

@media (max-width: 780px) {
  .reviews-grid {
    height: 230px;
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-right: -14px;
    padding: 0 14px 0 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .reviews-grid .review-card {
    width: auto;
    min-height: 230px;
    height: 230px;
    max-height: 230px;
    flex: 0 0 calc(100% - 36px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .reviews-grid .review-card.reveal,
  .reviews-grid .review-card.reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .reviews-grid,
  .reviews-grid .review-card {
    min-height: 220px;
    height: 220px;
    max-height: 220px;
  }

  .reviews-grid .review-card {
    flex-basis: calc(100% - 28px);
  }
}

/* Mobile fixed actions: order and landline call. */
.mobile-bottom-actions,
.mobile-bottom-call {
  display: none;
}

@media (max-width: 780px) {
  .mobile-bottom-actions {
    position: fixed;
    z-index: 50;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    align-items: center;
    gap: 8px;
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .mobile-bottom-actions.is-hidden-on-hero {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .mobile-bottom-actions .mobile-order-bar {
    position: static;
    width: 100%;
    min-width: 0;
    display: flex;
  }

  .mobile-bottom-call {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  }

  .mobile-bottom-call svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .mobile-bottom-actions {
    grid-template-columns: minmax(0, 1fr) 56px;
  }

  .mobile-bottom-call {
    width: 56px;
    height: 56px;
  }
}
