/* ─── GLOBAL RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --warm-white: #FDFAF5;
  --ink: #1A1714;
  --ink-soft: #3D3730;
  --bark: #7A6855;
  --gold: #C4A46B;
  --gold-light: #D4BC91;
  --sage: #8B9E8A;
  --rust: #B5673D;
  --divider: rgba(122,104,85,0.2);
  --shadow: 0 4px 40px rgba(26,23,20,0.08);
  --shadow-card: 0 2px 24px rgba(26,23,20,0.07);
  --footer-space: 92px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.625rem 3rem;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}

.nav-logo-img-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-logo-img-link:hover { opacity: 0.75; }

.nav-logo-img { height: 64px; width: auto; display: block; }

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}

.nav-cta:hover { color: var(--gold); transform: translateY(-1px); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.2rem;
  position: relative;
  transition: color 0.15s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-logo { display: none; }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 57px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(253,250,245,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  display: none;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu-inner {
  padding: 0.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--divider);
  transition: color 0.15s;
}

.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--ink); }

.mobile-nav-cta {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: none;
  padding-top: 0.6rem;
  padding-bottom: 0;
}

/* ─── VIDEO FRAME ─── */
.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream);
  border: 1px solid var(--divider);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--bark);
  padding: 1.5rem;
  text-align: center;
}

.video-play {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.video-play:hover { background: var(--gold); }

.video-play svg { fill: var(--bark); margin-left: 3px; }
.video-play:hover svg { fill: var(--ink); }

.video-placeholder p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
}

.hero-video-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  background: #000;
  border: 3px solid currentColor;
  overflow: hidden;
}

.hero-video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-video-shell wistia-player {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.5rem;
  border: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.12)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08));
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hero-video-overlay:hover .hero-video-play-icon {
  transform: scale(1.04);
}

.hero-video-play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}

.hero-video-overlay-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.hero-video-overlay-copy span:first-child {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-video-overlay-copy span:last-child {
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-video-sound-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-video-sound-note svg {
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.875rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover { background: var(--rust); transform: translateY(-1px); }

.btn-primary .btn-sublabel {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.65;
  text-transform: none;
  line-height: 1;
}

.btn-primary:has(.btn-sublabel) {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding-right: 2.5rem;
  position: relative;
}

.btn-primary:has(.btn-sublabel) svg {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--divider);
  padding: 0.75rem 1.25rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
  background: none;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--bark);
  color: var(--bark);
  background: rgba(122,104,85,0.05);
  transform: translateY(-1px);
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--cream);
  padding: 0.875rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 999;
  white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 10px 1.5rem; }
  .nav-logo { display: none; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .nav-logo-img { height: 40px; }
}

/* ─── HOME PAGE ─── */

/* ─── HERO ─── */
.hero {
  padding: 88px 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 3rem 3rem;
  row-gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 100vh;
}

.hero-text, .hero-video {
  align-self: center;
  padding-bottom: 3rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--rust);
  font-weight: 600;
}

.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.hero h2 em {
  font-style: italic;
  color: var(--rust);
  font-weight: 600;
}

.hero-subhead {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--bark);
  margin-bottom: 1rem;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.hero-body {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.hero-body p + p { margin-top: 0.6rem; }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.hero-video { position: relative; }

/* ─── HERO SECONDARY CTAS ─── */
.hero-secondary-ctas {
  grid-column: 1 / -1;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--divider);
  margin-top: 1rem;
}

.hero-scta {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.75rem;
  text-decoration: none;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.15s;
  border-right: 1px solid var(--divider);
}

.hero-scta:last-child { border-right: none; }
.hero-scta:hover { background: rgba(122,104,85,0.04); color: var(--ink); }

.hero-scta-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
}

.hero-scta-label svg { flex-shrink: 0; }

.hero-scta-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: inherit;
  display: block;
}

.hero-scta-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.hero-scta:hover .hero-scta-arrow { transform: translateX(3px); }

/* ─── SECTION DIVIDER ─── */
.section-rule {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  border: none;
  border-top: 1px solid var(--divider);
}

