.hero {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(52px, 7vw, 70px) auto 60px;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(28px, 4vw, 36px);
  align-items: center;
}

.hero-copy p {
  max-width: 650px;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.hero-actions .btn {
  width: auto;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof span {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(29,29,29,.08);
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.hero-proof i {
  color: var(--red);
  margin-right: 6px;
}

.food-feature-card {
  min-height: 600px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, .35), transparent 24%),
    linear-gradient(145deg, var(--yellow), var(--red));
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.food-feature-card::before,
.food-feature-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.food-feature-card::before {
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, .16);
  top: -90px;
  right: -90px;
}

.food-feature-card::after {
  width: 230px;
  height: 230px;
  background: rgba(29, 29, 29, .12);
  bottom: -70px;
  left: -60px;
}

.hero-logo-wrap {
  width: min(330px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  padding: 18px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 3px solid var(--black);
  box-shadow: 12px 12px 0 rgba(29, 29, 29, .22);
  position: relative;
  z-index: 2;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.food-feature-content {
  position: relative;
  z-index: 2;
  background: rgba(29, 29, 29, .92);
  color: white;
  border-radius: 30px;
  padding: clamp(22px, 3vw, 30px);
  border: 2px solid rgba(255, 255, 255, .16);
}

.food-feature-content p {
  color: rgba(255, 255, 255, .78);
}

.food-feature-content .eyebrow {
  color: var(--yellow);
}

.topping-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.topping-pills span {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 900;
}

.flavor-strip {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  background: var(--black);
  color: var(--yellow);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.flavor-track {
  display: flex;
  width: max-content;
  animation: flavorSlide 22s linear infinite;
}

.flavor-track span {
  padding: 0 32px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  white-space: nowrap;
}

.flavor-track span::after {
  content: " •";
  color: var(--red);
}

@keyframes flavorSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.signature-card,
.review-card,
.faq-list details {
  background: rgba(255,255,255,.78);
  border: 2px solid rgba(29,29,29,.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(65, 20, 10, .1);
}

.feature-card i {
  color: var(--red);
  font-size: 2rem;
  margin-bottom: 18px;
}

.signature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.signature .large {
  grid-row: span 2;
  background: var(--black);
  color: white;
}

.signature .large p {
  color: rgba(255,255,255,.75);
}

.signature .red {
  background: var(--red);
  color: white;
}

.signature .red p {
  color: rgba(255,255,255,.82);
}

.signature .yellow {
  background: var(--yellow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stars {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-card h3 {
  font-size: 1.6rem;
  color: var(--deep-red);
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-photo {
  border-radius: var(--radius);
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  background: var(--black);
}

.gallery-photo.large {
  grid-row: span 2;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gallery-photo:hover img {
  transform: scale(1.06);
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.08), transparent);
}

.gallery-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: white;
}

.gallery-caption h3 {
  font-size: 2rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.05rem;
}

.faq-list p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .food-feature-card {
    min-height: auto;
    gap: 28px;
  }

  .hero-logo-wrap {
    width: min(280px, 70%);
  }

  .intro-grid,
  .signature {
    grid-template-columns: 1fr;
  }

  .signature {
    grid-template-rows: auto;
  }

  .signature .large {
    grid-row: auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-photo.large {
    grid-row: span 1;
  }
}

@media (max-width: 650px) {
  .hero {
    width: min(100% - 24px, 1180px);
    margin-top: 48px;
    gap: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
  }

  .hero-proof span {
    width: 100%;
  }

  .food-feature-card {
    border-radius: 26px;
    padding: 22px;
  }

  .hero-logo-wrap {
    width: min(230px, 78%);
    padding: 12px;
  }

  .food-feature-content {
    border-radius: 22px;
    padding: 22px;
  }

  .topping-pills span {
    font-size: .8rem;
  }

  .flavor-track span {
    padding: 0 22px;
  }

  .feature-grid,
  .reviews-grid,
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-auto-rows: 280px;
  }

  .feature-card,
  .signature-card,
  .review-card {
    padding: 24px;
    border-radius: 22px;
  }

  .gallery-caption h3 {
    font-size: 1.7rem;
  }

  .faq-list details {
    padding: 18px;
    border-radius: 18px;
  }
}