.hero-venue {
  padding: 18px 0 18px;
  background:
    radial-gradient(circle at top, rgba(214,31,44,.18), transparent 36%),
    linear-gradient(180deg, rgba(10,10,10,.22), rgba(10,10,10,.04));
}

.hero-venue-grid {
  display: block;
}

.hero-venue-copy {
  text-align: center;
  max-width: 100%;
}

.hero-venue-copy .eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 15px;
}

.hero-venue-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(42px, 10vw, 76px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.hero-venue-copy .subtitle {
  margin: 0 auto 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 4.8vw, 24px);
  line-height: 1.35;
}

.hero-actions {
  margin: 0 0 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(180deg,#ef2f3c,#d61f2c);
  color: #fff;
  box-shadow: 0 14px 34px rgba(214,31,44,.34);
}

.btn-secondary {
  background: rgba(255,255,255,.045);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}

.hero-pizza-inline {
  margin: 0 0 18px;
  text-align: center;
}

.hero-pizza-inline img {
  width: 100%;
  max-width: 920px;
  display: block;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.46),
    0 0 80px rgba(214,31,44,.10);
}

.hero-points {
  margin: 16px auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-point {
  min-height: 150px;
  padding: 18px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg,#0f1624,#0b101a);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-point strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #fff;
}

.hero-point span {
  font-size: 13px;
  color: #aeb6c2;
  line-height: 1.45;
}

.intro-section {
  padding-top: 18px;
  padding-bottom: 12px;
  margin-top: 0;
}

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

.intro-box {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg,#111722 0%, #0e131c 100%);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

.intro-box h2,
.intro-box h3 {
  margin: 0 0 14px;
}

.intro-box p,
.intro-box li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.intro-box ul {
  margin: 0;
  padding-left: 22px;
}

.hero-venue-copy .eyebrow,
.hero-venue-copy h1,
.hero-venue-copy .subtitle,
.hero-venue-copy .hero-actions,
.hero-pizza-inline,
.hero-points {
  opacity: 0;
  transform: translateY(18px);
  animation: ppFadeUp .75s ease forwards;
}

.hero-venue-copy h1 { animation-delay: .12s; }
.hero-venue-copy .subtitle { animation-delay: .24s; }
.hero-venue-copy .hero-actions { animation-delay: .36s; }
.hero-pizza-inline { animation-delay: .48s; }
.hero-points { animation-delay: .60s; }

@keyframes ppFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .hero-venue {
    padding: 14px 0 14px;
  }

  .hero-venue-copy h1 {
    font-size: clamp(36px, 12vw, 60px);
  }

  .hero-actions .btn {
    min-width: 0;
    padding: 13px 20px;
    font-size: 15px;
  }

  .hero-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-point {
    min-height: 132px;
    padding: 14px 8px;
    border-radius: 16px;
  }

  .hero-point strong {
    font-size: 13px;
  }

  .hero-point span {
    font-size: 12px;
  }
}
