/* =====================================================================
   Nova Roots Fertility — hand-written stylesheet
   Direction: "The growing stem" — warm porcelain, deep aubergine, lilac,
   a warm apricot glow, and green kept only in the photography.
   Type: Newsreader (display, italics for emphasis) + Hanken Grotesk (body)
   ===================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Tokens ---------- */
:root {
  --porcelain: #FBF7F4;      /* warm oat page background */
  --porcelain-2: #F5EEF4;    /* faint lilac wash */
  --mist: #EFE3F1;           /* lilac-tinted card surface */
  --ink: #22163A;            /* deep aubergine — primary text + dark sections */
  --ink-2: #34235C;          /* mid aubergine */
  --aubergine-deep: #1A1030; /* deepest, for gradient floor */
  --lilac: #C79BE8;          /* decorative accent */
  --lilac-soft: #E4CDF3;
  --grape: #6B3FA0;          /* accessible accent for links / small text */
  --clay: #E4A17C;           /* warm apricot glow */
  --clay-ink: #B0653B;       /* accessible apricot text */
  --line: #E7DDE8;           /* hairline on light */
  --line-dark: rgba(231,221,232,0.16);
  --text: #2A1F3C;           /* body text on light */
  --muted: #5E5270;          /* secondary text on light */
  --muted-dark: #C9BBD8;     /* secondary text on dark */

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(34,22,58,0.06);
  --shadow: 0 22px 60px -28px rgba(34,22,58,0.35);
  --shadow-lift: 0 34px 80px -34px rgba(34,22,58,0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  background: var(--porcelain);
  color: var(--text);
  line-height: 1.6;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
em, .it { font-style: italic; }
strong { font-weight: 600; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* Section rhythm — one place declares padding */
.section { padding-block: clamp(72px, 11vw, 132px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 84px); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--porcelain);
  padding: 10px 18px; border-radius: 10px; text-decoration: none; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip:focus { top: 16px; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--grape);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grape);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .55;
}
.eyebrow--center { justify-content: center; }
.on-dark .eyebrow { color: var(--lilac); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .82em; --pad-x: 1.5em;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-solid { background: var(--ink); color: var(--porcelain); box-shadow: var(--shadow-sm); }
.btn-solid:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(34,22,58,0.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(34,22,58,0.22); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lilac { background: var(--lilac); color: var(--ink); }
.btn-lilac:hover { background: var(--lilac-soft); transform: translateY(-2px); }
.on-dark .btn-solid { background: var(--porcelain); color: var(--ink); }
.on-dark .btn-solid:hover { background: #fff; }
.on-dark .btn-ghost { color: var(--porcelain); border-color: rgba(251,247,244,0.32); }
.on-dark .btn-ghost:hover { border-color: var(--porcelain); }

.arrow-link {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--grape); text-decoration: none;
}
.arrow-link svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }
.on-dark .arrow-link { color: var(--lilac); }

/* =====================================================================
   Header / nav
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--porcelain) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: .6em; text-decoration: none; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em; }
.brand__name span { color: var(--grape); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  text-decoration: none; color: var(--muted); font-weight: 500; font-size: .96rem;
  padding: 8px 14px; border-radius: 100px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--porcelain-2); }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--porcelain); border-radius: 12px; cursor: pointer;
  position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; transform: translate(-50%,-50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span::before { transform: translate(-50%,-7px); }
.nav__toggle span::after { transform: translate(-50%,7px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%,0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translate(-50%,0) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; overflow: hidden; }
.hero::before {
  /* soft lilac dawn glow behind the copy */
  content: ""; position: absolute; inset: -20% 40% 30% -20%;
  background: radial-gradient(60% 60% at 40% 40%, rgba(199,155,232,0.30), transparent 70%);
  filter: blur(10px); pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero__eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 1.02; letter-spacing: -0.02em; font-weight: 400;
}
.hero h1 em { color: var(--grape); font-weight: 400; }
.hero__lead {
  margin-top: 26px; max-width: 32ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted);
}
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__honest {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: var(--muted); max-width: 42ch;
}
.hero__honest svg { flex: none; width: 22px; height: 22px; margin-top: 2px; color: var(--clay-ink); }

