/* ==========================================================================
   Divine Wellness — Live Events page (live-events.html)
   Pre-launch placeholder page: planned event types, gemstone live-sale
   teaser, and the event-list signup. Built from tokens.css variables and
   shared components.
   ========================================================================== */

/* =========================== Hero =========================== */

.ev-hero { padding-top: calc(clamp(40px, 6vw, 72px) + 84px); }
.ev-hero__blob-1 {
  top: -140px; right: -100px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(100, 183, 198, 0.28), rgba(100, 183, 198, 0) 70%);
  filter: blur(30px);
  animation-duration: 12s;
}
.ev-hero__blob-2 {
  bottom: -160px; left: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(199, 138, 178, 0.22), rgba(199, 138, 178, 0) 70%);
  filter: blur(34px);
  animation-duration: 16s;
}
.ev-hero .breadcrumb { margin-bottom: 22px; }
.ev-hero__copy { max-width: 660px; }
.ev-hero__notice {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(22, 58, 67, 0.06);
  border: 1px solid rgba(22, 58, 67, 0.1);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  margin-bottom: 20px;
}
.ev-hero__notice::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
.ev-hero__notice span {
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--mauve-deep);
}
.ev-hero h1 {
  margin: 0 0 14px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: var(--track-display);
  color: var(--ink);
}
.ev-hero__body {
  margin: 0 0 12px 0;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--ink-soft);
  max-width: 54ch;
  text-wrap: pretty;
}
.ev-hero__body--last { margin-bottom: 30px; }
.ev-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.ev-hero__ctas .btn--primary { font-weight: 800; }

/* =========================== Planned event types =========================== */

.planned { background: linear-gradient(180deg, var(--tint-green) 0%, var(--tint-blue) 100%); }
.planned__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 56px) auto;
}
.planned__head h2 { margin-bottom: 18px; }
.planned__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.event-card {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-card-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.event-card__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: var(--r-chip);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.event-card__icon span { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.event-card h3 {
  margin: 0 0 10px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
}
.event-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--body);
  flex: 1;
  text-wrap: pretty;
}
.planned__note {
  margin: clamp(28px, 4vw, 40px) auto 0 auto;
  max-width: 60ch;
  text-align: center;
  font-size: var(--fs-small);
  line-height: 1.65;
  color: var(--slate-mist);
}

/* =========================== Gemstone live-sale teaser =========================== */

.teaser {
  background: linear-gradient(150deg, var(--plum-deep) 0%, var(--plum) 45%, var(--ink-2) 100%);
  padding: clamp(56px, 7vw, 92px) var(--gutter);
  position: relative;
  overflow: hidden;
  color: var(--on-dark);
}
.teaser__blob {
  top: -140px; left: -100px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(199, 138, 178, 0.2), rgba(199, 138, 178, 0) 70%);
  filter: blur(30px);
  animation-duration: 13s;
}
.teaser__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}
.teaser__media {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 440px;
  position: relative;
  margin: 0 auto;
}
.teaser__glow {
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background: linear-gradient(140deg, rgba(199, 138, 178, 0.3), rgba(100, 183, 198, 0.22));
  filter: blur(22px);
  pointer-events: none;
}
.teaser__media img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--r-card-xl);
  box-shadow: 0 36px 64px -30px rgba(0, 0, 0, 0.6);
  transform: rotate(-1deg);
}
.teaser__copy { flex: 1 1 400px; min-width: 300px; }
.teaser__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--on-dark-pink);
}
.teaser__copy .prose { color: var(--on-dark-muted); }
.teaser__copy .prose--last { margin-bottom: 26px; }
.teaser__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================== Event updates signup =========================== */

.events-cta .cta-panel__content { max-width: 620px; margin: 0 auto; }
.events-cta h2 { margin-bottom: 16px; }
.events-cta .prose { max-width: 52ch; margin-bottom: 28px; }
.events-cta .input-pill { background: rgba(255, 255, 255, 0.9); }
.events-cta .input-pill:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 210, 142, 0.25);
}
.events-cta .subscribe-form { margin-bottom: 12px; }
.events-cta .subscribe-success { margin-bottom: 0; background: rgba(199, 216, 201, 0.7); }
.events-cta__fineprint {
  margin: 18px 0 0 0;
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--on-dark-faint);
}
