:root {
  --red: #d92d20;
  --red-dark: #8f1d16;
  --yellow: #ffc928;
  --yellow-light: #ffe37a;
  --graphite: #171717;
  --graphite-soft: #2b2b2b;
  --cream: #fff7e6;
  --white: #ffffff;
  --green: #25d366;
  --text: #222222;
  --muted: #6d625d;
  --border: rgba(36, 25, 18, 0.12);
  --shadow: 0 12px 32px rgba(38, 20, 10, 0.1);
  --container: 1200px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.mobile-cta-visible {
  padding-bottom: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--graphite);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6vw, 5.65rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.08;
}

section {
  position: relative;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--graphite);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--graphite);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset -6px -6px 0 rgba(0, 0, 0, 0.12);
  font-family: Impact, "Arial Black", sans-serif;
  line-height: 0.72;
  transform: rotate(-6deg);
}

.brand-mark span {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.brand-mark span:last-child {
  color: var(--yellow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}

.button-large {
  min-height: 56px;
  padding: 16px 25px;
  font-size: 16px;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(217, 45, 32, 0.28);
}

.button-primary:hover {
  background: #c1261b;
  box-shadow: 0 14px 28px rgba(217, 45, 32, 0.34);
}

.button-yellow {
  background: var(--yellow);
  color: var(--graphite);
  box-shadow: 0 8px 20px rgba(255, 201, 40, 0.18);
}

.button-yellow:hover {
  background: #ffd34c;
}

.button-dark {
  background: var(--graphite);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.18);
}

.button-dark:hover {
  background: var(--graphite-soft);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero {
  isolation: isolate;
  min-height: 620px;
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 82% 48%, rgba(217, 45, 32, 0.32), transparent 32%),
    linear-gradient(135deg, #171717 0%, #1c1716 55%, #26100e 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: -130px;
  right: -90px;
  z-index: -1;
  width: 380px;
  height: 380px;
  border: 55px solid rgba(255, 201, 40, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-pattern,
.final-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg, transparent, #000 65%, #000);
  opacity: 0.22;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 52px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

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

.location-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.93);
  font-size: 13px;
  font-weight: 750;
}

.location-pill svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.hero h1 {
  color: var(--white);
}

.hero h1 span {
  color: var(--yellow);
}

.hero-description {
  max-width: 630px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.offer-box {
  display: flex;
  max-width: 570px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 26px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 201, 40, 0.28);
  border-radius: 17px;
  background: linear-gradient(90deg, rgba(255, 201, 40, 0.13), rgba(217, 45, 32, 0.1));
}

.offer-copy {
  display: flex;
  flex-direction: column;
}

.offer-copy span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-copy strong {
  color: var(--white);
  font-size: 16px;
}

.offer-price {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  color: var(--yellow);
  line-height: 0.88;
}

.offer-price small {
  margin: 7px 4px 0 0;
  font-size: 17px;
  font-weight: 900;
}

.offer-price strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 52px;
  letter-spacing: -0.04em;
}

.offer-price span {
  margin-top: 7px;
  font-size: 23px;
  font-weight: 900;
}

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

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-benefits span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.38));
}

.hero-media figcaption {
  position: relative;
  z-index: 3;
  margin-top: -12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-align: center;
}

.hero-burst {
  position: absolute;
  inset: 10% 2% 6% 3%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(217, 45, 32, 0.72) 0 38%, rgba(217, 45, 32, 0.1) 39% 60%, transparent 61%);
  filter: blur(2px);
}

.offer-badge {
  position: absolute;
  top: 5%;
  right: 1%;
  z-index: 3;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  align-content: center;
  border: 5px solid var(--graphite);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--graphite);
  font-family: Impact, "Arial Black", sans-serif;
  line-height: 0.9;
  text-align: center;
  transform: rotate(8deg);
}

.offer-badge span {
  font-size: 17px;
}

.offer-badge strong {
  color: var(--red);
  font-size: 20px;
}

