/* ═══════════════════════════════════════════
   ABOUT US — page-about.php  (v2)
   7 sections: Hero, Our Approach, Practice (dark),
   First5, Why Woodstock, Dr. Neal, Bottom Line
   ═══════════════════════════════════════════ */

/* ── Shared ── */
.wv-about-wrap {
  max-width: var(--wv-page-content-max);
  margin: 0 auto;
  padding: 0 48px;
}

.wv-about-eyebrow {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wv-color-accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wv-about-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--wv-color-accent);
}

.wv-about-section-title {
  /* wv-h2 */
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: var(--wv-fs-h5);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wv-color-text-primary);
  margin-bottom: 24px;
}


/* ── Buttons — coral CTA (no global equivalent) ──
   Matches global button spec: 44px height, 15.6px, -0.47px
   TODO: promote to wv-components.css as .wv-btn-coral
   after designer review — used on About, likely needed on other pages
*/
.wv-about-btn--coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: var(--wv-color-accent);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: var(--wv-fs-h6);
  line-height: 19.8px;
  letter-spacing: -0.47px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background var(--wv-transition-base);
}

.wv-about-btn--coral:hover {
  background: var(--wv-color-olive-dark);
}


/* ═══════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════ */
.wv-about-hero {
  padding: 56px 0;
  border-bottom: 1px solid var(--wv-color-text-primary);
}

.wv-about-hero__inner {
  max-width: var(--wv-page-content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}


.wv-about-hero__title {
  /* wv-h1 */
  font-family: var(--wv-font-primary);
  font-weight: 300;
  font-size: var(--wv-fs-h2);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wv-color-text-primary);
  margin-bottom: 24px;
}

.wv-about-hero__body {
  color: var(--wv-color-text-primary);
  margin-bottom: 32px;
  max-width: 460px;
}

.wv-about-hero__body strong {
  font-weight: 600;
  color: var(--wv-color-text-primary);
}

.wv-about-hero__ctas {
  display: flex;
  gap: 21px;
}

.wv-about-hero__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--wv-radius-lg);
  background: var(--wv-color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wv-font-mono);
  font-size: var(--wv-fs-body-sm);
  color: var(--wv-color-text-secondary);
  font-style: italic;
  border: 1px solid var(--wv-color-border);
  overflow: hidden;
}

