/* ─────────────────────────────────────────────
   MINDS IN MOTION INTEGRATED WELLNESS
   style.css — shared across all pages
   Built by Kayoce Labs · kayocelabs.com
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;1,500&family=DM+Sans:wght@300;400&display=swap');


/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #FAF7F2;
  color: #2A2A2A;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }


/* ── VARIABLES ────────────────────────────── */
:root {
  --cream:       #FAF7F2;
  --surface:     #F0EBE3;
  --sage:        #5C7A5E;
  --charcoal:    #2A2A2A;
  --secondary:   #8C7B70;
  --body-mid:    #5A5047;
  --forest:      #3D4F3A;
  --dark-footer: #2A3528;
  --sage-light:  #ffffff;
  --hero-text:   #ffffff;
  --hero-sub:    #ffffff;
  --border:      #E0D8CE;
  --gold:        #C4A35A;
}


/* ── BUTTONS ──────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: var(--hero-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #4d6850; }

.btn-ghost {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--hero-sub);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--hero-text); }

.btn-outline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--sage);
  border: 1px solid var(--sage);
  background: transparent;
  padding: 8px 18px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--sage); color: var(--hero-text); }

.btn-sage {
  display: inline-block;
  background: var(--sage);
  color: var(--hero-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 3px;
  transition: background 0.2s;
}
.btn-sage:hover { background: #4d6850; }


/* ── NAVIGATION ───────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  height: 68px;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo { height: 55px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--sage); }

.nav__cta { flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s, opacity 0.25s;
}


/* ── SECTION UTILITIES ────────────────────── */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-mid);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.section-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 40px;
  transition: color 0.2s;
}
.section-link:hover { color: #3d5e3f; }


/* ── HERO (home page) ─────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('rafael-peier-1wiGF78HYA8-unsplash.jpg');
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.28);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 32px;
}

.hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 52px;
  color: var(--hero-text);
  line-height: 1.12;
  max-width: 600px;
  margin-bottom: 0;
}
.hero__headline em { font-style: italic; }

.hero__divider {
  width: 80px;
  height: 1px;
  background: var(--hero-text);
  opacity: 0.7;
  margin: 24px 0;
}

.hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--hero-sub);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}


/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: var(--forest);
  padding: 80px 32px;
}

.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-light);
  margin-bottom: 16px;
}

.page-hero__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 48px;
  color: var(--hero-text);
  line-height: 1.12;
  margin-bottom: 16px;
}

.page-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--hero-sub);
  max-width: 560px;
  line-height: 1.65;
}


/* ── TRUST BAR ────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
}

.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-bar__item {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
}

.trust-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}


/* ── ABOUT SNAPSHOT ───────────────────────── */
.about-snapshot {
  background: var(--cream);
  padding: 80px 32px;
}

.about-snapshot__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-snapshot__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-mid);
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 0;
}

.about-snapshot__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-snapshot__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.about-snapshot__value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-snapshot__value-bar {
  width: 3px;
  min-height: 36px;
  align-self: stretch;
  background: var(--sage);
  flex-shrink: 0;
  border-radius: 2px;
}

.about-snapshot__value-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  padding-top: 2px;
}


/* ── SERVICES ACCENT LIST ─────────────────── */
.services {
  background: var(--surface);
  padding: 80px 32px;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-list { max-width: 720px; }

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }

.service-item__bar {
  width: 3px;
  min-height: 40px;
  align-self: stretch;
  background: var(--sage);
  flex-shrink: 0;
  border-radius: 2px;
}

.service-item__body { flex: 1; }

.service-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.service-item__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.6;
}


/* ── TEAM CARDS ───────────────────────────── */
.team {
  background: var(--cream);
  padding: 80px 32px;
}

.team__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}

.team-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(92, 122, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.team-card__initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--sage);
}

.team-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.team-card__cred {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 16px;
}

.team-card__bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.7;
}


/* ── INSURANCE SECTION ────────────────────── */
.insurance {
  background: var(--surface);
  padding: 80px 32px;
}

.insurance__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.insurance__inner .section-heading { margin-bottom: 28px; }

.insurance__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.insurance__pills li {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--body-mid);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
}

.insurance__note {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--secondary);
  margin-bottom: 32px;
}

.insurance__callout {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 32px;
  margin-bottom: 24px;
}

.insurance__callout span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--sage);
}

.insurance__notice {
  margin-top: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 28px;
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: left;
}

.insurance__notice-line {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-mid);
}
.insurance__notice-line + .insurance__notice-line { margin-top: 8px; }