.trust-strip {
  padding: 23px 0;
  background: var(--yellow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 30px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(23, 23, 23, 0.18);
}

.trust-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--graphite);
  border-radius: 50%;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--graphite);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  color: var(--graphite);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.trust-item div span {
  color: rgba(23, 23, 23, 0.65);
  font-size: 12px;
}

.menu-section {
  padding: 82px 0;
  background: var(--cream);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

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

.menu-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-card:hover {
  box-shadow: 0 18px 40px rgba(38, 20, 10, 0.14);
  transform: translateY(-5px);
}

.featured-card {
  grid-column: span 2;
}

.menu-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at center, rgba(217, 45, 32, 0.36), transparent 56%),
    var(--graphite);
}

.menu-image img {
  width: 100%;
  height: 100%;
}

.featured-card .menu-image img {
  padding: 15px;
  object-fit: contain;
}

.cover-image img {
  object-fit: cover;
  transition: transform 0.35s ease;
}

.menu-card:hover .cover-image img {
  transform: scale(1.035);
}

.card-label,
.combo-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-label {
  top: 16px;
  left: 16px;
  padding: 8px 13px;
  background: var(--yellow);
  color: var(--graphite);
}

.combo-chip {
  right: 14px;
  bottom: 14px;
  padding: 7px 12px;
  background: var(--red);
  color: var(--white);
}

.menu-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.menu-card-body > p:not(.product-kicker) {
  color: var(--muted);
  font-size: 14px;
}

.product-kicker {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.card-price {
  flex: 0 0 auto;
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 31px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.button-card {
  width: 100%;
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.menu-note {
  max-width: 760px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.steps-section {
  padding: 82px 0;
  background: var(--white);
}

.steps-list {
  position: relative;
  display: grid;
  gap: 25px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 45px;
  right: 16.6%;
  left: 16.6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 10px, transparent 10px 18px);
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 32px 25px 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(38, 20, 10, 0.07);
}

.step-number {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  place-items: center;
  border: 3px solid var(--graphite);
  border-radius: 50%;
  background: var(--yellow);
}

.step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--graphite);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.steps-cta {
  margin-top: 34px;
  text-align: center;
}

.delivery-section {
  padding: 75px 0;
  background: var(--red);
  color: var(--white);
}

.delivery-section::before {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 460px;
  height: 460px;
  border: 70px solid rgba(255, 201, 40, 0.1);
  border-radius: 50%;
  content: "";
}

.delivery-grid {
  display: grid;
  align-items: center;
  gap: 75px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
}

.eyebrow-light {
  color: var(--yellow);
}

.delivery-content {
  position: relative;
  z-index: 2;
}

.delivery-content h2 {
  max-width: 700px;
  color: var(--white);
}

.delivery-content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.delivery-points {
  display: grid;
  gap: 8px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.delivery-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
}

.delivery-points span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 900;
}

.map-illustration {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: var(--cream);
  box-shadow: 0 22px 50px rgba(89, 10, 4, 0.25);
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: #ded2bc;
}

.road-one {
  top: 24%;
  right: -10%;
  width: 125%;
  height: 25px;
  transform: rotate(-19deg);
}

.road-two {
  top: 55%;
  left: -18%;
  width: 125%;
  height: 25px;
  transform: rotate(13deg);
}

.road-three {
  top: -10%;
  left: 45%;
  width: 24px;
  height: 125%;
  transform: rotate(7deg);
}

.map-block {
  position: absolute;
  border: 3px solid #e7c981;
  border-radius: 10px;
  background: var(--yellow-light);
}

.block-one {
  top: 10%;
  left: 10%;
  width: 110px;
  height: 80px;
  transform: rotate(-8deg);
}

.block-two {
  right: 9%;
  bottom: 13%;
  width: 130px;
  height: 100px;
  transform: rotate(9deg);
}

.block-three {
  bottom: 10%;
  left: 9%;
  width: 90px;
  height: 72px;
}

.map-pin {
  position: absolute;
  top: 33%;
  left: 47%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(143, 29, 22, 0.36);
  transform: translate(-50%, -50%);
}

.map-pin svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
}

