/* WordPress-only overlays. Original site.css is untouched. */

.brand .custom-logo { width: 22px; height: 22px; object-fit: contain; }
.brand .custom-logo-link { display: contents; }

.admin-bar .site-header { top: 32px; }
.admin-bar .progress { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .progress { top: 46px; }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wp-block-image img,
.prose img,
.post-figure img { height: auto; }

.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 1em 1em 1.5em; }
.aligncenter { display: block; margin-inline: auto; }
.alignnone { margin: 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--mute); }

.pager,
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 32px 0 0;
}
.pager a, .pager span,
.navigation.pagination a, .navigation.pagination span {
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  font-size: 0.88rem;
}
.pager a:hover,
.navigation.pagination a:hover { border-color: var(--accent); color: var(--accent); }

.lv-notice {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid var(--accent);
  color: var(--ink-2);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

body.customize-previewing .site-header { z-index: 40; }

/* ==========================================================================
   Contact Page: Multi-Step Full-Width Booking Layout
   ========================================================================== */
.book-layout {
  position: relative;
  transition: all 0.3s ease;
}

/* Step 2 Full-Width Transition */
.book-layout.is-step-2 {
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(48px, 6vw, 72px) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
}

.book-layout.is-step-2 [data-book-step1] {
  display: none !important;
}

.book-layout.is-step-2 [data-book-step2] {
  display: block !important;
  width: 100% !important;
  animation: lvFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.book-layout.is-step-2 .cal-header {
  text-align: left;
  margin-bottom: 24px;
}

.book-layout.is-step-2 .cal-header h2 {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  max-width: none;
  margin: 6px 0 16px;
  line-height: 1.15;
}

.book-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  margin: 0 0 20px;
}

.book-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
}

.book-summary {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
}

.book-layout.is-step-2 .cal-embed {
  width: 100% !important;
  min-height: 750px !important;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.08);
}

.book-layout.is-step-2 .cal-embed iframe,
.book-layout.is-step-2 .cal-embed cal-inline {
  width: 100% !important;
  min-height: 750px !important;
  border: 0;
}

/* Questionnaire / Fit list moved to underside */
.book-layout.is-step-2 .book-side {
  width: 100% !important;
  border-top: 1px solid var(--line);
  padding-top: clamp(40px, 5vw, 64px);
}

.book-layout.is-step-2 .book-side .kicker {
  margin-bottom: 24px;
}

.book-layout.is-step-2 .book-side .split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--line);
}

@media (max-width: 780px) {
  .book-layout.is-step-2 .book-side .split-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@keyframes lvFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