.insurance__fees {
  margin: 28px 0;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.insurance__fee-item {
  text-align: center;
}

.insurance__fee-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--sage);
  display: block;
}

.insurance__fee-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}


/* ── CTA SECTION (dark green, all pages) ─── */
.cta-section {
  background: var(--forest);
  padding: 72px 32px;
}

.cta-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
}

.cta-section__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 34px;
  color: var(--hero-text);
  max-width: 360px;
  line-height: 1.2;
}

.cta-section__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}

.cta-section__details li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--hero-sub);
}

.cta-section__details a {
  color: var(--hero-sub);
  transition: color 0.2s;
}
.cta-section__details a:hover { color: var(--hero-text); }

.cta-section__details svg { flex-shrink: 0; }


/* ── FOOTER ───────────────────────────────── */
.footer {
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--hero-text);
  margin-bottom: 2px;
}

.footer__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.footer__contact-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--hero-sub);
  line-height: 1.8;
}

.footer__col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage-light);
  margin-bottom: 16px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--hero-sub);
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }

.footer__address,
.footer__hours,
.footer__telehealth {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--hero-sub);
  line-height: 1.7;
}
.footer__hours { margin-top: 12px; }
.footer__telehealth { margin-top: 8px; font-style: italic; font-size: 12px; color: var(--sage-light); }

.footer__bottom {
  background: var(--dark-footer);
  padding: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer__copy,
.footer__credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #4A5E48;
}

.footer__credit a { color: #4A5E48; text-decoration: underline; transition: color 0.2s; }
.footer__credit a:hover { color: var(--sage-light); }

.footer__notice {
  flex-basis: 100%;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #6B7F5E;
  line-height: 1.5;
  margin-top: 6px;
}


/* ── ABOUT PAGE — PHILOSOPHY ──────────────── */
.philosophy {
  background: var(--cream);
  padding: 80px 32px;
}

.philosophy__inner {
  max-width: 760px;
  margin: 0 auto;
}

.philosophy__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-mid);
  line-height: 1.85;
}
.philosophy__body p + p { margin-top: 20px; }


/* ── ABOUT PAGE — WHAT MAKES US DIFFERENT ─── */
.differentiators {
  background: var(--surface);
  padding: 80px 32px;
}

.differentiators__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.differentiators__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.diff-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}

.diff-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.diff-card__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.65;
}


/* ── ABOUT PAGE — CLINICIAN BIO ───────────── */
.clinician {
  padding: 80px 32px;
}
.clinician--cream { background: var(--cream); }
.clinician--surface { background: var(--surface); }

.clinician__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}

.clinician__inner--reverse { grid-template-columns: auto 1fr; }
.clinician__inner--reverse .clinician__avatar-col { order: -1; }

.clinician__avatar-col { display: flex; flex-direction: column; align-items: center; gap: 0; }

.clinician__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(92, 122, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clinician__initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--sage);
}

.clinician__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 18px;
  display: block;
}

.clinician__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 6px;
  margin-top: 0;
}

.clinician__cred {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 24px;
}

.clinician__bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-mid);
  line-height: 1.85;
}
.clinician__bio p + p { margin-top: 18px; }

.clinician__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.clinician__specialty {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--body-mid);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
}
.clinician--cream .clinician__specialty { background: var(--surface); }
.clinician--surface .clinician__specialty { background: var(--cream); }


/* ── SERVICES PAGE — APPROACH CARDS ──────── */
.approaches {
  background: var(--cream);
  padding: 80px 32px;
}

.approaches__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.approaches__list { max-width: 760px; margin-top: 0; }

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.approach-item:last-child { border-bottom: none; }

.approach-item__bar {
  width: 3px;
  min-height: 48px;
  align-self: stretch;
  background: var(--sage);
  flex-shrink: 0;
  border-radius: 2px;
}

.approach-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.approach-item__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.65;
}


/* ── SERVICES PAGE — NEUROFEEDBACK ────────── */
.neurofeedback {
  background: var(--surface);
  padding: 80px 32px;
}

.neurofeedback__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.neurofeedback__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.neurofeedback__sub-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.neurofeedback__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.neurofeedback__list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--body-mid);
  padding-left: 16px;
  position: relative;
}
.neurofeedback__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

.neurofeedback__info-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}

.neurofeedback__info-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.neurofeedback__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nf-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.nf-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nf-step__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--body-mid);
  line-height: 1.6;
  padding-top: 4px;
}


/* ── SERVICES PAGE — EMDR ─────────────────── */
.emdr {
  background: var(--cream);
  padding: 80px 32px;
}

