/* =================================================================
   Healthy Minds for Healthy Homes, Dezirae Hatchell, LPC
   Design tokens and components
   Palette: warm cream paper, sage, clay, warm charcoal
   Type: Newsreader (serif display) + Hanken Grotesk (sans UI)
================================================================= */

:root {
  /* --- Color --- */
  --paper:        #F5F0E8;   /* page base, warm cream */
  --paper-soft:   #FBF8F3;   /* lifted panels */
  --white:        #FFFFFF;
  --ink:          #2E2B26;   /* warm near-black text */
  --ink-soft:     #57514792; /* muted, transparent for layering */
  --muted:        #6B6359;   /* secondary text */
  --line:         #E4DCCF;   /* hairline borders */
  --line-strong:  #D9CEBD;

  --sage:         #7C8C6F;   /* primary accent */
  --sage-deep:    #54624A;   /* CTA / strong */
  --sage-deeper:  #404B38;
  --sage-tint:    #E7EBE0;   /* soft fills */
  --sage-tint-2:  #DCE3D2;

  --clay:         #C9A98A;   /* warm secondary */
  --clay-deep:    #B0865F;
  --clay-tint:    #EFE2D2;
  --clay-tint-2:  #E7D6C2;

  /* --- Type --- */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* --- Radius / shadow --- */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(46,43,38,.04), 0 2px 8px rgba(46,43,38,.05);
  --shadow:    0 4px 14px rgba(46,43,38,.06), 0 12px 40px rgba(46,43,38,.07);
  --shadow-lg: 0 10px 30px rgba(46,43,38,.10), 0 30px 80px rgba(46,43,38,.12);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
/* visually hidden but available to screen readers and crawlers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 3px; border-radius: 4px; }

/* =================================================================
   Typography
================================================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--clay-deep);
}
.eyebrow.center::after {
  content: "";
  width: 22px; height: 1px;
  background: var(--clay-deep);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.18; }
.serif-italic { font-style: italic; }
em, .accent-italic { font-style: italic; color: var(--clay-deep); }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--muted);
}
.section-intro { max-width: 620px; }
.section-intro p { color: var(--muted); margin-top: 16px; font-size: 1.12rem; }

/* =================================================================
   Layout helpers
================================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section-tight { padding-block: clamp(40px, 5vw, 64px); }

/* =================================================================
   Buttons
================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap; line-height: 1; text-align: center;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--sage-deep); color: #F7F4EC;
  box-shadow: 0 2px 0 var(--sage-deeper), var(--shadow-sm);
}
.btn-primary:hover { background: var(--sage-deeper); transform: translateY(-2px); box-shadow: 0 4px 0 var(--sage-deeper), var(--shadow); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 0 var(--sage-deeper); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--sage); background: var(--sage-tint); transform: translateY(-2px); }
.btn-light {
  background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* =================================================================
   Header / Nav
================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,240,232,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(46,43,38,.05);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 52px; width: auto; }
.brand-mark { height: 46px; width: 46px; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name b { font-family: var(--serif); font-weight: 500; font-size: 1.22rem; letter-spacing: -.01em; color: var(--ink); }
.brand-name > span { font-family: var(--sans); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 14px; border-radius: 999px; font-size: .96rem; font-weight: 500; color: var(--muted);
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--sage-tint); }
.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; }
.nav-toggle:hover { background: var(--sage-tint); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .25s; }
.nav-toggle span::before, .nav-toggle span::after { content:""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .25s; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 55;
  background: var(--paper);
  padding: 24px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
body.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a:not(.btn) { padding: 16px 6px; font-size: 1.3rem; font-family: var(--serif); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 24px; }

/* =================================================================
   Hero (centered)
================================================================= */
.hero {
  padding-top: clamp(64px, 11vw, 132px); padding-bottom: clamp(64px, 11vw, 132px);
  text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(700px 460px at 84% 6%, rgba(201,169,138,.30), transparent 62%),
    radial-gradient(620px 460px at 8% 96%, rgba(176,134,95,.16), transparent 60%),
    radial-gradient(680px 520px at 50% -12%, rgba(124,140,111,.14), transparent 68%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
}
/* soft abstract shape, low-contrast, sits behind the text */
.hero::before {
  content: ""; position: absolute; z-index: 0;
  width: 560px; height: 560px; right: -160px; top: -180px;
  background: radial-gradient(closest-side, rgba(124,140,111,.16), transparent 70%);
  border-radius: 48% 52% 60% 40% / 52% 44% 56% 48%;
  filter: blur(6px); pointer-events: none;
}
.hero .wrap { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.hero-inner { max-width: 880px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { max-width: 56ch; margin-top: 4px; color: var(--muted); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; margin-top: 34px; }

/* =================================================================
   Trust strip + award badge
================================================================= */
.trust { background: var(--ink); color: #EDE7DB; }
.trust .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 22px; text-align: center;
}
.trust-item { display: inline-flex; gap: 10px; align-items: center; font-size: .98rem; }
.trust-item svg { width: 20px; height: 20px; color: var(--clay); flex: none; }
.trust-dot { color: #6f675c; font-weight: 700; }

.award-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: .82rem; line-height: 1.25;
  letter-spacing: .01em; text-align: left;
  padding: 8px 15px; border-radius: 999px;
  color: #F1EFE3; background: rgba(201,169,138,.16);
  border: 1px solid rgba(201,169,138,.55);
}
.award-badge svg { width: 17px; height: 17px; color: var(--clay); flex: none; }
.award-badge.dark {
  color: var(--sage-deep); background: var(--sage-tint);
  border-color: var(--sage-tint-2); margin-top: 20px;
}
.award-badge.dark svg { color: var(--clay-deep); }

/* =================================================================
   Specialties
================================================================= */
.spec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(36px, 4vw, 56px); flex-wrap: wrap; }
.spec-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--sage-tint); margin-bottom: 20px; }
.card-icon svg { width: 24px; height: 24px; color: var(--sage-deep); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 1rem; }
.card .tag { position: absolute; top: 22px; right: 22px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--clay-deep); }
.optional-tag { font-family: var(--sans); font-size: .62em; color: var(--clay-deep); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; vertical-align: middle; }

