/* =========================================================
   WILLOW & BIRCH — styles.css
   Design: Modern Heritage | Upscale Warmth
   ========================================================= */

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

:root {
  /* Palette */
  --master-green: #1B3A2F;
  --forest:       #2A5240;
  --sage:         #7BA898;
  --sage-light:   #C4DDD6;
  --mint:         #E8F5F0;
  --pink:         #D4A5A0;
  --pink-light:   #F5E6E4;
  --cream:        #FAF8F4;
  --warm-white:   #FFFFFF;
  --ink:          #1A1A1A;
  --ink-mid:      #4A4A4A;
  --ink-soft:     #696969;
  --border:       rgba(27,58,47,0.12);
  --border-ui:    rgba(27,58,47,0.54);  /* 3.15:1 on white, 3.11:1 on cream — passes WCAG 1.4.11 */

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --section-pad-sm: 64px 0;
  --max-w: 1180px;
  --radius: 10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(27,58,47,0.08);
  --shadow-md: 0 6px 32px rgba(27,58,47,0.12);
  --shadow-lg: 0 16px 64px rgba(27,58,47,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--master-green);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--sage-light);
  outline-offset: 2px;
}

/* ── UTILITIES ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}
.section-label--light { color: var(--sage-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--master-green);
  margin-bottom: 32px;
}
.section-title em { font-style: italic; color: var(--forest); }
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--sage-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}
.btn--primary {
  background: var(--master-green);
  color: var(--warm-white);
}
.btn--primary:hover { background: var(--forest); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--master-green);
  border: 1.5px solid var(--master-green);
}
.btn--ghost:hover { background: var(--master-green); color: var(--warm-white); }

.btn--light {
  background: var(--warm-white);
  color: var(--master-green);
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-underline-offset: 3px;
}

/* Contact Us, checklist Next/Previous/Get My Results, Save PDF, hero CTAs —
   same hover-underline treatment as the nav's Find Care button. IDs/scoped
   selectors used (not bare .btn--primary/.btn--ghost) since those classes are
   shared with buttons that shouldn't get this effect. */
#openContactModal:hover,
#nextSection:hover,
#prevSection:hover,
#downloadPdfBtn:hover,
#intakeForm button[type="submit"]:hover,
#openScheduleConsultModal:hover,
.hero__actions .btn:hover {
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-underline-offset: 3px;
}

.hidden { display: none !important; }

/* ── NAV ── */
.nav__logo-img {
  display: block;
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--master-green);
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-underline-offset: 3px;
}
.nav__cta {
  background: var(--master-green) !important;
  color: var(--warm-white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
}
.nav__cta:hover { background: var(--forest) !important; transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--master-green);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.nav__mobile.open { display: flex; }
.mobile-link {
  font-size: 16px;
  color: var(--ink-mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link--cta {
  margin-top: 12px;
  background: var(--master-green);
  color: var(--warm-white) !important;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--master-green);
  padding: 120px 24px 80px;
}

.hero__layout {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 60px;
}

.hero__brand-img {
  display: none;
}

.hero__brand-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 16px;
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(122,168,152,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(212,165,160,0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--master-green) 0%, #0F2420 100%);
  pointer-events: none;
}

/* Subtle organic texture lines */
.hero__bg-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237BA898' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: italic;
  color: var(--sage-light);
}

.hero__sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(250,248,244,0.72);
  margin: 0 auto 44px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__actions .btn--primary {
  background: var(--sage-light);
  color: var(--master-green);
}
.hero__actions .btn--primary:hover {
  background: #aecfc8;
  color: var(--master-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.hero__actions .btn--ghost {
  color: var(--sage-light);
  border-color: rgba(196, 221, 214, 0.4);
}
.hero__actions .btn--ghost:hover {
  background: rgba(196,221,214,0.1);
  color: var(--cream);
  border-color: var(--sage-light);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(250,248,244,0.4);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,248,244,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── MISSION ── */
.mission {
  padding: var(--section-pad);
  background: var(--cream);
}

.mission__header { margin-bottom: 48px; }

.mission__body {
  max-width: 640px;
  margin-bottom: 0;
}
.mission__lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--forest);
  margin-bottom: 20px;
}
.mission__text {
  font-size: 16px;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.mission__text strong { color: var(--master-green); font-weight: 500; }
.mission__closing {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--forest);
}

.mission__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar__icon {
  width: 52px;
  height: 52px;
  background: var(--mint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--master-green);
  margin-bottom: 10px;
}
.pillar__text { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ── NUMBERS ── */
.numbers {
  padding: var(--section-pad);
  background: var(--master-green);
  position: relative;
  overflow: hidden;
}
.numbers__bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(122,168,152,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.numbers__header {
  margin-bottom: 56px;
  text-align: center;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: background 0.25s;
}
.stat-card:hover { background: rgba(255,255,255,0.09); }

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}
.stat-card__number span {
  font-size: 0.55em;
  vertical-align: middle;
  color: var(--sage-light);
  margin-left: 4px;
}

.stat-card__label {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,248,244,0.72);
}
.stat-card__label strong { color: var(--sage-light); font-weight: 500; }
.stat-card__source {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  color: var(--sage);
  margin-top: 12px;
}

.numbers__cta-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sage-light);
  text-align: center;
  margin-bottom: 28px;
}

