.page {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(246, 240, 232, 0.88), rgba(246, 240, 232, 0.92)),
    url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1800&q=80")
    center / cover no-repeat;
}

.hero {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  position: relative;
}

.badge {
  position: absolute;
  top: 0;
  right: clamp(0.5rem, 4vw, 3rem);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--gold-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.badge svg {
  width: 18px;
  height: 18px;
  margin-bottom: 0.25rem;
  fill: var(--gold-light);
}

.coming-soon {
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: var(--burgundy);
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.coming-soon::before,
.coming-soon::after {
  content: "✦";
  color: var(--gold);
  font-size: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.coming-soon::before { left: -1.5rem; }
.coming-soon::after { right: -1.5rem; }

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.hero-heart {
  color: var(--burgundy);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--burgundy-dark);
}

.content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
  padding: 0 0 3rem;
}

.program-format {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.format-card {
  text-align: center;
  width: 180px;
}

.format-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.75rem;
  color: var(--olive);
}

.format-card h3 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  line-height: 1.4;
}

.format-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1rem;
  align-items: center;
}

.reserve-spot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.reserve-spot svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.waitlist {
  text-align: center;
}

.waitlist h2 {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.footer-quote {
  font-family: "Great Vibes", cursive;
  font-size: 1.6rem;
  color: var(--gold-light);
  text-align: right;
  line-height: 1.2;
}

.footer-quote span {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
}

@media (max-width: 900px) {
  .content,
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .badge {
    position: static;
    margin: 0 auto 1rem;
  }

  .footer-quote {
    text-align: center;
  }

  .reserve-spot {
    justify-content: center;
  }
}