/* ─── OFFERS ─── */
.offers {
  background: var(--cream);
  padding: 6rem 3rem;
}

.offers-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.offers-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  text-align: center;
  margin-bottom: 0.75rem;
}

.offers h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  text-align: center;
  color: var(--ink);
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--divider);
}

.offer-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s, opacity 0.6s ease, transform 0.6s ease;
  position: relative;
}

.offer-card:hover { background: #fdfcf9; }

.offer-card.featured {
  background: var(--ink);
  color: var(--cream);
}

.offer-card.featured:hover { background: #2a2520; }

.offer-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.offer-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.25rem;
}

.offer-card.featured .offer-tag { color: var(--gold-light); }

.offer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.offer-card.featured .offer-name { color: var(--cream); }

.offer-desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
  flex: 1;
}

.offer-card.featured .offer-desc { color: rgba(245,240,232,0.75); }

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s;
}

.offer-card.featured .offer-link { color: var(--gold); border-bottom-color: var(--gold); }
.offer-link:hover { color: var(--rust); }
.offer-arrow { transition: transform 0.2s; }
.offer-link:hover .offer-arrow { transform: translateX(4px); }

/* ─── LEAD MAGNET ─── */
.lead-magnet {
  background: var(--ink);
  padding: 6rem 3rem;
  color: var(--cream);
}

.lm-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.lm-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.lm-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.lm-headline-sub {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-bottom: 1.5rem;
}

.lm-inner p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
  margin-bottom: 2rem;
}

.lm-form { max-width: 440px; }

.lm-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lm-step-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.lm-step-dot {
  width: 20px;
  height: 2px;
  background: rgba(196,164,107,0.3);
  transition: background 0.3s;
}

.lm-step-dot.active { background: var(--gold); }

.lm-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,164,107,0.3);
  padding: 0.875rem 1rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  outline: none;
  width: 100%;
}

.lm-input::placeholder { color: rgba(245,240,232,0.35); }
.lm-input:focus { border-color: var(--gold); }

.lm-submit {
  background: var(--gold);
  border: none;
  padding: 0.875rem 1.5rem;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  width: 100%;
  margin-top: 0.25rem;
}

.lm-submit:hover:not(:disabled) { background: var(--gold-light); }
.lm-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.lm-step-question {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
}

.lm-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.lm-option {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,164,107,0.25);
  padding: 0.5rem 0.875rem;
  color: rgba(245,240,232,0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-align: left;
}

.lm-option:hover {
  border-color: rgba(196,164,107,0.6);
  color: var(--cream);
  background: rgba(255,255,255,0.09);
}

.lm-option.selected {
  border-color: var(--gold);
  background: rgba(196,164,107,0.15);
  color: var(--cream);
}