.numbers { text-align: unset; }
.numbers .btn--light { display: block; width: fit-content; margin: 0 auto; }

/* ── FOUNDER ── */
.founder {
  padding: var(--section-pad);
  background: var(--warm-white);
}
.founder__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.founder__photo-col { position: sticky; top: 100px; padding-top: 20px; }
.founder__photo-frame { position: relative; margin-bottom: 28px; }
.founder__photo-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: 50% 8%;
  border-radius: 12px;
  display: block;
}
.founder__photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  background: var(--pink-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.founder__quote-card {
  background: var(--master-green);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border-left: 4px solid var(--pink);
}
.founder__pull-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 14px;
}
.founder__quote-attr {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
}

.founder__quote-cta {
  display: block;
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}
.founder__quote-card .btn--primary {
  background: var(--sage-light);
  color: var(--master-green);
}
.founder__quote-card .btn--primary:hover {
  background: #aecfc8;
  color: var(--master-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.founder__text-col { padding-top: 8px; }
.founder__bio p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.founder__bio em { color: var(--forest); font-style: italic; }
.founder__bio p:last-child { margin-bottom: 0; }

/* ── FIND CARE ── */
.find-care {
  padding: var(--section-pad);
  background: var(--cream);
}
.find-care__header {
  text-align: center;
  margin-bottom: 52px;
}
.find-care__sub {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 760px;
  margin: -16px auto 0;
}

/* ── PROVIDER SEARCH ── */
.care-search {
  margin-bottom: 32px;
}

.care-search__wrap {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}

.care-search__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage);
  pointer-events: none;
  flex-shrink: 0;
}

.care-search__input {
  width: 100%;
  padding: 14px 48px 14px 48px;
  border: 1.5px solid var(--border-ui);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.care-search__input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,168,152,0.15);
}
.care-search__input::placeholder { color: var(--ink-soft); }
.care-search__input::-webkit-search-decoration,
.care-search__input::-webkit-search-cancel-button { display: none; }

.care-search__clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.care-search__clear:hover { background: var(--sage); color: var(--warm-white); }

/* Search results */
.care-search-results {
  margin-bottom: 0;
}

.care-search-results__count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.care-search-results__count strong { color: var(--master-green); font-weight: 500; }

.care-search-no-results {
  text-align: center;
  padding: 56px 24px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.care-search-no-results p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--master-green);
  line-height: 1.6;
}

/* Category badge on search result cards */
.provider-card__cat-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--mint);
  border: 1px solid var(--sage-light);
  border-radius: 20px;
  padding: 3px 11px;
  margin-bottom: 8px;
}