/* hero media — arched frame with growing sprout accent */
.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,22,58,0) 55%, rgba(34,22,58,0.28));
}
.hero__badge {
  position: absolute; left: -18px; bottom: 34px; z-index: 2;
  background: var(--porcelain); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero__badge .sprout { width: 30px; height: 30px; flex: none; }
.hero__badge b { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.hero__badge small { display: block; color: var(--muted); font-size: .82rem; line-height: 1.35; }

/* =====================================================================
   Honest strip / expectations
   ===================================================================== */
.honest { background: var(--porcelain-2); border-block: 1px solid var(--line); }
.honest__grid { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.honest__statement { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.24; color: var(--ink); }
.honest__statement em { color: var(--grape); }
.chips { display: grid; gap: 14px; }
.chip {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  background: var(--porcelain); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.chip__icon {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: var(--mist); color: var(--grape);
  display: grid; place-items: center;
}
.chip__icon svg { width: 22px; height: 22px; }
.chip h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.chip p { font-size: .92rem; color: var(--muted); margin: 0; }

/* =====================================================================
   Section headers
   ===================================================================== */
.s-head { max-width: 60ch; }
.s-head--center { margin-inline: auto; text-align: center; }
.s-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 16px; }
.s-head p { margin-top: 16px; color: var(--muted); font-size: 1.08rem; max-width: 56ch; }
.s-head--center p { margin-inline: auto; }

/* =====================================================================
   Care / treatments
   ===================================================================== */
.care__grid {
  margin-top: clamp(38px, 5vw, 62px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.care-card {
  position: relative; background: var(--porcelain-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px 32px;
  display: flex; flex-direction: column; min-height: 260px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.care-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.care-card__num {
  font-family: var(--serif); font-style: italic; color: var(--lilac);
  font-size: 1.05rem; letter-spacing: .02em;
}
.care-card h3 { font-size: 1.5rem; margin-top: 14px; }
.care-card p { margin-top: 12px; color: var(--muted); font-size: .96rem; }
.care-card__foot { margin-top: auto; padding-top: 20px; }

/* wide feature card spanning + image */
.care-card--feature {
  grid-column: span 2; flex-direction: row; align-items: stretch;
  background: var(--ink); color: var(--porcelain); border-color: transparent;
  overflow: hidden; padding: 0;
}
.care-card--feature .care-feat__body { padding: 34px clamp(24px, 3vw, 40px); display: flex; flex-direction: column; }
.care-card--feature h3 { color: var(--porcelain); font-size: clamp(1.6rem, 2.4vw, 2rem); }
.care-card--feature p { color: var(--muted-dark); }
.care-card--feature .care-card__num { color: var(--lilac); }
.care-feat__media { flex: none; width: 42%; position: relative; min-height: 240px; }
.care-feat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.care-feat__media::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(34,22,58,.55), transparent 40%); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(199,155,232,0.16); color: var(--lilac-soft);
  border: 1px solid rgba(199,155,232,0.28);
}

/* =====================================================================
   Journey — the growing stem (signature)
   ===================================================================== */
.journey { background: var(--porcelain-2); border-block: 1px solid var(--line); overflow: hidden; }
.journey__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 70px); }
.journey__intro { position: sticky; top: 108px; align-self: start; }
.journey__intro .btn { margin-top: 26px; }

.stem { position: relative; padding-left: 54px; }
.stem__rail {
  position: absolute; left: 19px; top: 14px; bottom: 14px; width: 3px;
  border-radius: 3px; background: var(--line); overflow: hidden; pointer-events: none;
}
.stem__grow {
  position: absolute; left: 0; top: 0; width: 100%; height: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--lilac), var(--clay));
  transition: height .18s var(--ease);
}

.step { position: relative; padding-block: clamp(20px, 3vw, 30px); }
.step:first-child { padding-top: 4px; }
.step:last-child { padding-bottom: 4px; }
.step__node {
  position: absolute; left: -54px; top: calc(clamp(20px,3vw,30px) + 4px);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--porcelain); border: 2px solid var(--lilac);
  display: grid; place-items: center; z-index: 2;
  box-shadow: 0 0 0 6px var(--porcelain-2);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.step__node b { font-family: var(--serif); font-style: italic; color: var(--grape); font-size: 1.05rem; }
.step.is-in .step__node { background: var(--lilac); border-color: var(--lilac); transform: scale(1.06); }
.step.is-in .step__node b { color: var(--ink); }
.step__kicker { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-ink); }
.step h3 { font-size: 1.5rem; margin-top: 6px; }
.step p { margin-top: 10px; color: var(--muted); max-width: 46ch; }
.step__note { margin-top: 12px; font-style: italic; font-family: var(--serif); color: var(--ink); opacity: .8; }