/* feature spans */
.span-3 { grid-column: span 3; }
.span-2 { grid-column: span 2; }
.span-6 { grid-column: span 6; }

/* lead couples card */
.card.lead { background: var(--sage-deep); color: #EFEEE4; border-color: var(--sage-deep); }
.card.lead .card-icon { background: rgba(255,255,255,.14); }
.card.lead .card-icon svg { color: #F1EFE3; }
.card.lead p { color: #D6DBCB; }
.card.lead .tag { color: var(--clay-tint); }

/* women's health feature card */
.card.women { background: linear-gradient(150deg, var(--clay-tint) 0%, var(--paper-soft) 70%); border-color: var(--clay-tint-2); }
.card.women .card-icon { background: rgba(176,134,95,.16); }
.card.women .card-icon svg { color: var(--clay-deep); }

/* =================================================================
   About / story
================================================================= */
.bio { background: var(--paper-soft); border-block: 1px solid var(--line); }
.bio-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.bio-photo-wrap { position: relative; }
.bio-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 22%;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.bio-credential {
  position: absolute; right: -18px; bottom: 32px;
  background: var(--white); border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--shadow); text-align: left; max-width: 250px;
}
.bio-credential b { font-family: var(--serif); font-size: 1.3rem; display: block; line-height: 1; }
.bio-credential span { font-size: .82rem; color: var(--muted); }
.bio-lead {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 1.8rem); line-height: 1.34;
  margin: 18px 0 8px; color: var(--ink); font-style: italic;
}
.bio p { color: var(--muted); margin-top: 16px; font-size: 1.08rem; }
.bio .bio-lead { color: var(--ink); }
.bio-sign { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.bio-sign .name { font-family: var(--serif); font-size: 1.5rem; }
.bio-sign .role { font-size: .86rem; color: var(--muted); }

/* =================================================================
   How it works
================================================================= */
.how-intro { text-align: center; margin-inline: auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(36px, 4vw, 56px); position: relative; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px); position: relative;
}
.step-num {
  font-family: var(--serif); font-size: 1rem; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--sage-tint); color: var(--sage-deep);
  font-weight: 500; margin-bottom: 22px; border: 1px solid var(--sage-tint-2);
}
.step h3 { margin-bottom: 10px; font-size: clamp(1.2rem, 2vw, 1.45rem); }
.step p { color: var(--muted); }
.step-arrow { position: absolute; top: 50%; right: -28px; transform: translateY(-50%); color: var(--line-strong); z-index: 2; }
.step-arrow svg { width: 22px; height: 22px; }
.howto-cta { text-align: center; margin-top: clamp(40px, 5vw, 60px); }

