/* Original tabletop-atmosphere asset; decorative only, with no product or franchise claim. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 13, 12, 0.94) 0%, rgba(10, 13, 12, 0.78) 40%, rgba(10, 13, 12, 0.18) 100%),
    url('./assets/tabletop-atmosphere-v1.png');
  background-position: center, center right;
  background-size: cover, cover;
  background-repeat: no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.hero::after,
.hero-grain {
  z-index: 0;
}

.intent-cta .cta-label {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .intent-cta {
    gap: 8px;
  }

  .intent-cta .cta-label {
    font-size: 0.74rem;
  }
}

.offer-section {
  padding: clamp(72px, 7vw, 102px) 0;
}

.offer-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(36px, 7vw, 118px);
}

.offer-content {
  max-width: 620px;
}

.offer-content h2 {
  font-size: clamp(3.45rem, 5.3vw, 6.1rem);
}

.offer-image {
  margin: 0;
  aspect-ratio: 0.91;
  overflow: hidden;
  box-shadow: 18px 20px 0 rgba(80, 34, 23, 0.27);
}

.offer-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .offer-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .offer-image {
    max-width: 440px;
    width: 100%;
  }
}
