/* ============================================
   SCHEDULE PAGE — LINDSEY BINGAMAN
   ============================================ */

.schedule-page {
  background: var(--c-dark);
}

/* ── Hero ── */
.sched-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.sched-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80&auto=format&fit=crop')
    center 40% / cover no-repeat;
  background-attachment: fixed;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

@media (max-width: 900px) {
  .sched-hero-bg { background-attachment: scroll; }
}

.sched-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9, 16, 31, 0.92) 0%,
    rgba(13, 29, 58, 0.85) 55%,
    rgba(9, 16, 31, 0.95) 100%
  );
}

.sched-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
}

.sched-hero-title {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-white);
  margin: 1rem 0 1.5rem;
}

.sched-hero-title em {
  font-style: italic;
  color: var(--c-teal);
  display: block;
}

.sched-hero-sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Body Layout ── */
.sched-body {
  background: var(--c-light);
  min-height: 70vh;
}

.sched-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  min-height: 70vh;
}

/* ── Left Info Panel ── */
.sched-info {
  background: var(--c-navy);
  padding: 4rem 3rem;
  position: relative;
}

.sched-info::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background: rgba(0, 200, 186, 0.15);
}

.sched-info-inner {
  position: sticky;
  top: 6rem;
}

.sched-session-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 200, 186, 0.1);
  border: 1px solid rgba(0, 200, 186, 0.25);
  color: var(--c-teal);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.sched-info-title {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.sched-expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.sched-expect-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
}

.sched-expect-num {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-teal);
  letter-spacing: 0.05em;
  padding-top: 0.2rem;
  opacity: 0.85;
}

.sched-expect-list strong {
  display: block;
  color: var(--c-white);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.sched-expect-list p {
  color: var(--c-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.sched-contact-alt {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}

.sched-contact-alt > p {
  color: var(--c-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.sched-contact-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--c-white);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sched-contact-link:last-child { border-bottom: none; }

.sched-contact-link svg { color: var(--c-teal); flex-shrink: 0; }

.sched-contact-link:hover { color: var(--c-teal); }

/* ── Right Calendar Panel ── */
.sched-cal-wrap {
  background: var(--c-light);
  padding: 4rem 3.5rem;
  display: flex;
  align-items: flex-start;
}

.sched-cal-inner {
  width: 100%;
}

/* Cal.com embed overrides */
#cal-booking {
  width: 100%;
  min-height: 600px;
  border-radius: 12px;
  overflow: hidden;
}

#cal-booking iframe {
  border-radius: 12px;
  width: 100% !important;
}

/* ── Fallback (before Cal.com is configured) ── */
.cal-fallback {
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.cal-fallback-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 200, 186, 0.08);
  border: 1px solid rgba(0, 200, 186, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--c-teal);
}

.cal-fallback h3 {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
}

.cal-fallback p {
  color: var(--c-muted-2);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cal-fallback-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sched-layout {
    grid-template-columns: 1fr;
  }

  .sched-info {
    padding: 3rem 1.5rem;
  }

  .sched-info-inner {
    position: static;
  }

  .sched-cal-wrap {
    padding: 2.5rem 1.5rem;
  }

  .sched-hero-content {
    padding-top: 8rem;
  }
}
