/* ─────────────────────────────────────────────────────────────
   MORROW WELLNESS CLINIC — style.css
   Palette : Sage #4A7C59 · White #FFFFFF · Sand #F5F0E8
   Fonts   : Nunito (headings) · Source Sans Pro (body)
───────────────────────────────────────────────────────────── */

/* ── 0. Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background-color: var(--c-white);
  color: var(--c-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── 1. Tokens ───────────────────────────────────────────────── */
:root {
  --c-sage:       #4A7C59;
  --c-sage-dark:  #3A6347;
  --c-sage-light: #EBF2EE;
  --c-sage-mid:   #6B9E7A;
  --c-white:      #FFFFFF;
  --c-sand:       #F5F0E8;
  --c-sand-2:     #EDE8E0;
  --c-sand-3:     #FAF8F4;
  --c-deep:       #1C2B22;
  --c-muted:      rgba(28, 43, 34, 0.52);

  --f-head: 'Nunito', system-ui, sans-serif;
  --f-sans: 'Source Sans Pro', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --max-w: 1200px;
  --section-pad: clamp(80px, 10vw, 130px);
}

/* ── 2. Utility ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.section { padding-block: var(--section-pad); }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 16px;
}
.text-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sage);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  display: inline-block;
  transition: opacity 250ms;
}
@media (hover: hover) and (pointer: fine) {
  .text-link:hover { opacity: 0.62; }
}

/* ── 3. Fade-in ──────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
}
.fade-in.is-visible { opacity: 1; transform: none; }
.fade-in-d1 { transition-delay: 90ms; }
.fade-in-d2 { transition-delay: 180ms; }
.fade-in-d3 { transition-delay: 270ms; }
.fade-in-d4 { transition-delay: 360ms; }

/* ── 4. Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition:
    background-color 260ms var(--ease-out),
    color 260ms var(--ease-out),
    border-color 260ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }

.btn--sage {
  background-color: var(--c-sage);
  color: var(--c-white);
  border: 1.5px solid var(--c-sage);
}
@media (hover: hover) and (pointer: fine) {
  .btn--sage:hover {
    background-color: var(--c-sage-dark);
    border-color: var(--c-sage-dark);
  }
}
.btn--outline-white {
  background-color: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-white:hover {
    background-color: var(--c-white);
    color: var(--c-sage);
    border-color: var(--c-white);
  }
}
.btn--outline-sage {
  background-color: transparent;
  color: var(--c-sage);
  border: 1.5px solid var(--c-sage);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-sage:hover {
    background-color: var(--c-sage);
    color: var(--c-white);
  }
}

/* ── 5. Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 22px;
  transition:
    background-color 350ms var(--ease-out),
    padding-block 350ms var(--ease-out),
    box-shadow 350ms var(--ease-out);
}
.nav.nav--scrolled {
  background-color: var(--c-white);
  padding-block: 14px;
  box-shadow: 0 1px 0 var(--c-sand-2);
}
.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.01em;
  transition: color 350ms var(--ease-out);
}
.nav__logo-mark {
  width: 30px;
  height: 30px;
  background-color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 350ms var(--ease-out);
}
.nav__logo-mark svg { width: 16px; height: 16px; }
.nav__logo-mark svg path { fill: var(--c-sage); transition: fill 350ms; }
.nav.nav--scrolled .nav__logo { color: var(--c-deep); }
.nav.nav--scrolled .nav__logo-mark { background-color: var(--c-sage); }
.nav.nav--scrolled .nav__logo-mark svg path { fill: var(--c-white); }

/* Links */
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 2px;
  transition: color 260ms var(--ease-out);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 1.5px; width: 0;
  background-color: var(--c-sage-mid);
  transition: width 260ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { color: var(--c-white); }
  .nav__link:hover::after { width: 100%; }
}
.nav.nav--scrolled .nav__link { color: rgba(28,43,34,0.55); }
@media (hover: hover) and (pointer: fine) {
  .nav.nav--scrolled .nav__link:hover { color: var(--c-deep); }
}
.nav__link.is-active { color: var(--c-white); }
.nav__link.is-active::after { width: 100%; }
.nav.nav--scrolled .nav__link.is-active { color: var(--c-deep); }