.care-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.care-cat {
  background: var(--warm-white);
  border: 1.5px solid var(--border-ui);
  border-radius: var(--radius-lg);
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--master-green);
  transition: all 0.2s;
  position: relative;
}
.care-cat:hover {
  border-color: var(--sage);
  background: var(--mint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.care-cat.active {
  border-color: var(--master-green);
  background: var(--master-green);
  color: var(--cream);
}
.care-cat.active .care-cat__icon { color: var(--sage-light); }
.care-cat__icon { color: var(--master-green); transition: color 0.2s; }
.care-cat:hover .care-cat__icon { color: var(--forest); }
.care-cat__arrow { color: var(--ink-soft); margin-top: auto; }
.care-cat.active .care-cat__arrow { color: var(--sage-light); }

/* Drawer */
.care-drawer {
  display: none;
  margin-top: 12px;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  animation: drawerIn 0.25s ease;
}
.care-drawer.open { display: block; }

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

.care-drawer__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  transition: color 0.2s;
}
.care-drawer__back:hover { color: var(--master-green); }

.care-drawer__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--master-green);
  margin-bottom: 28px;
}

.care-subcats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.subcat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  text-align: left;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.subcat-card:hover {
  background: var(--mint);
  border-color: var(--sage);
  color: var(--master-green);
  transform: translateY(-1px);
}
.subcat-card::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  transition: background 0.2s;
}
.subcat-card:hover::before { background: var(--master-green); }

/* ── CHECKLIST ── */
.checklist-section {
  padding: var(--section-pad);
  background: var(--warm-white);
}
.checklist__header {
  text-align: center;
  margin-bottom: 52px;
}
.checklist__sub {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: -16px auto 0;
  line-height: 1.75;
}

.checklist__wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Progress */
.checklist__progress {
  border-bottom: 1px solid var(--border);
  background: var(--warm-white);
}
.progress__tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.progress__tab {
  flex: 1;
  min-width: 120px;
  padding: 18px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.progress__tab:hover { color: var(--master-green); }
.progress__tab.active {
  color: var(--master-green);
  border-bottom-color: var(--master-green);
}

.progress__bar {
  height: 3px;
  background: var(--sage-light);
}
.progress__fill {
  height: 100%;
  background: var(--master-green);
  transition: width 0.4s ease;
}

/* Sections */
.checklist__sections { padding: 40px; }
.checklist__section { display: none; }
.checklist__section.active { display: block; }

.checklist__section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--master-green);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Question blocks */
.checklist__questions { display: flex; flex-direction: column; gap: 24px; }

.q-block {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.q-block:focus-within { box-shadow: 0 0 0 2px var(--sage); }

.q-block__header {
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.q-toggle {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.toggle-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.toggle-btn:hover { border-color: var(--sage); color: var(--master-green); }
.toggle-btn.active {
  background: var(--master-green);
  color: var(--warm-white);
  border-color: var(--master-green);
}

.q-block__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}

.q-block__answer {
  border-top: 1px solid var(--border);
  padding: 0 24px 22px;
  animation: answerReveal 0.2s ease;
}
@keyframes answerReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.q-textarea {
  width: 100%;
  min-height: 96px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border-ui);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  resize: vertical;
  transition: border-color 0.2s;
}
.q-textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,168,152,0.22);
}
.q-textarea::placeholder { color: var(--ink-soft); }

/* Download block */
.checklist__download-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.download-card {
  background: var(--mint);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.download-card__icon { flex-shrink: 0; }
.download-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--master-green);
  margin-bottom: 6px;
}
.download-card p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  flex: 1;
  min-width: 200px;
}
.download-card .btn { flex-shrink: 0; white-space: nowrap; }
.download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn--ghost-green {
  background: transparent;
  color: var(--master-green);
  border: 1.5px solid var(--master-green);
}
.btn--ghost-green:hover { background: var(--master-green); color: var(--warm-white); }