.lm-step2-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.lm-back {
  background: none;
  border: 1px solid rgba(196,164,107,0.3);
  padding: 0.875rem 1.25rem;
  color: rgba(245,240,232,0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.lm-back:hover { border-color: rgba(196,164,107,0.6); color: rgba(245,240,232,0.8); }

.lm-privacy {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.35);
  margin-top: 0.75rem;
}

.lm-preview {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 7rem;
  align-self: start;
}

.lm-book {
  width: 280px;
  background: var(--cream);
  padding: 2.5rem 2rem;
  box-shadow: -8px 12px 40px rgba(0,0,0,0.4), 4px 0 0 var(--gold) inset;
  transform: rotate(-1.5deg);
  transition: transform 0.3s;
}

.lm-book:hover { transform: rotate(0deg) scale(1.02); }

.lm-book-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.lm-book h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.lm-book-sub {
  font-size: 0.72rem;
  color: var(--bark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.lm-chapters {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lm-chapter {
  font-size: 0.7rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.lm-chapter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1.3;
}

.lm-chapter-text {
  filter: blur(3.5px);
  user-select: none;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  padding: 6rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-details {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.cta-detail {
  font-size: 0.72rem;
  color: var(--bark);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-detail::before {
  content: '·';
  color: var(--gold);
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 80px 1.5rem 0; gap: 2rem; row-gap: 0; }
  .hero-text, .hero-video { padding-bottom: 2rem; }
  .hero-secondary-ctas { flex-direction: column; order: 2; }
  .hero-scta { border-right: none; border-bottom: 1px solid var(--divider); padding: 0.9rem 1.25rem; }
  .hero-scta:last-child { border-bottom: none; }
  .hero h2 { font-size: 1.5rem; }
  .hero-video { order: 1; }
  .video-frame { aspect-ratio: 16/10; }
  .hero-video .video-frame { aspect-ratio: 16/9; }
  .offers-grid { grid-template-columns: 1fr; }
  .offers, .cta-strip, .lead-magnet { padding: 4rem 1.5rem; }
  .lm-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── DIAGNOSTIC PAGE ─── */

.video-tag {
  margin-top: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 500;
}

/* ─── WRAPPER ─── */
.diagnostic-wrap {
  padding: 88px 3rem 0;
  min-height: calc(100dvh - var(--footer-space));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.diagnostic-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.diagnostic-side {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  display: block;
}

.video-mobile {
  display: none;
  width: 100%;
  max-width: 720px;
  margin: 1.75rem auto 2rem;
}

/* ─── PROGRESS BAR ─── */
.progress-bar-track {
  height: 2px;
  background: var(--divider);
  position: fixed;
  top: 84px;
  left: 0; right: 0;
  z-index: 99;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.5s ease;
  width: 0%;
}

/* ─── SCREEN BASE ─── */
.screen {
  display: none;
  flex: 1;
}

.screen.active { display: flex; }

/* ─── INTRO SCREEN ─── */
.intro-screen {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 3rem 2rem;
  text-align: center;
  min-height: calc(100dvh - 88px - var(--footer-space));
}

.intro-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.intro-eyebrow::before,
.intro-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.intro-screen h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 0.5rem;
}

.intro-screen h1 em {
  font-style: italic;
  color: var(--rust);
  font-weight: 600;
}

.intro-headline-sub {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  margin: 0 0 1.1rem;
}

.intro-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.4;
}

.intro-body {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

.intro-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.intro-meta-item {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.intro-meta-item::before { content: '·'; color: var(--gold); font-size: 0.9rem; }

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}

.btn-start:hover { background: var(--rust); transform: translateY(-1px); }

.intro-note {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--bark);
  letter-spacing: 0.04em;
}

/* ─── QUESTION SCREEN ─── */
.question-screen {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 90px);
  padding: 3rem 3rem 4rem;
}

.question-inner {
  max-width: 720px;
  width: 100%;
  overflow: hidden;
}

/* Question slide transitions */
.question-screen { overflow: hidden; }

@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-60px); opacity: 0; }
}
@keyframes slideInRight {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(60px); opacity: 0; }
}
@keyframes slideInLeft {
  from { transform: translateX(-60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.question-inner.slide-out-left  { animation: slideOutLeft  0.22s ease forwards; }
.question-inner.slide-in-right  { animation: slideInRight  0.22s ease forwards; }
.question-inner.slide-out-right { animation: slideOutRight 0.22s ease forwards; }
.question-inner.slide-in-left   { animation: slideInLeft   0.22s ease forwards; }

.q-step-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.q-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.q-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.q-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.9rem;
}

.q-excerpt {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 0.65rem;
  max-width: 640px;
}

.q-case {
  border-left: 2px solid var(--gold);
  padding: 0.55rem 0.9rem;
  background: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 640px;
  border-radius: 0 3px 3px 0;
}

.q-case-label {
  display: none;
}

.q-case p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.q-prompt {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1rem;
}

.q-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 640px;
  margin-bottom: 2rem;
}

.q-option {
  border: 1px solid var(--divider);
  background: var(--warm-white);
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.q-option:hover {
  border-color: var(--bark);
  background: var(--cream);
  transform: translateY(-1px);
}

.q-option.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.q-option-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.q-option.selected .q-option-score { color: var(--gold-light); }

.q-option-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--ink-soft);
}

.q-option.selected .q-option-label { color: rgba(245,240,232,0.8); }

@keyframes option-confirm {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.55); }
  100% { filter: brightness(1); }
}