.emdr__inner {
  max-width: 760px;
  margin: 0 auto;
}

.emdr__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.emdr__sub-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 28px 0 14px;
}

.emdr__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.emdr__list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--body-mid);
  padding-left: 16px;
  position: relative;
}
.emdr__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}


/* ── SERVICES PAGE — WHO WE WORK WITH ─────── */
.who-we-serve {
  background: var(--surface);
  padding: 80px 32px;
}

.who-we-serve__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.who-we-serve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.serve-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
}

.serve-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}


/* ── FAQ PAGE ─────────────────────────────── */
.faq {
  background: var(--cream);
  padding: 80px 32px;
}

.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-item__answer {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.75;
}


/* ── CONTACT PAGE ─────────────────────────── */
.contact-section {
  background: var(--cream);
  padding: 80px 32px;
}

.contact-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info__item svg { flex-shrink: 0; }

.contact-info__item a,
.contact-info__item span {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-mid);
  transition: color 0.2s;
}
.contact-info__item a:hover { color: var(--sage); }

.contact-info__telehealth-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--secondary);
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 20px;
  padding-left: 34px;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: block;
}

.contact-map__note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--secondary);
  margin-top: 12px;
  font-style: italic;
}


/* ── CONTACT PAGE — FREE CONSULT CALLOUT ─── */
.consult-callout {
  background: var(--surface);
  padding: 60px 32px;
  text-align: center;
}

.consult-callout__inner { max-width: 600px; margin: 0 auto; }

.consult-callout__heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.consult-callout__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.consult-callout__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.consult-callout__actions .btn-sage { color: var(--hero-text); }


/* ── FOOTER SOCIAL ────────────────────────── */
.footer__social {
  flex-basis: 100%;
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.footer__social a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #A8C4A2;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer__social a:hover { color: #ffffff; }

/* ── TEAM PT LINK ─────────────────────────── */
.team__pt-link {
  text-align: center;
  margin-top: 32px;
}

/* ── PSYCHOLOGY TODAY LINK ────────────────── */
.pt-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5C7A5E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── SCROLL ANIMATIONS ────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE — 768px ───────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    z-index: 99;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 12px 32px; font-size: 14px; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__content { padding: 60px 20px; }
  .hero__headline { font-size: 38px; }

  /* Page hero */
  .page-hero { padding: 60px 20px; }
  .page-hero__heading { font-size: 36px; }

  /* Sections */
  .about-snapshot { padding: 60px 20px; }
  .about-snapshot__inner { grid-template-columns: 1fr; gap: 36px; }
  .services { padding: 60px 20px; }
  .team { padding: 60px 20px; }
  .team__grid { grid-template-columns: 1fr; }
  .insurance { padding: 60px 20px; }
  .cta-section { padding: 60px 20px; }
  .cta-section__inner { flex-direction: column; align-items: flex-start; }
  .cta-section__details { text-align: left; }
  .cta-section__details li { justify-content: flex-start; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
  .footer__bottom { flex-direction: column; gap: 6px; padding: 16px 20px; }

  /* About page */
  .philosophy { padding: 60px 20px; }
  .differentiators { padding: 60px 20px; }
  .differentiators__grid { grid-template-columns: 1fr; }
  .clinician { padding: 60px 20px; }
  .clinician__inner { grid-template-columns: 1fr; gap: 28px; }
  .clinician__inner--reverse .clinician__avatar-col { order: 0; }
  .clinician__avatar-col { align-items: flex-start; }

  /* Services page */
  .approaches { padding: 60px 20px; }
  .neurofeedback { padding: 60px 20px; }
  .neurofeedback__inner { grid-template-columns: 1fr; gap: 36px; }
  .emdr { padding: 60px 20px; }
  .who-we-serve { padding: 60px 20px; }
  .who-we-serve__grid { grid-template-columns: 1fr; }

  /* FAQ page */
  .faq { padding: 60px 20px; }

  /* Contact page */
  .contact-section { padding: 60px 20px; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .consult-callout { padding: 48px 20px; }
}


/* ── RESPONSIVE — 480px ───────────────────── */
@media (max-width: 480px) {
  .hero__headline { font-size: 32px; }
  .page-hero__heading { font-size: 30px; }
  .trust-bar__dot { display: none; }
  .trust-bar__item { font-size: 10px; }
  .trust-bar__inner { gap: 6px 14px; }
  .who-we-serve__grid { grid-template-columns: 1fr 1fr; }
  .insurance__fees { gap: 20px; }
}