/* Nav buttons */
.checklist__nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  background: var(--warm-white);
}
.checklist__nav .btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ── FOOTER ── */
.footer {
  background: var(--master-green);
  color: var(--cream);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.footer__descriptor {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(250,248,244,0.75);
  max-width: 220px;
  line-height: 1.6;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.footer__links a {
  font-size: 13px;
  color: rgba(250,248,244,0.80);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--cream); }
.footer__contact { text-align: right; }
.footer__contact p { font-size: 13px; color: rgba(250,248,244,0.75); margin-bottom: 8px; }
.footer__email {
  font-size: 14px;
  color: var(--sage-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer__email:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(250,248,244,0.65);
}
.footer__legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(250,248,244,0.65);
}
.footer__legal-links a {
  color: rgba(250,248,244,0.65);
  text-decoration: underline;
  font-family: var(--font-body);
}
.footer__legal-links a:hover { color: var(--cream); }
.footer__legal-links a:focus-visible {
  outline: 2px solid var(--sage-light);
  outline-offset: 3px;
  border-radius: 2px;
}
.footer__a11y-link {
  display: inline-block;
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(250,248,244,0.65);
  text-decoration: underline;
  cursor: pointer;
}
.footer__a11y-link:hover { color: var(--cream); }
.footer__a11y-link:focus-visible {
  outline: 2px solid var(--sage-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── CARE NONE FIT ── */
.care-none-fit {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 40px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.care-none-fit p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--master-green);
}

/* ── BIRD DIVIDER ── */
.bird-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  background: var(--cream);
}

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(27,58,47,0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 24px;
  color: var(--ink-soft);
  line-height: 1;
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-close:hover { color: var(--master-green); }

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--master-green);
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.65;
}

.modal-form { display: flex; flex-direction: column; gap: 18px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--ink-mid); }
.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border-ui);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--warm-white);
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,168,152,0.22);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field.has-error input,
.form-field.has-error textarea { border-color: #c0392b; }
.field-error {
  font-size: 12px;
  color: #c0392b;
  display: none;
}
.form-field.has-error .field-error { display: block; }
.req { color: #c0392b; font-size: 13px; }
.opt { font-weight: 400; color: var(--ink-soft); font-size: 12px; }

.modal-submit { width: 100%; justify-content: center; margin-top: 4px; }

.modal-confirm {
  text-align: left;
  padding: 12px 0 8px;
}
.modal-confirm p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--master-green);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mission__pillars { grid-template-columns: repeat(3, 1fr); }
  .care-categories { grid-template-columns: repeat(3, 1fr); }
  .founder__inner { grid-template-columns: 1fr; gap: 48px; }
  .founder__photo-col { position: static; max-width: 380px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__contact { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .founder__photo-img {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 8%;
  }

  .hero__layout {
    gap: 40px;
  }
  .hero__brand-name { display: none; }
  .hero__brand-img {
    display: block;
    max-width: 360px;
    height: auto;
    margin: 0 auto 20px;
  }
  .hero__headline { font-size: 2.1rem; }
  .hero__sub { font-size: 15px; }

  .modal-box { padding: 36px 24px; }
  .care-none-fit { padding: 24px 20px; }

  .mission__pillars { grid-template-columns: 1fr; gap: 16px; }
  .numbers__grid { grid-template-columns: 1fr; }
  .care-categories { grid-template-columns: repeat(2, 1fr); }
  .care-subcats { grid-template-columns: repeat(2, 1fr); }

  .checklist__sections { padding: 24px 20px; }
  .checklist__nav { padding: 16px 20px; }
  .q-block__header { flex-direction: column; gap: 14px; }
  .download-card { flex-direction: column; }
  .download-card .btn { width: 100%; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__contact { text-align: left; }
  .footer__links { flex-direction: row; flex-wrap: wrap; gap: 16px; text-align: left; justify-content: flex-start; }

  body { display: flex; flex-direction: column; }
  .hero              { order: 1; }
  .find-care         { order: 2; }
  .mission           { order: 3; }
  .bird-divider      { order: 4; }
  .founder           { order: 5; }
  .numbers           { order: 6; }
  .checklist-section { order: 7; }
  .results-section   { order: 8; }
  .footer            { order: 9; }
}

@media (max-width: 480px) {
  .care-categories { grid-template-columns: repeat(2, 1fr); }
  .care-subcats { grid-template-columns: 1fr 1fr; }
  .care-drawer { padding: 24px 20px; }
  .stat-card { padding: 28px 24px; }
  .progress__tab { font-size: 12px; padding: 14px 10px; }
}

/* ── CHECKBOX CHECKLIST ── */
.q-block {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.q-block:has(.q-checkbox:checked) {
  border-color: var(--sage);
}
.q-block:focus-within { box-shadow: 0 0 0 2px var(--sage); }

.q-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}

.q-check-wrap {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.q-checkbox {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.q-check-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-ui);
  border-radius: 5px;
  background: var(--cream);
  transition: all 0.18s ease;
  pointer-events: none;
}
.q-check-box svg { opacity: 0; color: var(--warm-white); transition: opacity 0.15s; }

.q-checkbox:focus-visible ~ .q-check-box {
  outline: 2px solid var(--master-green);
  outline-offset: 2px;
}
.q-checkbox:checked ~ .q-check-box {
  background: var(--master-green);
  border-color: var(--master-green);
}
.q-checkbox:checked ~ .q-check-box svg { opacity: 1; }

.q-label:hover .q-check-box {
  border-color: var(--sage);
  background: var(--mint);
}
.q-checkbox:checked:hover ~ .q-check-box {
  background: var(--forest);
  border-color: var(--forest);
}

.q-block__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
  padding-top: 1px;
}

/* Progressive disclosure answer area */
.q-block__answer {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease, visibility 0s linear 0.35s;
  padding: 0 24px;
  border-top: 0px solid var(--border);
}
.q-block__answer.revealed {
  max-height: 200px;
  visibility: visible;
  transition: max-height 0.35s ease, padding 0.3s ease, visibility 0s linear 0s;
  padding: 0 24px 20px;
  border-top-width: 1px;
  border-top-color: var(--border);
  border-top-style: solid;
}
.q-block__answer .q-textarea { margin-top: 14px; }

/* ── CHECKLIST RESULTS CTA ── */
.checklist__results-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 40px;
  background: var(--mint);
  border-top: 1px solid var(--sage-light);
  flex-wrap: wrap;
}
.checklist__results-desc {
  font-size: 14px;
  color: var(--ink-mid);
  flex: 1;
  min-width: 200px;
}
.checklist__results-btn { flex-shrink: 0; }

/* Checklist nav — 3 buttons */
.checklist__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  background: var(--warm-white);
  gap: 12px;
}

