/* ============================================
   BOOK PAGE
   ============================================ */
.book-hero {
  background: var(--obsidian);
  color: var(--cream);
  padding: 11rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 141, 87, 0.16), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(0, 0, 0, 0.3), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.book-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.book-hero h1 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 1.4rem 0 1.6rem;
}

.book-hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.book-hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: rgba(244, 237, 224, 0.82);
  margin-bottom: 1.4rem;
}

.book-hero__intro {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.62);
  max-width: 600px;
  margin: 0 auto;
}

/* Trust strip */
.book-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.45);
}

.book-trust__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Booking body */
.book-main {
  background: var(--paper);
}

.book-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* Aside — what to expect */
.book-aside__heading {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin-bottom: 2.2rem;
  color: var(--obsidian);
}

.book-steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.book-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
}

.book-step__num {
  font-family: var(--serif, 'Fraunces', Georgia, serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.2;
  min-width: 1.5rem;
}

.book-step__body h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
  color: var(--obsidian);
}

.book-step__body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Alternative contact */
.book-contact {
  border-top: 1px solid var(--hairline);
  padding-top: 2rem;
}

.book-contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.book-contact__row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--obsidian);
}

.book-contact__row a {
  color: var(--obsidian);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.book-contact__row a:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}

/* Calendly embed card */
.book-embed {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: 0 30px 60px -35px rgba(14, 14, 12, 0.3);
  overflow: hidden;
  padding: 0.5rem;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
  width: 100%;
}

.book-embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 720px;
  gap: 1rem;
  padding: 2rem;
  color: var(--muted);
  background:
    repeating-linear-gradient(135deg, rgba(176, 141, 87, 0.04) 0 12px, transparent 12px 24px);
}

.book-embed__placeholder strong {
  color: var(--obsidian);
  font-weight: 600;
  font-size: 1.05rem;
}

.book-embed__placeholder code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  background: rgba(176, 141, 87, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: var(--gold-deep);
}

@media (max-width: 900px) {
  .book-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .book-aside {
    max-width: 560px;
  }

  .calendly-inline-widget,
  .book-embed__placeholder {
    height: 680px;
  }
}

@media (max-width: 760px) {
  .book-hero {
    padding: 8.5rem 0 3.5rem;
  }
}