/* =================================================================
   Testimonials
================================================================= */
.testimonials { background: var(--sage-deep); color: #EFEEE4; }
.testimonials .eyebrow { color: var(--clay-tint); }
.testimonials .eyebrow::before, .testimonials .eyebrow.center::after { background: var(--clay); }
.testimonials h2 { color: #F3F1E7; }
.t-rating {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
  margin-top: clamp(20px, 3vw, 30px);
}
.t-rating-stars { color: var(--clay-tint); letter-spacing: 4px; font-size: 1.5rem; line-height: 1; }
.t-rating-text { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: #F4F1E8; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(28px, 3.5vw, 44px); }
.t-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column;
  backdrop-filter: blur(4px); position: relative;
}
.t-tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: #CBD3BE; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 4px 9px; border-radius: 999px;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--clay-tint); letter-spacing: 2px; }
.t-card blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.45; color: #F1EFE6; flex: 1; }
.t-meta { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.t-meta .av { width: 40px; height: 40px; border-radius: 50%; background: var(--clay); flex: none; }
.t-meta b { font-size: .95rem; color: #F3F1E7; display: block; }
.t-meta span { font-size: .82rem; color: #C5CCB8; }
.t-note { margin-top: 28px; font-size: .85rem; color: #C5CCB8; font-family: var(--mono); }

/* =================================================================
   FAQ
================================================================= */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 4px; font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.4rem); color: var(--ink);
}
.faq-icon { width: 30px; height: 30px; flex: none; position: relative; display: grid; place-items: center; }
.faq-icon::before, .faq-icon::after { content:""; position: absolute; background: var(--sage-deep); border-radius: 2px; transition: transform .28s ease; }
.faq-icon::before { width: 15px; height: 2px; }
.faq-icon::after  { width: 2px; height: 15px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg) scaleX(0); }
.faq-a { overflow: hidden; height: 0; transition: height .32s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 4px 28px; color: var(--muted); font-size: 1.05rem; max-width: 60ch; }
.faq-a-inner strong { color: var(--ink); font-weight: 600; }
.faq-aside {
  background: var(--paper-soft); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px); position: sticky; top: 100px;
}
.faq-aside h3 { margin-bottom: 12px; }
.faq-aside p { color: var(--muted); margin-bottom: 22px; }

/* =================================================================
   Final CTA
================================================================= */
.final { background: var(--ink); color: #EDE7DB; overflow: hidden; position: relative; }
.final::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(900px 380px at 80% -10%, rgba(124,140,111,.30), transparent 60%),
              radial-gradient(700px 320px at 0% 120%, rgba(176,134,95,.22), transparent 60%);
  pointer-events: none;
}
.final .wrap { position: relative; text-align: center; max-width: 800px; }
.final .eyebrow { color: var(--clay-tint); }
.final .eyebrow::before, .final .eyebrow.center::after { background: var(--clay); }
.final h2 { color: #F4F1E8; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 22px; }
.final p { color: #C3BBAC; font-size: 1.18rem; max-width: 52ch; margin: 0 auto 36px; }
.final-cta { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; text-align: center; }
.final p.final-note { margin: 26px auto 0; text-align: center; font-size: .9rem; color: #9C9486; }

/* =================================================================
   Footer
================================================================= */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 72px) 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; }
.footer .brand-logo { height: 56px; }
.footer-col h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: .96rem; margin-bottom: 10px; }
.footer-col a:not(.book-link):hover { color: var(--ink); }
.footer-col a.book-link { font-weight: 600; color: var(--sage-deep); margin-top: 4px; }
.footer-col a.book-link:hover { color: var(--sage-deeper); }
.footer-fine { font-size: .82rem; color: #8B8275; font-weight: 400; }
.footer-col a.footer-email { display: inline; margin: 0; color: var(--sage-deep); font-weight: 600; word-break: break-all; }
.footer-col a.footer-email:hover { color: var(--sage-deeper); }
.footer-blurb { color: var(--muted); font-size: .98rem; max-width: 38ch; margin-top: 16px; }
.footer-note { margin-top: clamp(32px, 4vw, 44px); font-size: .9rem; color: var(--muted); max-width: 70ch; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
.footer-disclaimer { max-width: 72ch; font-size: .82rem; color: #8B8275; margin-top: 14px; line-height: 1.5; }

/* =================================================================
   Contact form
================================================================= */
.contact { background: var(--paper-soft); border-top: 1px solid var(--line); }
.contact-card {
  max-width: 640px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow);
}
.contact-intro { max-width: none; text-align: center; margin-inline: auto; margin-bottom: clamp(24px, 3vw, 34px); }
.contact-intro p { margin-top: 12px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line-strong);
  background: var(--white); font: inherit; color: var(--ink); transition: border-color .18s;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--sage); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #A79E90; }
.field-note { margin-top: 8px; font-size: .82rem; color: var(--muted); line-height: 1.45; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.contact-form .btn { margin-top: 8px; }
.form-status { margin-top: 16px; text-align: center; font-size: .98rem; min-height: 1.2em; }
.form-status.sending { color: var(--muted); }
.form-status.ok { color: var(--sage-deep); font-family: var(--serif); font-size: 1.25rem; }
.form-status.err { color: var(--clay-deep); }
.form-confirm { text-align: center; color: var(--sage-deep); font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.35; margin-top: 8px; }
.form-confirm[hidden] { display: none; }

/* =================================================================
   Reveal animations. Content is VISIBLE BY DEFAULT; hidden state only
   applies once JS confirms it can animate (html.anim-on) AND motion is allowed.
================================================================= */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.anim-on .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  html.anim-on .reveal.in { opacity: 1; transform: none; }
}

/* =================================================================
   Responsive
================================================================= */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn-primary { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col.about { grid-column: span 2; }
}
@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-photo-wrap { max-width: 440px; margin-inline: auto; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .span-3, .span-2, .span-6 { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .t-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .spec-grid { grid-template-columns: 1fr; }
  .span-3, .span-2, .span-6 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col.about { grid-column: span 1; }
  .hero-cta-row .btn { width: 100%; }
  .bio-credential { right: 12px; }
  .award-badge { font-size: .78rem; }
}