/* ── MODAL CLOSE SVG ── */
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--mint); color: var(--master-green); }

/* ── CONTACT PREFERENCE RADIOS ── */
.form-label-block {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 8px;
}
.contact-pref-group {
  display: flex;
  gap: 20px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
  cursor: pointer;
}
.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.radio-label input[type="radio"]:focus-visible ~ .radio-custom {
  outline: 2px solid var(--master-green);
  outline-offset: 2px;
}
.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-ui);
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  transition: all 0.15s;
  position: relative;
}
.radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--master-green);
  opacity: 0;
  transition: opacity 0.15s;
}
.radio-label input[type="radio"]:checked ~ .radio-custom {
  border-color: var(--master-green);
}
.radio-label input[type="radio"]:checked ~ .radio-custom::after { opacity: 1; }

/* ── RESULTS SECTION ── */
.results-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.results-path { animation: fadeSlideUp 0.4s ease; }

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

/* Path A */
.results-empathy-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.results-empathy-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--master-green);
  margin: 24px 0 40px;
}
.results-booking-card {
  background: var(--master-green);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: inline-block;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.results-booking-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.results-booking-sub {
  font-size: 14px;
  color: rgba(250,248,244,0.65);
  margin-bottom: 24px;
}
.results-booking-inner .btn--primary {
  background: var(--sage-light);
  color: var(--master-green);
}
.results-booking-inner .btn--primary:hover {
  background: #aecfc8;
  color: var(--master-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Path B */
.results-path-b__header { margin-bottom: 36px; text-align: center; }
.results-path-b__header .results-empathy-text { font-size: clamp(1.275rem, 2.5vw, 1.575rem); }

.provider-match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.provider-match-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.provider-match-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.provider-match-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--master-green);
}
.provider-match-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.provider-match-card__list li {
  font-size: 14px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.provider-match-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 6px;
}
.provider-match-card__btn { width: 100%; justify-content: center; }

.results-complete-card {
  text-align: center;
  padding: 40px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--master-green);
  line-height: 1.65;
}

