/* ============================================
   BOOK PAGE — /book/
   ============================================ */

main { padding-top: 70px; }

.book-page {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 100px;
}

/* ── Header ── */
.book-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 52px;
}

.book-header .section-label {
  margin-bottom: 8px;
}

.book-header .section-title {
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  margin-bottom: 20px;
}

.book-compass {
  width: 120px;
  height: auto;
  opacity: 0.55;
  margin-bottom: 28px;
}

.book-intro {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  max-width: 580px;
}

.book-intro strong {
  color: var(--white);
  font-weight: 600;
}

/* ── First Available ── */
.book-first {
  position: relative;
  margin-bottom: 52px;
}

/* Purple glow behind primary CTA */
.book-first::before {
  content: '';
  position: absolute;
  inset: -20px -40px;
  background: radial-gradient(ellipse, rgba(174,0,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.book-first-btn {
  position: relative;
  z-index: 1;
  font-size: 18px;
  padding: 18px 48px;
  letter-spacing: 0.1em;
}

/* ── Divider ── */
.book-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 40px;
}

.book-divider-line {
  flex: 1;
  height: 1px;
  background: var(--faint);
}

.book-divider-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 300;
}

/* ── Barber grid ── */
.book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 20px;
}

.book-btn {
  font-size: 15px;
  padding: 16px 24px;
  justify-content: center;
  text-align: center;
}

/* ── Scissors ── */
.book-page .scissors-wrap {
  margin: 48px 0;
  opacity: 0.3;
}

.book-page .scissors {
  width: 160px;
}

/* ── Gift card ── */
.book-gift {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.book-gift-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.book-gift-sub {
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 8px;
}

/* ============================================
   MOBILE — Book Page
   ============================================ */
@media (max-width: 768px) {

  .book-page { padding: 60px 24px 80px; }

  .book-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .book-btn { font-size: 15px; padding: 16px; }

  .book-first-btn { font-size: 16px; padding: 16px 32px; }

  .book-divider { max-width: 100%; }
}