.map-label {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-label small {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label strong {
  color: var(--graphite);
  font-size: 24px;
}

.map-label span {
  color: var(--muted);
  font-size: 12px;
}

.reviews-section {
  padding: 82px 0;
  background: var(--cream);
}

.reviews-layout {
  display: grid;
  align-items: start;
  gap: 45px;
  grid-template-columns: 0.8fr 2.2fr;
}

.reviews-intro {
  position: sticky;
  top: 110px;
}

.reviews-intro p:not(.eyebrow) {
  color: var(--muted);
}

.review-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 23px;
  padding: 13px 14px;
  border: 1px solid rgba(217, 45, 32, 0.15);
  border-radius: 12px;
  background: rgba(217, 45, 32, 0.06);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
}

.review-notice span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
}

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

.review-card {
  min-width: 0;
  padding: 24px;
  border: 1px dashed rgba(36, 25, 18, 0.22);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.7);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.review-top div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-top strong {
  color: var(--graphite);
  font-size: 13px;
}

.review-top span {
  color: var(--muted);
  font-size: 11px;
}

.stars-placeholder {
  margin: 18px 0 12px;
  color: #d5c5aa;
  font-size: 20px;
  letter-spacing: 3px;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  padding: 82px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
  font-family: inherit;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 3px;
  border: 0;
  background: transparent;
  color: var(--graphite);
  cursor: pointer;
  font-size: 17px;
  font-weight: 850;
  text-align: left;
}

.faq-plus {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cream);
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 52px 22px 3px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  isolation: isolate;
  padding: 72px 0;
  background: var(--yellow);
}

.final-cta::before {
  mask-image: none;
  opacity: 0.24;
}

.final-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: var(--red);
}

.decoration-left {
  bottom: -120px;
  left: -100px;
  width: 290px;
  height: 290px;
  box-shadow: 0 0 0 40px rgba(217, 45, 32, 0.12);
}

.decoration-right {
  top: -95px;
  right: -75px;
  width: 230px;
  height: 230px;
  box-shadow: 0 0 0 34px rgba(217, 45, 32, 0.12);
}

.final-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.final-content h2 {
  margin-bottom: 15px;
  font-size: clamp(3rem, 5vw, 4.7rem);
}

.final-content > p:not(.eyebrow) {
  margin-bottom: 27px;
  color: rgba(23, 23, 23, 0.78);
  font-size: 19px;
}

.final-content > p strong {
  color: var(--red);
  font-size: 1.18em;
}

.final-content small {
  display: block;
  margin-top: 15px;
  color: rgba(23, 23, 23, 0.62);
  font-size: 11px;
}

.site-footer {
  padding: 50px 0 24px;
  background: var(--graphite);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 50px;
  padding-bottom: 40px;
  grid-template-columns: 1.25fr 0.8fr 1fr 0.8fr;
}