.q-option.selected.confirming {
  animation: option-confirm 0.42s ease;
}

.q-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 640px;
}

.btn-back {
  background: none;
  border: 1px solid var(--divider);
  padding: 0.75rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bark);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-transform: uppercase;
}

.btn-back:hover { border-color: var(--bark); color: var(--ink); }

.btn-next {
  background: var(--ink);
  border: none;
  padding: 0.875rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.35;
  pointer-events: none;
}

.btn-next.ready { opacity: 1; pointer-events: all; }
.btn-next.ready:hover { background: var(--rust); transform: translateY(-1px); }

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
.btn-next.loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn-next.loading svg {
  display: none;
}
.btn-next.loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(245,240,232,0.35);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  flex-shrink: 0;
}

.q-skip {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--bark);
  cursor: pointer;
  letter-spacing: 0.06em;
  margin-left: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0.5rem;
}

.q-skip:hover { opacity: 1; }

/* ─── RESULTS SCREEN ─── */
.results-screen {
  flex-direction: column;
  padding: 4rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.results-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.results-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.results-screen h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.75rem;
  max-width: 700px;
}

.results-intro {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 3rem;
}

.results-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.results-patterns {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.result-pattern {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid var(--divider);
  padding: 1rem 0;
  transition: background 0.2s;
  cursor: default;
}

.result-pattern:last-child { border-bottom: 1px solid var(--divider); }

.result-pattern-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  min-width: 2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.result-pattern-body { flex: 1; }

.result-pattern-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.result-pattern-bar-track {
  height: 3px;
  background: var(--divider);
  max-width: 300px;
}

.result-pattern-bar-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.8s ease;
}

.result-pattern.high .result-pattern-name { color: var(--rust); }
.result-pattern.high .result-pattern-bar-fill { background: var(--rust); }

.result-score-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bark);
  margin-top: 0.25rem;
}

.result-pattern.high .result-score-label { color: var(--rust); }

.results-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.result-detail-card {
  background: var(--cream);
  padding: 1.75rem;
  margin-bottom: 1px;
  border-left: 3px solid var(--rust);
}

.result-detail-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.result-detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.result-detail-body {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ─── IDENTITY CALLOUT ─── */
.identity-callout {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border-left: 3px solid;
}
.identity-callout-high { background: #fbeaea; border-color: #a32d2d; }
.identity-callout-mid  { background: #faeeda; border-color: #c4803d; }
.identity-callout-low  { background: #eaf3de; border-color: #3b6d11; }

.identity-callout-intro {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bark);
}

.identity-callout-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
}
.identity-callout-high .identity-callout-name { color: #a32d2d; }
.identity-callout-mid  .identity-callout-name { color: #854f0b; }
.identity-callout-low  .identity-callout-name { color: #3b6d11; }

.identity-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.identity-desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 2rem;
}

.result-pattern-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--divider);
}

.result-pattern-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold);
  width: 1.5rem;
  flex-shrink: 0;
}

.result-pattern-row-name {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.result-pattern-row-bar {
  width: 72px;
  height: 4px;
  background: var(--divider);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.result-pattern-row-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 0.8s ease;
}
.result-pattern-row-fill.score-1 { background: #8b9e8a; }
.result-pattern-row-fill.score-2 { background: var(--gold); }
.result-pattern-row-fill.score-3 { background: #c4803d; }
.result-pattern-row-fill.score-4 { background: var(--rust); }

.result-pattern-row-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  width: 82px;
  text-align: right;
  flex-shrink: 0;
}

.result-patterns-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 2rem;
  max-width: 640px;
}

.result-patterns-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.6rem;
}

.result-cta-block {
  background: var(--ink);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  max-width: 640px;
}

.result-cta-block p {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.result-cta-block .btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.15s;
}

.result-cta-block .btn-apply:hover { background: var(--gold-light); }

