/*
 * styles.css — Nurture with Anna (plain CSS, no framework)
 * Design: Modern Organic Editorial
 * Fonts: Cormorant Garamond (serif headings) + Source Sans 3 (body)
 * Palette: warm off-white bg · dusty rose primary · forest green accent
 */

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: oklch(0.975 0.008 75);
  color: oklch(0.18 0.015 50);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
}

/* ─── CSS Custom Properties ─── */
:root {
  --radius: 0.25rem;
  --bg: oklch(0.975 0.008 75);
  --fg: oklch(0.18 0.015 50);
  --primary: oklch(0.58 0.09 15);
  --primary-dark: oklch(0.52 0.09 15);
  --primary-pale: oklch(0.95 0.018 15);
  --accent: oklch(0.38 0.08 155);
  --accent-dark: oklch(0.32 0.08 155);
  --border: oklch(0.88 0.015 70);
  --border-light: oklch(0.92 0.012 70);
  --muted: oklch(0.52 0.02 60);
  --card-bg: oklch(0.99 0.005 75);
  --secondary-bg: oklch(0.95 0.012 75);
  --warm-gold: oklch(0.65 0.12 65);
}

/* ─── Container ─── */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Utility ─── */
.hidden {
  display: none !important;
}

/* ─── Section padding ─── */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* ─── Section label row ─── */
.section-label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-label-row .label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

/* ─── Two-column grid ─── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .two-col-grid {
    gap: 5rem;
  }
}

/* ─── Button: primary ─── */
.btn-primary {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--primary);
  color: oklch(0.98 0.005 75);
  border: none;
  border-radius: 2px;
  padding: 0.85rem 1.75rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 400px) {
  .btn-primary {
    width: auto;
  }
}

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

/* ─── Button: outline green ─── */
.btn-outline-green {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  padding: 0.85rem 1.75rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 400px) {
  .btn-outline-green {
    width: auto;
  }
}

.btn-outline-green:hover {
  background: var(--accent);
  color: oklch(0.98 0.005 75);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────
   NAVBAR
────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s, box-shadow 0.3s;
}


#site-header.scrolled {
  background: oklch(0.975 0.008 75 / 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px oklch(0.18 0.015 50 / 0.06);
}

#site-header.menu-open {
  background: oklch(0.975 0.008 75 / 0.97);
  backdrop-filter: blur(12px);
}


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.01em;
  text-decoration: none;
  z-index: 60;
  position: relative;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(0.45 0.02 55);
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-cta-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--primary);
  color: oklch(0.98 0.005 75);
  border: none;
  border-radius: 2px;
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}

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

/* Persistent CTA — always visible except on very small screens */
.nav-cta-persistent {
  display: none;
}

@media (min-width: 400px) {
  .nav-cta-persistent {
    display: inline-block;
  }
}

@media (min-width: 1024px) {

  /* Desktop nav shows its own CTA, hide the persistent one */
  .nav-cta-persistent {
    display: none;
  }
}

/* Group that holds persistent CTA + hamburger, always sticks together on the right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  z-index: 60;
  position: relative;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: oklch(0.35 0.02 55);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 40;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 320px;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 400;
  color: oklch(0.22 0.015 50);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 64px;
  text-decoration: none;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:active {
  color: var(--primary);
}

.mobile-cta {
  margin-top: 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--primary);
  color: oklch(0.98 0.005 75);
  border: none;
  border-radius: 2px;
  padding: 1rem 2.5rem;
  cursor: pointer;
  min-height: 52px;
}

.mobile-tagline {
  margin-top: 2.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  color: oklch(0.6 0.015 60);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────────── */
.hero-section {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 4rem);
  margin-top: 4rem;
  background: var(--bg);
  overflow: hidden;
}

.hero-img-mobile {
  display: block;
  width: 100%;
  height: 55vw;
  min-height: 240px;
  max-height: 380px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-img-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-text.loaded {
  opacity: 1;
  transform: translateY(0);
}

.hero-img-desktop {
  display: none;
}

@media (min-width: 640px) {
  .hero-text {
    padding: 3rem 2rem 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100svh - 4rem);
  }

  .hero-img-mobile {
    display: none;
  }

  .hero-text {
    padding: 4rem 3rem 5rem 4rem;
    order: 1;
  }

  .hero-img-desktop {
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    order: 2;
  }

  .hero-img-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-img-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, var(--bg), transparent);
  }
}

@media (min-width: 1024px) {
  .hero-text {
    padding: 4rem 4rem 5rem 6rem;
  }
}

.hero-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: oklch(0.42 0.02 55);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 400px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-stars {
  display: flex;
}

.hero-stars span {
  color: var(--warm-gold);
  font-size: 1rem;
}

