/* ============================================================
   Openzer — booking / final CTA section (Cal.com embed)
   ============================================================ */

.booking-section { padding: 120px 0 140px; }

.booking-wrap {
  max-width: 920px;
  margin: 56px auto 0;
  text-align: center;
}

.booking-subhead {
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto 36px;
}

.cal-embed {
  position: relative;
  width: 100%;
  min-height: 720px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  margin-top: 18px;
  isolation: isolate;
}

.cal-embed .cal-loading {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  pointer-events: none;
  transition: opacity .4s ease-out;
}
.cal-embed.loaded .cal-loading { opacity: 0; }

.cal-embed .cal-loading .pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(139,26,74,0.6);
  animation: calPulse 1.6s ease-out infinite;
}
@keyframes calPulse {
  0% { box-shadow: 0 0 0 0 rgba(139,26,74,0.55); }
  70% { box-shadow: 0 0 0 18px rgba(139,26,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,26,74,0); }
}

/* Cal embed container fills the box */
.cal-embed > div[data-cal-namespace],
.cal-embed iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 720px;
  border: 0;
  background: transparent;
}

.cal-fallback {
  margin-top: 22px;
  display: flex; justify-content: center;
  font-size: 13px;
  color: var(--muted);
}
.cal-fallback a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text);
  border-bottom: 1px dashed var(--line-2);
  padding-bottom: 2px;
}
.cal-fallback a:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* Final CTA framing */
.final-cta { position: relative; }
.final-cta .section-head h2 { max-width: 18ch; margin: 0 auto; }
.final-cta .section-head h2 .accent-word {
  font-weight: 700;
  background: linear-gradient(180deg, #fff 0%, #f0c0d0 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

@media (max-width: 720px) {
  .cal-embed { min-height: 640px; }
  .cal-embed > div[data-cal-namespace],
  .cal-embed iframe { min-height: 640px; }
}