.results-escape-valve {
  text-align: center;
  padding-top: 8px;
}
.results-escape-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--forest);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.results-escape-link:hover { color: var(--master-green); }

/* ── FOOTER ADDITIONS ── */
.footer__location {
  font-size: 12px;
  color: rgba(250,248,244,0.65);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.footer__disclaimer {
  font-size: 11px;
  color: rgba(250,248,244,0.65);
  max-width: 680px;
  margin: 8px auto 0;
  line-height: 1.6;
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 768px) {
  .checklist__results-cta { padding: 20px; flex-direction: column; align-items: flex-start; }
  .checklist__nav { padding: 16px 20px; flex-wrap: wrap; }
  .results-booking-card { padding: 28px 24px; }
  .q-label { padding: 16px 18px; }
  .q-block__answer.revealed { padding: 0 18px 18px; }
}

@media (max-width: 480px) {
  .contact-pref-group { flex-direction: column; gap: 12px; }
  .provider-match-grid { grid-template-columns: 1fr; }
}

/* ── SECTION 3 FINAL CARDS ── */
.checklist__final-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.final-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.final-card--featured {
  background: var(--master-green);
}
.final-card--plain {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
}

.final-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  background: rgba(196,221,214,0.14);
  border: 1px solid rgba(196,221,214,0.28);
  border-radius: 20px;
  padding: 5px 13px;
  width: fit-content;
}

.final-card__icon {
  color: var(--master-green);
}

.final-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
.final-card--featured .final-card__title { color: var(--cream); }
.final-card__title--dark { color: var(--ink); }

.final-card__desc {
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.final-card--featured .final-card__desc { color: rgba(250,248,244,0.68); }
.final-card__desc--dark { color: var(--ink-mid); }

.final-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
  border: none;
}
.final-card__btn--featured {
  background: var(--forest);
  color: var(--cream);
}
.final-card__btn--featured:hover { background: #1f3c2c; transform: translateY(-1px); }
.final-card__btn--plain {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(27,58,47,0.22);
}
.final-card__btn--plain:hover { background: var(--cream); border-color: var(--ink-mid); }

/* Path B — schedule card */
.results-schedule-card {
  margin-top: 32px;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.results-schedule-card__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--master-green);
  line-height: 1.55;
}
.results-schedule-card__btn { width: 100%; justify-content: center; }

@media (max-width: 600px) {
  .checklist__final-cards { grid-template-columns: 1fr; }
}

/* ── SPINNER ── */
.modal-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0;
}
.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid var(--sage-light);
  border-top-color: var(--master-green);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── PATH A: BOOKING CARD UPDATES ── */
.results-consent-copy {
  font-size: 11.5px;
  color: rgba(250,248,244,0.72);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.results-booking-confirm {
  padding: 32px 0 8px;
  text-align: center;
}
.results-booking-confirm p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--sage-light);
  line-height: 1.6;
}

/* ── FOOTER: "Based in Southern California" on right ── */
.footer__contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.footer__contact p { margin-bottom: 0; }
.footer__email { margin-bottom: 0; }
.footer__location {
  font-size: 11.5px;
  color: rgba(250,248,244,0.65);
  letter-spacing: 0.05em;
  margin-top: 20px;
}

/* Breathing room below email (right column) */
.footer__contact .footer__email {
  margin-bottom: 4px;
}

/* Override old footer__contact rule from earlier block */
@media (max-width: 1024px) {
  .footer__contact { align-items: flex-start; text-align: left; }
}
@media (max-width: 768px) {
  .footer__contact { align-items: flex-start; text-align: left; }
}

/* ── PROVIDER CARDS ── */
.care-drawer__count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-mid);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.provider-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Span full width of the care-subcats 3-col grid */
.provider-cards-grid,
.care-coming-soon {
  grid-column: 1 / -1;
}