.nav__link.btn--sage { color: var(--c-white); }
.nav__link.btn--sage::after { display: none; }
.nav__link.btn--sage.is-active,
.nav.nav--scrolled .nav__link.btn--sage.is-active { color: var(--c-white); }
.nav__cta-btn { margin-left: 8px; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background-color: var(--c-white);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out), background-color 350ms var(--ease-out);
}
.nav.nav--scrolled .nav__toggle span { background-color: var(--c-deep); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── 6. Hero — Split Screen ──────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left: text side */
.hero__text-side {
  background-color: var(--c-sage);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-inline: clamp(32px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.hero__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.hero__heading {
  font-family: var(--f-head);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  max-width: 400px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__trust-num {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.02em;
}
.hero__trust-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Right: image crossfade */
.hero__img-side {
  position: relative;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1600ms ease-in-out;
}
.hero__slide.is-active { opacity: 1; }

/* ── 7. Approach Split ───────────────────────────────────────── */
.approach {
  background-color: var(--c-sand-3);
}
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.approach__img {
  overflow: hidden;
}
.approach__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .approach__img:hover img { transform: scale(1.04); }
}
.approach__text {
  padding: clamp(64px, 9vw, 110px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.approach__heading {
  font-family: var(--f-head);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-deep);
  margin-bottom: 22px;
}
.approach__body {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--c-muted);
  max-width: 420px;
  margin-bottom: 34px;
}

/* ── 8. Services Preview ─────────────────────────────────────── */
.services-preview { background-color: var(--c-white); }
.services-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 60px);
  gap: 24px;
}
.services-preview__heading {
  font-family: var(--f-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--c-deep);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--c-sand-3);
  overflow: hidden;
  border-radius: 4px;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74,124,89,0.12);
  }
}
.service-card__img {
  height: 210px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-card__img img { transform: scale(1.06); }
}
.service-card__body {
  padding: 22px 20px 26px;
  border-top: 2px solid var(--c-sand-2);
}
.service-card__price {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 7px;
}
.service-card__title {
  font-family: var(--f-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--c-deep);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--c-muted);
}

/* ── 9. Full-Bleed Image Strip ───────────────────────────────── */
.img-strip {
  height: clamp(260px, 36vw, 500px);
  overflow: hidden;
}
.img-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── 10. Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background-color: var(--c-sage);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 52px);
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--f-head);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

/* ── 11. Who We Help ─────────────────────────────────────────── */
.who-we-help { background-color: var(--c-sand); }
.who-we-help__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}
.who-we-help__heading {
  font-family: var(--f-head);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-deep);
  margin-bottom: 22px;
}
.who-we-help__body {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--c-muted);
  margin-bottom: 32px;
}
.patient-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.patient-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--c-deep);
}
.patient-list__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background-color: var(--c-sage);
  flex-shrink: 0;
}
.who-we-help__img {
  overflow: hidden;
  height: clamp(360px, 48vw, 580px);
  border-radius: 4px;
}
.who-we-help__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── 12. CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background-color: var(--c-sage-light);
  padding-block: clamp(60px, 8vw, 100px);
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--c-deep);
  margin-bottom: 14px;
}
.cta-strip p {
  font-size: 15px;
  font-weight: 400;
  color: var(--c-muted);
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 36px;
}

/* ── 13. Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background-color: var(--c-sage);
  padding-top: clamp(130px, 16vw, 190px);
  padding-bottom: clamp(64px, 8vw, 96px);
}
.page-hero__eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.page-hero__heading {
  font-family: var(--f-head);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--c-white);
  max-width: 640px;
}
.page-hero__sub {
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  margin-top: 20px;
  line-height: 1.75;
}

/* ── 14. About Page ──────────────────────────────────────────── */
.about-main { background-color: var(--c-white); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding-block: var(--section-pad);
}
.about-split__body {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.95;
  color: var(--c-muted);
}
.about-split__body p + p { margin-top: 20px; }
.about-img {
  overflow: hidden;
  height: clamp(360px, 50vw, 600px);
  border-radius: 4px;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Values / pillars */
.pillars { background-color: var(--c-sand-3); }
.pillars-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--c-sand-2);
}
.pillar {
  background: var(--c-sand-3);
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 44px);
  position: relative;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background-color: var(--c-sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out);
}
.pillar.is-visible::before { transform: scaleX(1); }
.pillar__num {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-sage); margin-bottom: 14px;
}
.pillar__title {
  font-family: var(--f-head);
  font-size: 21px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--c-deep); margin-bottom: 12px;
}
.pillar__desc {
  font-size: 14px; font-weight: 400;
  line-height: 1.82; color: var(--c-muted);
}

/* ── 15. Services Full Page ──────────────────────────────────── */
.services-main { background-color: var(--c-sand-3); }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-card-full {
  grid-column: span 2;
  background: var(--c-white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.service-card-full:nth-child(4) { grid-column: 2 / span 2; }
.service-card-full:nth-child(5) { grid-column: 4 / span 2; }
@media (hover: hover) and (pointer: fine) {
  .service-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74,124,89,0.12);
  }
  .service-card-full:hover .service-card__img img { transform: scale(1.06); }
}
.service-card-full .service-card__img { height: 220px; }
.service-card-full .service-card__body { padding: 26px 24px 32px; }
.service-card-full .service-card__title { font-size: 21px; }
.service-card-full .service-card__desc { font-size: 14px; line-height: 1.8; }