/* =====================================================================
   Success & honesty (dark)
   ===================================================================== */
.on-dark, .success { color: var(--porcelain); }
.success {
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(199,155,232,0.22), transparent 55%),
    linear-gradient(160deg, var(--ink) 0%, var(--aubergine-deep) 100%);
  overflow: hidden;
}
.success h2, .success h3 { color: var(--porcelain); }
.success__grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.pullquote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.24; letter-spacing: -0.01em;
  color: var(--porcelain);
}
.pullquote em { color: var(--lilac); }
.success__body p { margin-top: 22px; color: var(--muted-dark); font-size: 1.05rem; max-width: 48ch; }
.success__truths { margin-top: 28px; display: grid; gap: 14px; }
.truth { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.truth svg { width: 22px; height: 22px; color: var(--lilac); flex: none; margin-top: 2px; }
.truth b { color: var(--porcelain); font-family: var(--sans); font-weight: 600; }
.truth span { color: var(--muted-dark); font-size: .96rem; }
.success__media { position: relative; }
.success__media img {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover;
  aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-lift);
}
.success__media figcaption {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  font-size: .84rem; color: var(--porcelain);
  background: rgba(26,16,48,0.6); backdrop-filter: blur(6px);
  padding: 10px 14px; border-radius: 12px; border: 1px solid var(--line-dark);
}

/* =====================================================================
   Specialists — monogram avatars (no stock faces)
   ===================================================================== */
.team__grid { margin-top: clamp(38px, 5vw, 60px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.person {
  background: var(--porcelain-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.person__avatar {
  width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--ink); margin-bottom: 20px;
  background: conic-gradient(from 210deg, var(--lilac), var(--clay), var(--lilac-soft), var(--lilac));
}
.person__avatar span { width: 58px; height: 58px; border-radius: 50%; background: var(--porcelain); display: grid; place-items: center; }
.person h3 { font-size: 1.28rem; }
.person__role { color: var(--grape); font-weight: 600; font-size: .92rem; margin-top: 4px; }
.person p { margin-top: 14px; color: var(--muted); font-size: .94rem; }
.person__meta { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--muted); }

/* =====================================================================
   Book / CTA band
   ===================================================================== */
.book { position: relative; overflow: hidden; }
.book__card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 380px;
  box-shadow: var(--shadow);
}
.book__body {
  background: var(--ink); color: var(--porcelain);
  padding: clamp(34px, 5vw, 60px); display: flex; flex-direction: column; justify-content: center;
}
.book__body h2 { color: var(--porcelain); font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.book__body p { margin-top: 18px; color: var(--muted-dark); max-width: 42ch; }
.book__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.book__contact { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 22px; font-size: .95rem; }
.book__contact a { color: var(--lilac-soft); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.book__contact a:hover { color: var(--porcelain); }
.book__contact svg { width: 18px; height: 18px; }
.book__media { position: relative; }
.book__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.book__media::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, var(--ink), transparent 34%); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--aubergine-deep); color: var(--muted-dark); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: clamp(52px, 7vw, 78px); }
.footer__brand .brand__name { color: var(--porcelain); }
.footer__brand .brand__name span { color: var(--lilac); }
.footer__brand p { margin-top: 16px; max-width: 34ch; font-size: .95rem; }
.footer__contacts { margin-top: 20px; display: grid; gap: 8px; font-size: .95rem; }
.footer__contacts a { color: var(--lilac-soft); text-decoration: none; }
.footer__contacts a:hover { color: var(--porcelain); }
.footer h4 { font-family: var(--sans); color: var(--porcelain); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted-dark); text-decoration: none; padding: 5px 0; font-size: .96rem; }
.footer__col a:hover { color: var(--porcelain); }
.footer__bottom {
  border-top: 1px solid var(--line-dark); padding-block: 26px;
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between;
  font-size: .86rem;
}
.footer__bottom a { color: var(--lilac-soft); text-decoration: none; }
.footer__bottom a:hover { color: var(--porcelain); text-decoration: underline; }
.footer__credit { color: var(--muted-dark); }
.footer__disclaimer { max-width: 62ch; font-size: .8rem; color: rgba(201,187,216,0.7); padding-bottom: 30px; line-height: 1.55; }

/* =====================================================================
   Contact page
   ===================================================================== */
.page-hero { padding-block: clamp(52px, 8vw, 88px) clamp(20px, 3vw, 34px); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); max-width: 16ch; }
.page-hero p { margin-top: 20px; color: var(--muted); font-size: 1.12rem; max-width: 52ch; }