.footer-brand p,
.footer-contact p {
  max-width: 310px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links strong,
.footer-contact > strong {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-contact p {
  margin: 0;
}

.footer-whatsapp {
  margin-top: 5px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--green);
  color: #082d16;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid {
    gap: 25px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  }

  h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .trust-item {
    padding: 0 15px;
  }

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

  .featured-card {
    grid-column: span 2;
  }

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

  .reviews-intro {
    position: static;
    max-width: 680px;
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }

  body.mobile-cta-visible {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  html {
    scroll-padding-top: 80px;
  }

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

  .site-header {
    min-height: var(--header-height);
  }

  .header-inner {
    min-height: var(--header-height);
    gap: 12px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }

  .brand-mark span {
    font-size: 14px;
  }

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

  .brand-copy strong {
    font-size: 14px;
  }

  .header-cta {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .header-cta svg {
    width: 18px;
    height: 18px;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .hero {
    min-height: 0;
    padding: 38px 0 48px;
  }

  .hero::before {
    top: auto;
    right: -100px;
    bottom: 60px;
    width: 280px;
    height: 280px;
    border-width: 42px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    width: 100%;
  }

  .location-pill {
    margin-bottom: 20px;
    padding: 7px 11px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 570px;
    margin-bottom: 19px;
    font-size: clamp(2.5rem, 11.5vw, 3.15rem);
    line-height: 0.97;
    overflow-wrap: break-word;
  }

  .hero-description {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .offer-box {
    align-items: flex-end;
    gap: 10px;
    padding: 14px;
  }

  .offer-copy {
    max-width: 53%;
  }

  .offer-copy strong {
    font-size: 13px;
    line-height: 1.35;
  }

  .offer-price strong {
    font-size: 44px;
  }

  .offer-price span {
    font-size: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-benefits {
    display: grid;
    gap: 9px;
  }

  .hero-media {
    width: 100%;
    max-width: 560px;
    align-self: center;
    aspect-ratio: 4 / 3;
  }

  .offer-badge {
    top: 0;
    right: 0;
    width: 73px;
    height: 73px;
    border-width: 4px;
  }

  .offer-badge span {
    font-size: 13px;
  }

  .offer-badge strong {
    font-size: 16px;
  }

  .hero-media figcaption {
    margin-top: -5px;
    font-size: 10px;
  }

  .trust-strip {
    padding: 19px 0;
  }

  .trust-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    padding: 0;
  }

  .trust-item + .trust-item {
    padding-top: 14px;
    border-top: 1px solid rgba(23, 23, 23, 0.15);
    border-left: 0;
  }

  .trust-icon {
    width: 39px;
    height: 39px;
  }

  .menu-section,
  .steps-section,
  .reviews-section,
  .faq-section {
    padding: 54px 0;
  }

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

  .section-heading p:last-child {
    font-size: 15px;
  }

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

  .featured-card {
    grid-column: auto;
  }

  .menu-card-body {
    padding: 20px;
  }

  .product-heading {
    display: block;
  }

  .card-price {
    display: block;
    margin: 10px 0 12px;
    font-size: 30px;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list::before {
    display: none;
  }

  .step-card {
    display: grid;
    min-height: 0;
    align-items: center;
    column-gap: 17px;
    padding: 20px 18px;
    grid-template-columns: 58px 1fr;
    text-align: left;
  }

  .step-number {
    top: 12px;
    left: 10px;
    width: 25px;
    height: 25px;
    font-size: 11px;
  }

  .step-icon {
    width: 58px;
    height: 58px;
    margin: 0;
    grid-row: span 2;
  }

  .step-icon svg {
    width: 26px;
    height: 26px;
  }

  .step-card h3 {
    margin-bottom: 6px;
    font-size: 1.28rem;
  }

  .delivery-section {
    padding: 50px 0;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .delivery-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .delivery-content .button {
    width: 100%;
  }

  .map-illustration {
    min-height: 340px;
  }

  .reviews-track {
    display: flex;
    width: calc(100% + 20px);
    overflow-x: auto;
    gap: 14px;
    padding: 2px 20px 16px 1px;
    scroll-padding-left: 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .review-card {
    width: 82vw;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-intro {
    position: static;
  }

  .faq-item button {
    min-height: 68px;
    font-size: 15px;
  }

  .final-cta {
    padding: 50px 0 57px;
  }

  .final-content h2 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .final-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .final-content .button {
    width: 100%;
  }

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

  .site-footer {
    padding: 42px 0 calc(30px + env(safe-area-inset-bottom));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 56px;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 14px;
  }
}

@media (max-width: 390px) {
  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 44px;
    padding: 9px;
  }

  .offer-copy {
    max-width: 49%;
  }

  .offer-price strong {
    font-size: 40px;
  }

  .button-large {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}