/* ── 16. Contact Page ────────────────────────────────────────── */
.contact-main { background-color: var(--c-white); }
.contact-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--c-sand-2);
  margin-top: 52px;
  border-radius: 4px;
  overflow: hidden;
}
.contact-hub__block {
  background: var(--c-sand-3);
  padding: clamp(36px, 4.5vw, 52px) clamp(28px, 3.5vw, 40px);
}
.contact-hub__block--cta {
  background: var(--c-sage);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contact-hub__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-sage); margin-bottom: 14px;
}
.contact-hub__block--cta .contact-hub__label { color: rgba(255,255,255,0.55); }
.contact-hub__value {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: var(--c-deep);
  line-height: 1.75;
}
.contact-hub__block--cta .contact-hub__value { color: rgba(255,255,255,0.65); font-size: 14px; }
.contact-hub__value a { transition: color 250ms; }
@media (hover: hover) and (pointer: fine) {
  .contact-hub__value a:hover { color: var(--c-sage); }
}
.contact-hub__cta-heading {
  font-family: var(--f-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--c-white);
  margin-bottom: 22px;
}

/* ── 17. Footer ──────────────────────────────────────────────── */
.footer {
  background-color: var(--c-deep);
  padding-block: clamp(44px, 6vw, 72px);
}
.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer__logo {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.01em;
}
.footer__logo span { color: var(--c-sage-mid); }
.footer__links { display: flex; gap: 28px; }
.footer__link {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  transition: color 250ms;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover { color: rgba(255,255,255,0.75); }
}
.footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  text-align: right;
  letter-spacing: 0.03em;
}

/* ── 18. Form & Modal ────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-sage); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--c-sand-2);
  padding: 10px 0; font-family: var(--f-sans);
  font-size: 15px; font-weight: 400;
  color: var(--c-deep); -webkit-text-fill-color: var(--c-deep);
  outline: none; transition: border-color 250ms;
  -webkit-appearance: none; appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A7C59' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
  padding-right: 24px;
}
.form-group select option { color: var(--c-deep); -webkit-text-fill-color: var(--c-deep); background-color: var(--c-white); }
.form-group select option[disabled] { color: rgba(28,43,34,0.35); -webkit-text-fill-color: rgba(28,43,34,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--c-sage); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(28,43,34,0.28); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28, 43, 34, 0.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--c-white);
  width: 100%; max-width: 560px; max-height: 90vh;
  overflow-y: auto; padding: clamp(36px, 5vw, 52px);
  transform: scale(0.95) translateY(18px);
  transition: transform 360ms var(--ease-out);
  position: relative; border-radius: 4px;
  border-top: 4px solid var(--c-sage);
}
.modal-overlay.is-open .modal { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute; top: 18px; right: 20px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--c-muted); transition: color 200ms;
}
@media (hover: hover) and (pointer: fine) { .modal__close:hover { color: var(--c-deep); } }
.modal__eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-sage); margin-bottom: 10px; }
.modal__heading { font-family: var(--f-head); font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; color: var(--c-deep); margin-bottom: 30px; line-height: 1.15; }
.modal__success { text-align: center; padding: 24px 0; }
.modal__success-icon { font-size: 36px; margin-bottom: 14px; color: var(--c-sage); }
.modal__success h3 { font-family: var(--f-head); font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--c-deep); margin-bottom: 10px; }
.modal__success p { font-size: 14px; font-weight: 400; color: var(--c-muted); line-height: 1.7; }

/* ── 19. Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero__text-side { padding-top: clamp(100px, 14vw, 140px); min-height: 60vh; }
  .hero__img-side { height: 45vw; min-height: 280px; position: relative; }
  .approach__grid { grid-template-columns: 1fr; }
  .approach__img { height: 340px; }
  .who-we-help__grid { grid-template-columns: 1fr; }
  .who-we-help__img { height: 300px; order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card-full,
  .service-card-full:nth-child(4),
  .service-card-full:nth-child(5) { grid-column: span 1; }
  .stats-bar__inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-img { height: 300px; order: -1; }
  .pillars-inner { grid-template-columns: 1fr; }
  .contact-hub__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer__copy { text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 640px) {
  .nav__menu {
    position: fixed; inset-block-start: 0; inset-inline-end: 0;
    width: min(320px, 100vw); height: 100dvh;
    background-color: var(--c-sage-dark);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 48px 40px; gap: 20px;
    transform: translateX(100%);
    transition: transform 380ms var(--ease-out); z-index: 99;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { font-size: 13px !important; color: rgba(255,255,255,0.7) !important; }
  .nav__link.is-active { color: var(--c-white) !important; }
  .nav__cta-btn { display: none; }
  .nav__toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .service-card-full { grid-column: 1 / -1 !important; }
  .form-row { grid-template-columns: 1fr; }
  .hero__trust { flex-wrap: wrap; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { transition: opacity 200ms; transform: none; }
  .hero__slide { transition: opacity 400ms; }
  .pillar::before { transition: none; }
}

/* ── Team Page (Morrow) ───────────────────────────────────────── */
.practitioner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background-color: var(--c-sand-2);
}
.practitioner-card {
  background: var(--c-white);
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: border-color 280ms var(--ease-out);
  grid-column: span 2;
}
@media (hover: hover) and (pointer: fine) {
  .practitioner-card:hover { border-top-color: var(--c-sage); }
}
/* 5th item: cards 4 & 5 centred in last row using offset columns */
.practitioner-card--offset-left  { grid-column: 2 / span 2; }
.practitioner-card--offset-right { grid-column: 4 / span 2; }