.wv-about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-about-hero__caption {
  /* wv-label-small */
  font-family: var(--wv-font-mono);
  font-weight: 400;
  font-size: var(--wv-fs-body-sm);
  letter-spacing: -0.03em;
  color: var(--wv-color-text-secondary);
  text-align: center;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   SECTION 2 — OUR APPROACH
   ═══════════════════════════════════════════ */
.wv-about-approach {
  padding: 56px 0;
  border-bottom: 1px solid var(--wv-color-text-primary);
}

.wv-about-approach__inner {
  max-width: var(--wv-page-content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.wv-about-principle {
  padding: 22px 0;
  border-bottom: 1px solid var(--wv-color-text-primary);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.wv-about-principle:last-child {
  border-bottom: none;
}

.wv-about-principle__num {
  font-family: var(--wv-font-serif);
  font-size: var(--wv-fs-h-quiz);
  color: var(--wv-color-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.wv-about-principle__title {
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-h6);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wv-color-text-primary);
  margin-bottom: 5px;
}

.wv-about-principle__body {
  color: var(--wv-color-text-primary);
}

/* ═══════════════════════════════════════════
   SECTION 3 — SUPPLEMENTS AS A PRACTICE (dark)
   ═══════════════════════════════════════════ */
.wv-about-practice {
  background: var(--wv-color-text-primary) url('../images/about/about-practice-bg.webp') center / cover no-repeat;
  padding: 56px 0;
}

.wv-about-practice__inner {
  max-width: var(--wv-page-content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.wv-about-practice__eyebrow {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wv-about-practice__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.wv-about-practice__title {
  font-family: var(--wv-font-serif);
  font-size: var(--wv-fs-h-serif-sm);
  font-weight: 400;
  color: var(--wv-color-text-inverse);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.wv-about-practice__body {
  color: var(--wv-color-text-inverse);
}

.wv-about-practice__body strong {
  font-weight: 500;
  color: var(--wv-color-text-inverse);
}

.wv-about-practice__body p {
  margin-bottom: 18px;
}

.wv-about-practice__body p:last-child {
  margin-bottom: 0;
}

.wv-about-pstep {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.wv-about-pstep:last-child {
  border-bottom: none;
}

.wv-about-pstep__dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url('../images/icons/checkmark-outline.png') center / contain no-repeat;
}

.wv-about-pstep__title {
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-h6);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wv-color-text-inverse);
  margin-bottom: 4px;
}

.wv-about-pstep__body {
  color: var(--wv-color-text-inverse);
}

/* ═══════════════════════════════════════════
   SECTION 4 — THE FIRST5
   ═══════════════════════════════════════════ */
.wv-about-first5 {
  padding: 56px 0;
  border-bottom: 1px solid var(--wv-color-text-primary);
}

.wv-about-first5__inner {
  max-width: var(--wv-page-content-max);
  margin: 0 auto;
  padding: 0 20px;
}

.wv-about-first5__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.wv-about-f5-card {
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--wv-color-text-primary);
  transition: transform var(--wv-transition-base);
}

.wv-about-f5-card:hover {
  transform: translateY(-2px);
}

.wv-about-f5-card__name {
  /* wv-h-serif-sm */
  font-family: var(--wv-font-serif);
  font-size: var(--wv-fs-h-serif-sm);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--wv-color-text-inverse);
  margin-bottom: 4px;
}

/* TODO: 11px/300 doesn't match any global class — confirm with designer */
.wv-about-f5-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

.wv-about-first5__ctas {
  display: flex;
  gap: 21px;
}

.wv-about-first5__disclaimer {
  color: var(--wv-color-text-secondary);
  margin-top: 20px;
  max-width: 680px;
}

/* ── First5 centered variant (test) ── */
.wv-about-first5--centered .wv-about-first5__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wv-about-first5--centered .wv-section-pill {
  align-self: center;
}

.wv-about-first5--centered .wv-about-section-title {
  text-align: center;
}

.wv-about-first5--centered .wv-body-lg {
  max-width: 680px;
  text-align: center;
}

.wv-about-first5--centered .wv-about-first5__products {
  width: 100%;
  margin-top: 40px;
}

.wv-about-first5--centered .wv-about-first5__ctas {
  justify-content: center;
  margin-top: 40px;
}

.wv-about-first5--centered .wv-about-first5__disclaimer {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   SECTION 5 — WHY WOODSTOCK
   ═══════════════════════════════════════════ */
.wv-about-woodstock {
  background: var(--wv-color-surface);
  border-top: 1px solid var(--wv-color-border);
  border-bottom: 1px solid var(--wv-color-border);
  padding: 56px 0;
}

.wv-about-woodstock__inner {
  max-width: var(--wv-page-content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* Single-column variant (image placeholder removed) — keep one column at
   all breakpoints and constrain the content to a reading width. */
.wv-about-hero--single .wv-about-hero__inner,
.wv-about-woodstock--single .wv-about-woodstock__inner {
  grid-template-columns: 1fr;
}
.wv-about-hero--single .wv-about-hero__left,
.wv-about-woodstock--single .wv-about-woodstock__right {
  max-width: var(--wv-content-max);
  margin-inline: auto;
}

.wv-about-woodstock__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--wv-radius-lg);
  background: var(--wv-color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wv-font-mono);
  font-size: var(--wv-fs-body-sm);
  color: var(--wv-color-text-secondary);
  font-style: italic;
  border: 1px solid var(--wv-color-text-primary);
  overflow: hidden;
}

.wv-about-woodstock__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-about-blockquote {
  border-left: 2px solid var(--wv-color-accent);
  padding-left: 20px;
  margin: 24px 0;
}

.wv-about-blockquote__text {
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Woodstock CTA — rounded olive pill button
   TODO: consider a global .wv-pill-btn-cta component (rounded olive)
   if this pattern is reused on other pages */
/* Was inline style="margin-top: 28px" on the wrapper div — extracted
   2026-06-05 to comply with "no inline styles" rule. */
.wv-about-woodstock__cta-wrap {
  margin-top: 28px;
}

.wv-about-woodstock__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 72px;
  border: 0;
  background: var(--wv-color-accent);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: var(--wv-fs-label-nav);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--wv-transition-base);
}

.wv-about-woodstock__cta:hover {
  background: var(--wv-color-atc-hover);
}

.wv-about-blockquote__attr {
  /* wv-label-small */
  font-family: var(--wv-font-mono);
  font-weight: 400;
  font-size: var(--wv-fs-body-sm);
  letter-spacing: -0.03em;
  color: var(--wv-color-text-secondary);
}

/* ═══════════════════════════════════════════
   SECTION 6 — DR. NEAL
   ═══════════════════════════════════════════ */
.wv-about-founder {
  padding: 56px 0;
  border-bottom: 1px solid var(--wv-color-text-primary);
}

.wv-about-founder__inner {
  max-width: var(--wv-page-content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}

.wv-about-founder__img {
  width: 100%;
  border-radius: var(--wv-radius-lg);
  background: var(--wv-color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wv-font-mono);
  font-size: var(--wv-fs-body-sm);
  color: var(--wv-color-text-secondary);
  font-style: italic;
  border: 1px solid var(--wv-color-text-primary);
  overflow: hidden;
}

.wv-about-founder__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-about-founder__name {
  /* wv-h2 */
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: var(--wv-fs-h5);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wv-color-text-primary);
  margin-bottom: 6px;
}

.wv-about-founder__title {
  /* wv-label-small */
  font-family: var(--wv-font-mono);
  font-weight: 400;
  font-size: var(--wv-fs-body-sm);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
  margin-bottom: 28px;
}

.wv-about-founder__credentials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.wv-about-credential {
  font-family: var(--wv-font-primary);
  font-size: var(--wv-fs-body-sm);
  font-weight: 400;
  padding: 4px 12px;
  border-radius: var(--wv-radius-pill);
  background: none;
  border: 1px solid var(--wv-color-text-primary);
  color: var(--wv-color-text-primary);
}

.wv-about-founder__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--wv-color-surface);
  border-radius: 10px;
  overflow: hidden;
  margin: 28px 0;
}

.wv-about-fstat {
  padding: 18px 16px;
  border-right: 1px solid var(--wv-color-surface);
  background: var(--wv-color-card-bg);
  text-align: center;
}

.wv-about-fstat:last-child {
  border-right: none;
}

.wv-about-fstat__num {
  font-family: var(--wv-font-serif);
  font-size: var(--wv-fs-h5);
  font-weight: 400;
  color: var(--wv-color-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.wv-about-fstat__label {
  /* wv-label-small */
  font-family: var(--wv-font-mono);
  font-weight: 400;
  font-size: var(--wv-fs-body-sm);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
  line-height: 1.4;
}

/* Founder CTA — pill-shaped dark button, mimics .wv-card__atc rounding
   TODO: consider a global pill-button component if reused elsewhere */
.wv-about-founder__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 72px;
  border: 0;
  background: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: var(--wv-fs-label-nav);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--wv-transition-base);
}

.wv-about-founder__cta:hover {
  background: var(--wv-color-accent);
}

/* ═══════════════════════════════════════════
   SECTION 7 — BOTTOM LINE
   ═══════════════════════════════════════════ */
/* Bottom line section — extracted to wv-quiz-cta.css / parts/wv-quiz-cta.php */

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet+ (768px)
   ═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .wv-about-hero__inner,
  .wv-about-approach__inner,
  .wv-about-practice__inner,
  .wv-about-woodstock__inner,
  .wv-about-founder__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 40px;
  }

  .wv-about-practice__inner {
    grid-template-columns: 1.1fr 1fr;
  }

  .wv-about-founder__inner {
    grid-template-columns: 1fr 1.4fr;
  }

  .wv-about-first5__inner {
    padding: 0 40px;
  }

  .wv-about-hero,
  .wv-about-approach,
  .wv-about-practice,
  .wv-about-first5,
  .wv-about-woodstock,
  .wv-about-founder {
    padding: 88px 0;
  }

  .wv-about-hero {
    padding-bottom: 80px;
  }


  .wv-about-hero__title {
    font-size: var(--wv-fs-h-serif);
  }

  .wv-about-section-title {
    font-size: var(--wv-fs-h2);
  }

  .wv-about-practice__title {
    font-size: var(--wv-fs-h-serif);
  }

  .wv-about-founder__name {
    font-size: var(--wv-fs-h2);
  }

  .wv-about-first5__products {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Desktop (1280px)
   ═══════════════════════════════════════════ */
@media (min-width: 1280px) {
  .wv-about-hero__inner,
  .wv-about-approach__inner,
  .wv-about-practice__inner,
  .wv-about-woodstock__inner,
  .wv-about-founder__inner {
    gap: 80px;
    padding: 0 48px;
  }

  .wv-about-first5__inner {
    padding: 0 48px;
  }

  .wv-about-hero__title {
    font-size: var(--wv-fs-h1);
  }
}

/* ═══════════════════════════════════════════
   MOBILE-FIRST FIXES — base rules with desktop restoration at tablet+
   (Refactored from a max-width: 767px block 2026-06-01.)
   ═══════════════════════════════════════════ */

/* ── SECTION 1: Hero ── */
.wv-about-hero {
  padding: 32px 0;
}

.wv-about-hero__inner {
  padding: 0 24px;
}

.wv-about-hero__title {
  font-size: var(--wv-fs-h-serif-sm);
}

.wv-about-hero__ctas {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}

.wv-about-hero__ctas .wv-lg__btn-quiz,
.wv-about-hero__ctas .wv-lg__btn-outline {
  padding: 0 16px;
  font-size: var(--wv-fs-body);
  white-space: nowrap;
}

.wv-about-hero__img {
  aspect-ratio: 3/2;
  max-height: 260px;
  width: 100%;
}

/* ── SECTION 4: First5 ── */
.wv-about-first5__inner {
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Override centered variant — prevent width: 100% from causing overflow */
.wv-about-first5--centered .wv-about-first5__inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-items: stretch;
}

/* Products grid — full width, no overflow */
.wv-about-first5__products {
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  justify-content: center;
}

.wv-about-f5-card {
  padding: 16px 12px;
  min-width: 0; /* prevents grid blowout */
}

.wv-about-f5-card__name {
  font-size: var(--wv-fs-h5);
}

.wv-about-first5__ctas {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── SECTION 6: Founder ── */
.wv-about-founder {
  padding: 40px 0;
}

.wv-about-founder__inner {
  padding: 0 24px;
}

.wv-about-founder__img {
  aspect-ratio: 3/4;
  max-height: 320px;
  width: 100%;
}

/* Stats — prevent clipping */
.wv-about-founder__stats {
  width: 100%;
  box-sizing: border-box;
}

.wv-about-fstat {
  padding: 14px 8px;
}

.wv-about-fstat__num {
  font-size: var(--wv-fs-body-lg);
}

.wv-about-fstat__label {
  font-size: 10px;
}

/* Credentials — wrap properly */
.wv-about-founder__credentials {
  flex-wrap: wrap;
  gap: 6px;
}

/* ── Desktop restoration at tablet+ ── */
@media (min-width: 768px) {
  .wv-about-hero {
    padding: 56px 0;
  }

  .wv-about-hero__inner {
    padding: 0 20px;
  }

  .wv-about-hero__title {
    font-size: var(--wv-fs-h2);
  }

  .wv-about-hero__ctas {
    flex-wrap: revert;
    gap: 21px;
    align-items: revert;
  }

  .wv-about-hero__ctas .wv-lg__btn-quiz,
  .wv-about-hero__ctas .wv-lg__btn-outline {
    padding: revert;
    font-size: revert;
    white-space: revert;
  }

  .wv-about-hero__img {
    aspect-ratio: 4/5;
    max-height: revert;
  }

  .wv-about-first5__inner {
    padding: 0 20px;
    width: revert;
    box-sizing: revert;
  }

  .wv-about-first5--centered .wv-about-first5__inner {
    width: revert;
    max-width: revert;
    box-sizing: revert;
    align-items: revert;
  }

  .wv-about-first5__products {
    width: revert;
    box-sizing: revert;
    gap: 12px;
    justify-content: revert;
  }

  .wv-about-f5-card {
    padding: 24px 16px;
    min-width: revert;
  }

  .wv-about-f5-card__name {
    font-size: var(--wv-fs-h-serif-sm);
  }

  .wv-about-first5__ctas {
    flex-wrap: revert;
    gap: 21px;
    justify-content: revert;
  }

  .wv-about-founder {
    padding: 56px 0;
  }

  .wv-about-founder__inner {
    padding: 0 20px;
  }

  .wv-about-founder__img {
    aspect-ratio: revert;
    max-height: revert;
  }

  .wv-about-founder__stats {
    width: revert;
    box-sizing: revert;
  }

  .wv-about-fstat {
    padding: 18px 16px;
  }

  .wv-about-fstat__num {
    font-size: var(--wv-fs-h5);
  }

  .wv-about-fstat__label {
    font-size: var(--wv-fs-body-sm);
  }

  .wv-about-founder__credentials {
    gap: 8px;
  }
}