.contact__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 56px); align-items: start; }

.form-card {
  background: var(--porcelain-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 44px); box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field .req { color: var(--clay-ink); }
.field .hint { font-weight: 400; color: var(--muted); font-size: .82rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--porcelain); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 12px 14px; font-size: 1rem; color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235E5270' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--grape); box-shadow: 0 0 0 3px rgba(107,63,160,0.16);
}
.field input::placeholder, .field textarea::placeholder { color: #9A8FA8; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 22px; font-size: .88rem; color: var(--muted); }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--grape); flex: none; }
.form-submit { width: 100%; }
.form-foot { margin-top: 16px; font-size: .82rem; color: var(--muted); text-align: center; }
.form-foot svg { width: 14px; height: 14px; vertical-align: -2px; color: var(--clay-ink); }

/* aside info */
.info-stack { display: grid; gap: 18px; }
.info-card { background: var(--porcelain-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px; }
.info-card h3 { font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grape); margin-bottom: 14px; }
.info-card p, .info-card address { font-style: normal; color: var(--ink); line-height: 1.6; }
.info-card p + p { margin-top: 10px; }
.info-line { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); font-weight: 500; padding: 6px 0; }
.info-line:hover { color: var(--grape); }
.info-line .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--mist); color: var(--grape); display: grid; place-items: center; flex: none; }
.info-line .ic svg { width: 20px; height: 20px; }
.info-line small { display: block; color: var(--muted); font-weight: 400; font-size: .82rem; }
.hours-list { display: grid; gap: 8px; }
.hours-list div { display: flex; justify-content: space-between; gap: 16px; font-size: .95rem; }
.hours-list dt { color: var(--muted); }
.hours-list dd { color: var(--ink); font-weight: 600; }
.emergency {
  background: var(--ink); color: var(--porcelain); border-radius: var(--radius); padding: 22px 24px;
}
.emergency h3 { color: var(--lilac); }
.emergency p { color: var(--muted-dark); font-size: .94rem; margin-top: 4px; }
.emergency a { color: var(--porcelain); font-weight: 600; }

/* =====================================================================
   Thank-you page
   ===================================================================== */
.thanks {
  min-height: 82vh; display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(199,155,232,0.22), transparent 60%),
    var(--porcelain);
}
.thanks__card { max-width: 640px; padding: clamp(30px,5vw,50px) var(--gutter); }
.thanks__mark { width: 84px; height: 84px; margin: 0 auto 26px; }
.thanks h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.thanks h1 em { color: var(--grape); }
.thanks p { margin-top: 20px; color: var(--muted); font-size: 1.12rem; }
.thanks__next {
  margin-top: 30px; background: var(--porcelain-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px; text-align: left; display: grid; gap: 12px;
}
.thanks__next li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.thanks__next svg { width: 20px; height: 20px; color: var(--grape); flex: none; margin-top: 3px; }
.thanks__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
/* Progressive enhancement: only hide when JS is present (.js on <html>),
   so content stays visible if the script fails to load. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
.js .reveal[data-delay="4"] { transition-delay: .32s; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero__frame { aspect-ratio: 5 / 4; border-radius: 180px 180px var(--radius-lg) var(--radius-lg); }
  .honest__grid { grid-template-columns: 1fr; }
  .journey__layout { grid-template-columns: 1fr; }
  .journey__intro { position: static; }
  .success__grid { grid-template-columns: 1fr; }
  .success__media { order: -1; max-width: 560px; }
  .care__grid { grid-template-columns: repeat(2, 1fr); }
  .care-card--feature { grid-column: span 2; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .book__card { grid-template-columns: 1fr; }
  .book__media { min-height: 240px; }
  .book__media::after { background: linear-gradient(0deg, var(--ink), transparent 40%); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--porcelain); border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 26px; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 12px; font-size: 1.05rem; border-radius: 12px; }
  .nav__cta { margin: 8px 0 0; }
  .nav__toggle { display: block; }
  .care__grid { grid-template-columns: 1fr; }
  .care-card--feature { grid-column: span 1; flex-direction: column; }
  .care-feat__media { width: 100%; min-height: 200px; order: -1; }
  .care-feat__media::after { background: linear-gradient(0deg, rgba(34,22,58,.5), transparent 45%); }
  .team__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .hero__badge { left: 8px; right: 8px; max-width: none; }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover, .care-card:hover, .person:hover { transform: none; }
}
