.book-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.book-hero {
  text-align: center;
  padding: 80px 24px 40px;
  position: relative;
}
.book-hero::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100vw); height: 500px;
  background: radial-gradient(ellipse at 50% 30%, rgba(245,110,15,.15) 0%, transparent 70%);
  pointer-events: none;
}

.book-hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.book-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.book-hero p {
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.calendly-wrap {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 24px 80px;
  position: relative;
  z-index: 1;
}

.calendly-container {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Calendly inline widget styles */
.calendly-inline-widget {
  width: 100%;
  min-height: 700px;
}

/* Fallback / placeholder if Calendly hasn't loaded */
.calendly-placeholder {
  text-align: center;
  padding: 80px 24px;
}
.calendly-placeholder h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.calendly-placeholder p {
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 32px;
}
.calendly-placeholder .btn-cta {
  display: inline-block;
  font-size: 1rem;
  padding: 14px 36px;
}

.book-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .2s;
  position: relative;
  z-index: 1;
}
.book-back:hover { color: var(--orange); }
.book-back svg {
  width: 16px; height: 16px;
}

/* Book footer */
.book-footer {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  text-align: center;
}
.book-footer p {
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
}
.book-footer a {
  color: var(--orange);
  text-decoration: none;
}
.book-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .book-hero { padding: 60px 20px 32px; }
  .calendly-wrap { padding: 16px 20px 60px; }
  .calendly-container { min-height: 600px; }
  .calendly-inline-widget { min-height: 600px; }
  .book-footer { padding: 24px 20px; }
}