/* Results CTA */
.results-cta {
  background: var(--ink);
  padding: 4rem 3rem;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.results-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 560px;
}

.results-cta-text em { font-style: italic; color: var(--gold); }

.results-cta-sub {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.65);
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 480px;
}

.results-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-apply:hover { background: var(--gold-light); transform: translateY(-1px); }

.results-cta-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.results-cta-detail {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.results-cta-detail::before { content: '·'; color: var(--gold); }

.btn-retry {
  background: none;
  border: 1px solid rgba(196,164,107,0.4);
  padding: 0.6rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-transform: uppercase;
}

.btn-retry:hover { border-color: var(--gold-light); color: rgba(245,240,232,0.8); }

/* ─── TRANSITIONS ─── */
.screen { transition: opacity 0.35s ease; }
.screen:not(.active) { opacity: 0; }
.screen.active { opacity: 1; }

/* ─── SIDE BOOK WIDGET ─── */
.side-book-widget {
  margin-top: 1.25rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--divider);
}

.side-book-widget-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.side-book-widget-sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.btn-book-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.875rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}

.btn-book-widget:hover { background: var(--rust); transform: translateY(-1px); }

.side-book-widget-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.side-book-widget-detail {
  font-size: 0.65rem;
  color: var(--bark);
  opacity: 0.7;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.side-book-widget-detail::before { content: '·'; color: var(--gold); }

#results-cta-mobile { display: none !important; }

@media (max-width: 900px) {
  #results-cta-mobile.active { display: block !important; }
  #results-cta-desktop { display: none !important; }
}

.diagnostic-side.hidden { display: none; }

.diagnostic-side.results-mode {
  top: 108px;
  transform: none;
}

/* ─── BOOKING SECTION ─── */
.booking-section {
  padding: 6rem 3rem;
  text-align: center;
  border-top: 1px solid var(--divider);
}

.booking-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.booking-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.booking-section p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.booking-details {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.booking-detail {
  font-size: 0.72rem;
  color: var(--bark);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-detail::before {
  content: '·';
  color: var(--gold);
  font-size: 1.2rem;
}

/* Phone layout */
@media (max-width: 900px) {
  .question-screen { padding: 2.5rem 1.5rem 3rem; }
  .q-options { grid-template-columns: repeat(2, 1fr); }
  .results-screen { padding: 3rem 1.5rem; }
  .results-grid { grid-template-columns: 1fr; gap: 2rem; }
  .results-cta { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .intro-screen { padding: 2.5rem 1.5rem 1.5rem; }
  .intro-meta { gap: 0.75rem; margin-bottom: 1.25rem; }
  .intro-meta-item { font-size: 0.62rem; letter-spacing: 0.04em; }
  .diagnostic-wrap { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .diagnostic-side { display: none; }
  .video-mobile { display: block; }
  .video-mobile .video-frame { aspect-ratio: 16/9; }
  .booking-section { padding: 4rem 1.5rem; }
  .booking-details { gap: 1.5rem; }
  .progress-bar-track { top: 60px; }
}

/* ── AUTHOR BIO / ABOUT SECTION ── */
.about-section {
  padding: 5rem 0;
  border-top: 1px solid var(--divider);
}
.about-section .author-bio {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.author-bio-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 1.5px solid var(--gold-light);
  flex-shrink: 0;
}
.author-bio-content {
  flex: 1;
}
.author-bio-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  display: block;
  margin-bottom: 0.35rem;
}
.author-bio-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 0.75rem;
}
.author-bio-content p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}
.author-bio-content p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .about-section .author-bio { flex-direction: column; gap: 1.25rem; padding: 0 1.5rem; }
  .author-bio-photo { width: 72px; height: 72px; }
}

/* ── guide page inline author bio (compact, no section wrapper) ── */
.guide-author-bio {
  margin: 4rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.guide-author-bio .author-bio-photo { width: 72px; height: 72px; }
@media (max-width: 500px) {
  .guide-author-bio { flex-direction: column; gap: 1.25rem; }
}

@media (max-width: 500px) {
  .q-options { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}