.provider-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.provider-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
  transition: all 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .provider-card:hover {
    transform: translateY(-2px);
    border-color: var(--sage-light);
    box-shadow: 0 8px 24px rgba(27, 58, 47, 0.08);
  }
  .provider-card:hover .provider-card__connect {
    background: var(--master-green);
  }
}

.provider-card__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.provider-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.provider-card__initials {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.provider-card__initials-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  pointer-events: none;
}

.provider-card__info {
  flex: 1;
  min-width: 0;
}
.provider-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--master-green);
  margin-bottom: 2px;
}
.provider-card__company {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 2px;
}
.provider-card__specialty {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--sage);
  font-style: italic;
  margin-bottom: 8px;
}
.provider-card__bio {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mid);
  margin-bottom: 8px;
}
.provider-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--ink-mid);
}
.provider-card__location-icon {
  flex-shrink: 0;
  color: var(--sage);
}
.provider-card__loc-sep {
  color: var(--ink-mid);
  opacity: 0.45;
  margin-left: 1px;
}
.provider-card__bio-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--forest);
  cursor: pointer;
  text-decoration: none;
  line-height: inherit;
  margin-left: 1px;
}
.provider-card__bio-link:hover {
  text-decoration: underline;
}
.provider-card__bio-link:focus-visible {
  text-decoration: underline;
  outline: 2px solid var(--master-green);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Bio modal */
.bio-modal-box { max-width: 580px; }
.bio-modal__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink);
  margin-top: 4px;
}

.provider-card__connect {
  flex-shrink: 0;
  width: 130px;
  min-height: 44px;
  padding: 12px 0;
  background: var(--forest);
  color: var(--warm-white);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
  .provider-card__connect:hover {
    background: var(--master-green);
    transform: scale(1.02);
    text-decoration: underline;
    text-decoration-color: var(--pink);
    text-underline-offset: 3px;
  }
}

.provider-card__connect:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

/* ── COMING SOON EMPTY STATE ── */
.care-coming-soon {
  text-align: center;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.care-coming-soon__badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--mint);
  border: 1px solid var(--sage-light);
  border-radius: 20px;
  padding: 5px 14px;
}
.care-coming-soon__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--master-green);
  line-height: 1.5;
}
.care-coming-soon__link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.18s;
}
.care-coming-soon__link:hover { color: var(--master-green); }

/* ── CONNECT MODAL ── */
.connect-radio-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.connect-radio-fieldset legend {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 10px;
  float: left;
  width: 100%;
}
.connect-honeypot { display: none; }

.connect-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .connect-name-row { grid-template-columns: 1fr; }
}

.connect-confirm-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--master-green);
  margin: 0 0 10px;
}
.connect-confirm-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── RESPONSIVE: provider cards (mobile vertical) ── */
@media (max-width: 600px) {
  .provider-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .provider-card__info { width: 100%; }
  .provider-card__connect {
    width: 100%;
    min-height: 44px;
  }
}

/* ── BRANDED FOCUS RINGS ── */
/* Double ring (white inner + dark outer) works on any background color */
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--warm-white), 0 0 0 4px var(--master-green);
}
.nav__hamburger:focus-visible,
.modal-close:focus-visible,
.care-drawer__back:focus-visible,
.care-search__clear:focus-visible,
.care-coming-soon__link:focus-visible {
  outline: 2px solid var(--master-green);
  outline-offset: 2px;
  border-radius: 4px;
}
.nav__links a:focus-visible,
.mobile-link:focus-visible {
  outline: 2px solid var(--master-green);
  outline-offset: 3px;
  border-radius: 2px;
}
.footer__links a:focus-visible {
  outline: 2px solid var(--sage-light);
  outline-offset: 3px;
  border-radius: 2px;
}
.progress__tab:focus-visible {
  outline: 2px solid var(--master-green);
  outline-offset: 2px;
}
.care-cat:focus-visible {
  outline: 2px solid var(--master-green);
  outline-offset: 3px;
}
.final-card__btn--featured:focus-visible {
  outline: 2px solid var(--sage-light);
  outline-offset: 3px;
}
.final-card__btn--plain:focus-visible {
  outline: 2px solid var(--master-green);
  outline-offset: 3px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .progress__fill { transition: none; }
}