.hero-trust-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.yelp-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.yelp-link:hover {
  color: #d32323;
}

/* ──────────────────────────────────────────────────
   ABOUT SECTION
────────────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.about-quote-card {
  margin-top: 1.25rem;
  background: var(--primary);
  color: oklch(0.98 0.005 75);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .about-quote-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    margin-top: 0;
    max-width: 220px;
  }
}

.about-quote-card p.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
}

.about-quote-card p.quote-author {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.philosophy-section {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}

.philosophy-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.philosophy-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.philosophy-q {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.philosophy-a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: oklch(0.42 0.02 55);
  line-height: 1.65;
}

.about-funfact {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--secondary-bg);
  border-radius: 2px;
  border-left: 3px solid var(--accent);
}

.about-funfact .label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.about-funfact .body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: oklch(0.38 0.02 55);
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────
   ABOUT — Philosophy cards (full-width row)
────────────────────────────────────────────────── */
.about-philosophy-row {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .about-philosophy-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-philosophy-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary);
  border-radius: 2px;
  padding: 1.5rem 1.25rem;
}

.about-philosophy-card-q {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.about-philosophy-card-a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: oklch(0.42 0.02 55);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────
   APPROACH SECTION
────────────────────────────────────────────────── */
.approach-section {
  background: oklch(0.38 0.08 155 / 0.05);
}

.approach-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.approach-lead {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: oklch(0.38 0.02 55);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.approach-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .approach-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .approach-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.approach-pillar {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: 0 2px 12px oklch(0.18 0.015 50 / 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.approach-pillar:hover {
  box-shadow: 0 6px 24px oklch(0.18 0.015 50 / 0.09);
  transform: translateY(-3px);
}

.approach-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: oklch(0.38 0.08 155 / 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
}

.approach-pillar-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: oklch(0.42 0.02 55);
  line-height: 1.7;
}

.approach-closing {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: oklch(0.38 0.08 155 / 0.07);
  border-radius: 4px;
  border: 1px solid oklch(0.38 0.08 155 / 0.15);
}

.approach-closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--accent);
  line-height: 1.4;
}

/* ──────────────────────────────────────────────────
   BIRTH CARE & POSTPARTUM — shared section headings
────────────────────────────────────────────────── */
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: oklch(0.38 0.02 55);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.section-blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.section-blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: oklch(0.22 0.015 50);
  line-height: 1.5;
}

.section-blockquote-green {
  border-left-color: var(--accent);
}

/* ─── Birth support grid ─── */
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.support-item {
  padding: 0.875rem;
  background: oklch(0.97 0.01 75);
  border-radius: 2px;
  border: 1px solid var(--border-light);
}

.support-item-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.support-item-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: oklch(0.45 0.02 55);
  line-height: 1.5;
}

/* ─── Postpartum column order ─── */
.postpartum-content-col {
  order: 1;
}

.postpartum-img-col {
  order: 2;
}

@media (min-width: 768px) {
  .postpartum-content-col {
    order: 2;
  }

  .postpartum-img-col {
    order: 1;
  }
}

.postpartum-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.postpartum-pillar {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.pillar-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: oklch(0.25 0.015 50);
  margin-bottom: 0.15rem;
}

.pillar-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: oklch(0.45 0.02 55);
  line-height: 1.6;
}

.btn-postpartum {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--accent);
  color: oklch(0.98 0.005 75);
  border: none;
  border-radius: 2px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-postpartum:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────
   QUIZ SECTION
────────────────────────────────────────────────── */
.quiz-card {
  background: var(--card-bg);
  border-radius: 4px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 4px 40px oklch(0.18 0.015 50 / 0.08);
  border: 1px solid var(--border-light);
}

@media (min-width: 640px) {
  .quiz-card {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .quiz-card {
    padding: 3rem;
  }
}

.quiz-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.quiz-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.quiz-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 0.875rem;
}

.quiz-intro {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: oklch(0.45 0.02 55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Progress bar */
.quiz-progress-bar-wrap {
  margin-bottom: 2rem;
}

.quiz-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.quiz-progress-labels span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}

.quiz-progress-track {
  height: 3px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}

/* Question */
.quiz-question-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 4vw, 1.8rem);
  color: oklch(0.22 0.015 50);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: oklch(0.38 0.02 55);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  min-height: 48px;
}

.quiz-option:hover {
  border-color: var(--primary);
}

.quiz-option.selected {
  color: var(--fg);
  background: var(--primary-pale);
  border-color: var(--primary);
}

.quiz-option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid oklch(0.75 0.02 60);
  flex-shrink: 0;
  transition: border 0.2s;
}

.quiz-option.selected .quiz-option-radio {
  border: 5px solid var(--primary);
}

/* Result */
.quiz-result {
  text-align: center;
}