.practitioner-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.practitioner-card__body {
  padding: 24px 22px 28px;
}
.practitioner-card__name {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-deep);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.practitioner-card__title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 0;
}
.practitioner-card__quals {
  font-size: 11px;
  color: var(--c-muted);
  margin: 4px 0 12px;
  line-height: 1.6;
}
.practitioner-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.prac-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background-color: var(--c-sage-light);
  color: var(--c-sage);
  padding: 4px 10px;
  border-radius: 20px;
}
.practitioner-card__btn {
  margin-top: 16px;
  padding: 10px 22px;
  font-size: 10.5px;
}

/* ── Conditions Page ──────────────────────────────────────────── */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--c-sand-2);
}
.condition-card {
  background-color: var(--c-sand);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color 280ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .condition-card:hover { border-top-color: var(--c-sage); }
}
/* Last card (10th) centred in its row */
.condition-card--centred {
  grid-column: 2 / 3;
}
.condition-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}
.condition-card__title {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.condition-card__desc {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.75;
  margin-top: 8px;
}
.condition-card__link {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-sage);
  border-bottom: 1px solid var(--c-sage);
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 1px;
  transition: opacity 250ms;
  letter-spacing: 0.04em;
}
@media (hover: hover) and (pointer: fine) {
  .condition-card__link:hover { opacity: 0.62; }
}

/* Page hero — sand variant (Conditions & Patient Info) */
.page-hero--sand {
  background-color: var(--c-sand);
}
.page-hero--sand .page-hero__eyebrow { color: var(--c-sage); }
.page-hero--sand .page-hero__heading { color: var(--c-deep); }
.page-hero--sand .page-hero__sub     { color: var(--c-muted); }

/* ── Patient Info Page ────────────────────────────────────────── */
.first-visit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: var(--c-sand-2);
}
.visit-step {
  background: var(--c-white);
  padding: 32px 28px;
}
.visit-step__num {
  font-family: var(--f-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(74, 124, 89, 0.2);
  line-height: 1;
  margin-bottom: 0;
}
.visit-step__title {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-deep);
  margin: 8px 0 4px;
}
.visit-step__duration {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 8px;
}
.visit-step__desc {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--c-sand-2);
}
/* Last pricing card (5th) centred */
.price-card:nth-child(5) {
  grid-column: 2 / 3;
}
.price-card {
  background-color: var(--c-sand);
  padding: 28px 24px;
  border-top: 3px solid transparent;
  transition: border-color 280ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .price-card:hover { border-top-color: var(--c-sage); }
}
.price-card__name {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--c-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.price-card__amount {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-sage);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.price-card__duration {
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}

.faq-section {
  max-width: 720px;
  margin-inline: auto;
}
details.faq-item {
  border-bottom: 1px solid rgba(235, 242, 238, 0.6);
  padding: 4px 0;
}
details.faq-item:last-child {
  border-bottom: 1px solid var(--c-sand-2);
}
details.faq-item summary {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-deep);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 220ms;
  -webkit-tap-highlight-color: transparent;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '\FF0B';
  color: var(--c-sage);
  font-size: 18px;
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}
details[open].faq-item summary::after {
  content: '\2212';
}
@media (hover: hover) and (pointer: fine) {
  details.faq-item summary:hover { color: var(--c-sage); }
}
details.faq-item .faq-answer {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.8;
  padding-bottom: 18px;
}
details.faq-item .faq-answer p + p { margin-top: 12px; }

/* ── Responsive — new pages ──────────────────────────────────── */
@media (max-width: 960px) {
  .practitioner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .practitioner-card,
  .practitioner-card--offset-left,
  .practitioner-card--offset-right { grid-column: span 1; }
  .first-visit-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .conditions-grid { grid-template-columns: 1fr; }
  .condition-card--centred { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card:nth-child(5) { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .practitioner-grid { grid-template-columns: 1fr; }
  .practitioner-card,
  .practitioner-card--offset-left,
  .practitioner-card--offset-right { grid-column: 1 / -1; }
  .first-visit-steps { grid-template-columns: 1fr; }
}