.quiz-result-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.quiz-result-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--fg);
  margin-bottom: 1rem;
}

.quiz-result-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: oklch(0.38 0.02 55);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.quiz-result-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: stretch;
}

.quiz-btn-cta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--primary);
  color: oklch(0.98 0.005 75);
  border: none;
  border-radius: 2px;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 48px;
}

.quiz-btn-cta:hover {
  background: var(--primary-dark);
}

.quiz-btn-retake {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  min-height: 48px;
}

.quiz-note {
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: oklch(0.6 0.015 60);
  margin-top: 1.25rem;
  font-style: italic;
}

/* ──────────────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-question {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.4;
}

.testimonial-divider {
  height: 1px;
  background: var(--border-light);
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 0.8;
  color: var(--border);
  user-select: none;
}

.testimonial-quote {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: oklch(0.35 0.02 55);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author-name {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: oklch(0.25 0.015 50);
}

.testimonial-author-context {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
}

/* ──────────────────────────────────────────────────
   PROCESS / FAQ
────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }
}

.faq-header-sticky {
  position: static;
}

@media (min-width: 1024px) {
  .faq-header-sticky {
    position: sticky;
    top: 7rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  min-height: 48px;
}

.faq-q-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: oklch(0.22 0.015 50);
  line-height: 1.35;
  transition: color 0.2s;
  flex: 1;
}

.faq-item.open .faq-q-text {
  color: var(--primary);
}

.faq-toggle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  color: oklch(0.65 0.02 60);
  transition: transform 0.25s, color 0.2s;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: oklch(0.38 0.02 55);
  line-height: 1.75;
  padding-bottom: 1.25rem;
}

/* ──────────────────────────────────────────────────
   CERTIFICATIONS
────────────────────────────────────────────────── */
.certs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .certs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .certs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.cert-category-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.cert-items {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.cert-item {
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border-light);
}

.cert-item:last-child {
  border-bottom: none;
}

.cert-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: oklch(0.25 0.015 50);
  margin-bottom: 0.15rem;
  line-height: 1.4;
}

.cert-org {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
}

.cert-org a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.cert-org a:hover {
  color: var(--accent);
}

.certs-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: oklch(0.96 0.015 15 / 0.12);
  border-radius: 2px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.certs-note-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.certs-note-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: oklch(0.25 0.015 50);
  margin-bottom: 0.25rem;
}

.certs-note-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: oklch(0.42 0.02 55);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────
   CONTACT
────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.contact-step {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.contact-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  flex-shrink: 0;
  min-width: 28px;
}

.contact-step-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: oklch(0.38 0.02 55);
  line-height: 1.6;
}

.contact-info {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: oklch(0.45 0.02 55);
  line-height: 1.7;
}

/* Form card */
.contact-form-card {
  background: var(--card-bg);
  border-radius: 4px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 4px 40px oklch(0.18 0.015 50 / 0.08);
  border: 1px solid var(--border-light);
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 1.125rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-name-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-name-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(0.45 0.02 55);
  display: block;
  margin-bottom: 0.5rem;
}

.form-field label .required {
  color: var(--primary);
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: oklch(0.35 0.02 55);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  min-height: 48px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}

.form-field textarea {
  resize: vertical;
  line-height: 1.65;
}

.form-submit {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--primary);
  color: oklch(0.98 0.005 75);
  border: none;
  border-radius: 2px;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
  min-height: 52px;
}

.form-submit:hover {
  background: var(--primary-dark);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: oklch(0.5 0.18 25);
}

.form-field-hint {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: oklch(0.6 0.015 60);
  font-style: italic;
  margin-top: 0.375rem;
}

.form-note {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: oklch(0.6 0.015 60);
  text-align: center;
  font-style: italic;
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 2rem 0;
}

.contact-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.contact-success-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: oklch(0.38 0.02 55);
  line-height: 1.75;
}

/* ──────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────── */
.site-footer {
  background: oklch(0.18 0.015 50);
  color: oklch(0.85 0.01 70);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: oklch(0.95 0.005 75);
  margin-bottom: 0.875rem;
}

.footer-brand-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: oklch(0.65 0.01 65);
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand-question {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--primary);
  margin-top: 1rem;
}

.footer-col-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.55 0.01 65);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-link {
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: oklch(0.65 0.01 65);
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 36px;
  text-decoration: none;
  display: block;
}

.footer-nav-link:hover {
  color: oklch(0.85 0.01 70);
}

.footer-services {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-service {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: oklch(0.65 0.01 65);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid oklch(0.28 0.01 50);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: oklch(0.45 0.01 60);
}

.footer-yelp-link {
  color: oklch(0.55 0.01 60);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer-yelp-link:hover {
  color: #d32323;
}