/* ============================================================
   Premier Neurology — Shared Stylesheet
   ============================================================ */

/* ---- Tokens ------------------------------------------------ */
:root {
  --purple:        #5B3FA0;
  --purple-deep:   #3E2A6E;
  --purple-hover:  #4C3388;
  --lavender-chip: #EBE3FA;
  --lavender-bg:   #F4F0FB;
  --off-white:     #FAF8FD;
  --border:        #EFEAF8;
  --border-card:   #EEE7F7;
  --border-row:    #F1EDF8;
  --ink:           #1C1633;
  --body:          #56526A;
  --body-alt:      #43405A;
  --body-muted:    #6A6480;
  --muted-label:   #8A84A0;
  --footer-bg:     #141029;
  --footer-text:   #B3ACC9;
  --footer-subtle: #968FB0;
  --footer-label:  #6F6790;
  --footer-accent: #8D7FB8;
  --step-numeral:  #C3AEF0;
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: 'Hanken Grotesk', sans-serif; color: var(--body); background: #fff; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
::selection { background: #ddd0f5; }

/* ---- Typography -------------------------------------------- */
.serif { font-family: 'Newsreader', serif; }

/* ---- Layout helpers --------------------------------------- */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container--md  { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.container--sm  { max-width: 760px;  margin: 0 auto; padding: 0 40px; }
.container--article-media { max-width: 1000px; margin: 0 auto; padding: 0 40px; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; background: var(--purple); color: #fff;
  border-radius: 999px; font-weight: 600; font-size: 15px;
  font-family: inherit; border: none; cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn:hover { background: var(--purple-hover); }
.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--white { background: #fff; color: var(--purple); }
.btn--white:hover { background: #f0eafa; color: var(--purple); }

.link-text {
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  color: var(--purple); border-bottom: 1.5px solid #d8cbf2;
  padding-bottom: 2px; transition: border-color 0.15s;
}
.link-text:hover { border-color: var(--purple); }

/* ---- Eyebrows --------------------------------------------- */
.eyebrow-sans {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple);
}
.eyebrow-serif {
  font-family: 'Newsreader', serif; font-style: italic;
  font-size: 17px; color: var(--purple);
}

/* ---- Cards ------------------------------------------------ */
.card {
  background: #fff; border: 1px solid var(--border-card);
  border-radius: 16px; overflow: hidden;
}

/* ---- Image placeholder (dev only) ------------------------- */
.img-placeholder {
  background: repeating-linear-gradient(45deg, #efeaf8, #efeaf8 12px, #f4f0fb 12px, #f4f0fb 24px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-label); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---- Real images (replaces placeholders after media download) --- */
img.page-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: inherit;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.util-bar__inner {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 26px; padding: 8px 40px; font-size: 13px; color: var(--body-muted);
  max-width: 1200px; margin: 0 auto;
}
.util-bar__portal {
  display: flex; align-items: center; gap: 7px;
}
.util-bar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple); display: inline-block;
}
.util-bar__phone { font-weight: 600; color: var(--ink); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: #fff; border-bottom: 1px solid var(--border);
  position: relative; z-index: 50;
}
.site-header__inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.logo__ribbon {
  width: 7px; height: 16px; background: var(--purple);
  border-radius: 4px; transform: rotate(20deg);
}
.logo__text { line-height: 1; }
.logo__name {
  font-weight: 700; letter-spacing: 0.04em; color: var(--ink); font-size: 16px;
}
.logo__sub {
  font-size: 11px; letter-spacing: 0.32em; color: var(--purple); margin-top: 3px;
}

/* Nav */
.site-nav {
  display: flex; align-items: center; gap: 30px;
  font-size: 14.5px; font-weight: 500; color: #2c2740;
  list-style: none; margin: 0; padding: 0;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  padding: 4px 0; transition: color 0.15s;
  color: inherit; text-decoration: none;
}
.site-nav__link:hover { color: var(--purple); }
.site-nav__arrow { font-size: 9px; opacity: 0.5; }

/* Dropdown */
.site-nav__item { padding-bottom: 14px; margin-bottom: -14px; }

.site-nav__dropdown {
  position: absolute; top: calc(100% + 0px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border-card);
  border-radius: 14px; padding: 8px 0; min-width: 220px;
  box-shadow: 0 8px 30px rgba(91,63,160,.12);
  opacity: 0; pointer-events: none; transition: opacity 0.15s, transform 0.15s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
}
.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.site-nav__dropdown a {
  display: block; padding: 10px 20px; font-size: 14px;
  color: var(--body); transition: background 0.1s, color 0.1s;
}
.site-nav__dropdown a:hover { background: var(--lavender-bg); color: var(--purple); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle__bar {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 5px 0; border-radius: 2px; transition: 0.2s;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg); color: var(--footer-text);
}
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px; padding: 70px 40px 30px;
  max-width: 1200px; margin: 0 auto;
}
.site-footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.site-footer__logo-mark {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--footer-accent);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.site-footer__logo-ribbon {
  width: 6px; height: 14px; background: var(--footer-accent);
  border-radius: 3px; transform: rotate(20deg);
}
.site-footer__logo-text { line-height: 1.1; }
.site-footer__logo-name { font-weight: 700; letter-spacing: 0.04em; color: #fff; font-size: 14px; }
.site-footer__logo-sub { font-size: 9.5px; letter-spacing: 0.3em; color: var(--footer-accent); margin-top: 2px; }
.site-footer__blurb { font-size: 14px; line-height: 1.7; max-width: 280px; color: var(--footer-subtle); }

.site-footer__col-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--footer-label); margin-bottom: 18px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.site-footer__links a { color: var(--footer-text); transition: color 0.15s; }
.site-footer__links a:hover { color: #fff; }

.site-footer__locations {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; font-size: 14px;
}
.site-footer__locations a { color: var(--footer-text); transition: color 0.15s; }
.site-footer__locations a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid #2a2444;
}
.site-footer__bottom-inner {
  max-width: 1200px; margin: 0 auto; padding: 22px 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--footer-label);
}
.site-footer__bottom-links { display: flex; gap: 24px; }
.site-footer__bottom-links a { color: var(--footer-label); transition: color 0.15s; }
.site-footer__bottom-links a:hover { color: #fff; }

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* Hero */
.hero {
  max-width: 1200px; margin: 0 auto; padding: 84px 40px 70px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero__eyebrow { margin-bottom: 22px; }
.hero__h1 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 62px;
  line-height: 1.04; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 22px;
}
.hero__h1 em { font-style: italic; color: var(--purple); }
.hero__lead {
  font-size: 17px; line-height: 1.65; max-width: 460px; margin-bottom: 34px; color: var(--body);
}
.hero__ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* Hero single image */
.hero__single-img {
  height: 520px; border-radius: 24px; overflow: hidden;
}

/* Announcement band */
.announce-band {
  background: var(--purple); color: #fff;
}
.announce-band__inner {
  max-width: 1200px; margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.announce-band__text { font-size: 17px; font-weight: 500; }

/* Standards section */
.standards {
  max-width: 1200px; margin: 0 auto; padding: 96px 40px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.standards__eyebrow { margin-bottom: 14px; }
.standards__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 42px;
  line-height: 1.12; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 24px;
}
.standards__body { font-size: 16.5px; line-height: 1.7; margin-bottom: 18px; }

/* Services grid */
.services-section {
  background: var(--off-white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.services-section__inner { max-width: 1200px; margin: 0 auto; padding: 92px 40px; }
.services-section__eyebrow { margin-bottom: 10px; }
.services-section__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 40px;
  letter-spacing: -0.015em; color: var(--ink); margin-bottom: 48px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card__img { height: 188px; overflow: hidden; }
.service-card__body { padding: 24px 24px 26px; }
.service-card__title {
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 22px;
  color: var(--ink); margin-bottom: 9px;
}
.service-card__desc { font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; color: var(--body-muted); }
.service-card__link {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple);
  transition: opacity 0.15s;
}
.service-card__link:hover { opacity: 0.75; }

/* CTA band */
.cta-band { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.cta-band__inner {
  background: linear-gradient(110deg, var(--purple), var(--purple-deep));
  border-radius: 22px; padding: 48px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.cta-band__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 34px;
  line-height: 1.2; color: #fff;
}

/* Women's health */
.womens-section {
  max-width: 1200px; margin: 0 auto; padding: 40px 40px 96px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.womens-section__eyebrow { margin-bottom: 14px; }
.womens-section__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 40px;
  letter-spacing: -0.015em; color: var(--ink); margin-bottom: 22px;
}
.womens-section__body { font-size: 16.5px; line-height: 1.7; max-width: 440px; margin-bottom: 30px; }

/* Three features */
.features-section {
  background: var(--off-white); border-top: 1px solid var(--border);
}
.features-section__inner {
  max-width: 1100px; margin: 0 auto; padding: 90px 40px; text-align: center;
}
.features-section__eyebrow { margin-bottom: 10px; }
.features-section__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 40px;
  letter-spacing: -0.015em; color: var(--ink); margin-bottom: 56px;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.feature__icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--lavender-chip);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.feature__icon-mark {
  width: 9px; height: 22px; background: var(--purple);
  border-radius: 5px; transform: rotate(20deg);
}
.feature__title {
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 21px;
  color: var(--ink); margin-bottom: 10px;
}
.feature__desc { font-size: 14.5px; line-height: 1.65; max-width: 280px; margin: 0 auto; color: var(--body-muted); }

/* 3-step journey */
.steps-section {
  max-width: 1200px; margin: 0 auto; padding: 96px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.steps-section__eyebrow { margin-bottom: 12px; }
.steps-section__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 38px;
  letter-spacing: -0.015em; color: var(--ink); margin-bottom: 36px;
}
.steps-list { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 20px; }
.step__num {
  font-family: 'Newsreader', serif; font-style: italic; font-size: 30px;
  color: var(--step-numeral); line-height: 1; min-width: 34px;
}
.step__title { font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.step__desc { font-size: 14.5px; line-height: 1.6; color: var(--body-muted); }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-hero {
  background: linear-gradient(160deg, var(--lavender-bg), #ffffff);
}
.service-hero__inner {
  max-width: 1100px; margin: 0 auto; padding: 54px 40px 64px;
}
.breadcrumb { font-size: 13px; color: var(--muted-label); margin-bottom: 26px; }
.breadcrumb a { color: var(--muted-label); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb__sep { opacity: 0.5; margin: 0 6px; }
.breadcrumb__current { color: var(--purple); }

.service-hero__eyebrow { margin-bottom: 16px; }
.service-hero__h1 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 54px;
  line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px; max-width: 720px;
}
.service-hero__lead { font-size: 18px; line-height: 1.6; max-width: 620px; }

.service-media {
  max-width: 1100px; margin: -32px auto 0; padding: 0 40px;
}
.service-media__img { height: 380px; border-radius: 18px; }

.service-body {
  max-width: 1100px; margin: 0 auto; padding: 72px 40px 80px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: start;
}
.service-body__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 32px;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 18px;
}
.service-body__p { font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; }
.service-body__h3 {
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 24px;
  color: var(--ink); margin-bottom: 18px;
}
.checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 38px; }
.checklist__item { display: flex; gap: 13px; align-items: flex-start; }
.checklist__check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--lavender-chip);
  color: var(--purple); display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex: none; margin-top: 1px;
}
.checklist__text { font-size: 16px; line-height: 1.5; color: #3c3852; }
.pullquote {
  border-left: 3px solid var(--purple); padding: 4px 0 4px 26px;
}
.pullquote p {
  font-family: 'Newsreader', serif; font-style: italic;
  font-size: 22px; line-height: 1.5; color: var(--ink);
}

/* Sidebar */
.service-sidebar {
  position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px;
}
.sidebar-cta {
  background: var(--purple); border-radius: 18px; padding: 30px;
}
.sidebar-cta__h3 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 24px;
  color: #fff; margin-bottom: 10px;
}
.sidebar-cta__p { font-size: 14.5px; line-height: 1.6; color: #e2d8f7; margin-bottom: 22px; }
.sidebar-facts {
  border: 1px solid var(--border-card); border-radius: 18px; padding: 28px;
}
.sidebar-facts__label {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted-label); margin-bottom: 18px;
}
.fact-row {
  display: flex; justify-content: space-between; padding: 11px 0;
  border-bottom: 1px solid var(--border-row); font-size: 14.5px;
}
.fact-row:last-child { border-bottom: none; }
.fact-row__key { color: var(--body-muted); }
.fact-row__val { color: var(--ink); font-weight: 600; }

/* Related services */
.related-section {
  background: var(--off-white); border-top: 1px solid var(--border);
}
.related-section__inner { max-width: 1100px; margin: 0 auto; padding: 76px 40px; }
.related-section__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 32px;
  color: var(--ink); margin-bottom: 36px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-card__img { height: 200px; width: 100%; object-fit: cover; display: block; flex-shrink: 0; }
.related-card__body { padding: 22px; }
.related-card__title {
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 20px;
  color: var(--ink); margin-bottom: 8px;
}
.related-card__desc { font-size: 14px; line-height: 1.55; margin-bottom: 14px; color: var(--body-muted); }
.related-card__link {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple);
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-header {
  max-width: 760px; margin: 0 auto; padding: 56px 40px 0;
}
.article-cat {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple);
  background: var(--lavender-bg); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.article-header__h1 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 48px;
  line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 24px;
}
.article-byline {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 34px; border-bottom: 1px solid var(--border);
}
.article-byline__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--lavender-chip); flex: none;
}
.article-byline__name { font-weight: 600; color: var(--ink); font-size: 15px; }
.article-byline__meta { font-size: 13px; color: var(--muted-label); }

.article-hero-wrap {
  max-width: 1000px; margin: 36px auto 0; padding: 0 40px;
}
.article-hero-wrap__img { height: 420px; border-radius: 18px; width: 100%; object-fit: cover; display: block; }

.article-prose {
  max-width: 720px; margin: 0 auto; padding: 52px 40px 80px;
  font-size: 18px; line-height: 1.8; color: var(--body-alt);
}
.article-prose p { margin-bottom: 26px; }
.article-prose h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 30px;
  line-height: 1.2; color: var(--ink); margin: 44px 0 18px;
}
.article-prose ul { margin: 0 0 26px; padding-left: 22px; }
.article-prose li { margin-bottom: 11px; }
.article-prose blockquote {
  margin: 38px 0; padding: 4px 0 4px 28px; border-left: 3px solid var(--purple);
}
.article-prose blockquote p {
  font-family: 'Newsreader', serif; font-style: italic;
  font-size: 24px; line-height: 1.45; color: var(--ink); margin-bottom: 0;
}

.article-footer {
  margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.article-footer__author { display: flex; align-items: center; gap: 14px; }
.article-footer__avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--lavender-chip); flex: none;
}
.article-footer__name { font-weight: 600; color: var(--ink); font-size: 15px; }
.article-footer__title { font-size: 13px; color: var(--muted-label); }

/* More from blog */
.more-blog { background: var(--off-white); border-top: 1px solid var(--border); }
.more-blog__inner { max-width: 1100px; margin: 0 auto; padding: 72px 40px; }
.more-blog__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 30px;
  color: var(--ink); margin-bottom: 34px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card__img { height: 170px; border-radius: 14px; margin-bottom: 16px; width: 100%; object-fit: cover; display: block; }
.blog-card__cat {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 9px;
}
.blog-card__title {
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 20px;
  line-height: 1.25; color: var(--ink);
}
.blog-card__title:hover { color: var(--purple); }

/* ============================================================
   BLOG INDEX
   ============================================================ */
.blog-hero {
  background: linear-gradient(160deg, var(--lavender-bg), #ffffff);
  padding: 64px 40px;
}
.blog-hero__inner { max-width: 1100px; margin: 0 auto; }
.blog-hero__h1 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 54px;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px;
}
.blog-hero__lead { font-size: 18px; line-height: 1.6; color: var(--body); max-width: 600px; }
.blog-main { max-width: 1100px; margin: 0 auto; padding: 72px 40px; }
.blog-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }

/* ============================================================
   LOCATION PAGE
   ============================================================ */
.location-hero {
  background: linear-gradient(160deg, var(--lavender-bg), #ffffff);
}
.location-hero__inner { max-width: 1100px; margin: 0 auto; padding: 54px 40px 64px; }
.location-hero__h1 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 54px;
  line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px; max-width: 720px;
}
.location-hero__lead { font-size: 18px; line-height: 1.6; max-width: 620px; }
.location-body { max-width: 1100px; margin: 0 auto; padding: 72px 40px; }

/* ============================================================
   LOCATION PAGE — new two-column layout
   ============================================================ */
.loc-hero { background: linear-gradient(160deg, var(--lavender-bg), #fff); }
.loc-hero__inner { max-width: 1100px; margin: 0 auto; padding: 56px 40px 60px; }
.loc-hero__h1 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 52px; line-height: 1.07; letter-spacing: -.02em; color: var(--ink); margin-bottom: 16px; max-width: 700px; }
.loc-hero__lead { font-size: 18px; line-height: 1.65; color: var(--body); max-width: 600px; }

.loc-body { padding: 72px 40px; }
.loc-body__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: start; }

/* Left column */
.loc-content__h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 34px; line-height: 1.2; letter-spacing: -.015em; color: var(--ink); margin-bottom: 18px; }
.loc-content__h3 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 22px; color: var(--ink); margin: 36px 0 16px; }
.loc-content__p { font-size: 16px; line-height: 1.78; color: var(--body); margin-bottom: 16px; }

/* Right sidebar */
.loc-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }

.loc-contact-card { background: #fff; border: 1px solid #e8e2f5; border-radius: 20px; padding: 32px 28px; box-shadow: 0 4px 24px rgba(91,63,160,.07); }
.loc-contact-card__label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); margin-bottom: 20px; }
.loc-contact-card__row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 15px; line-height: 1.5; color: var(--body); }
.loc-contact-card__row svg { flex-shrink: 0; margin-top: 2px; color: var(--purple); }

.loc-map { border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(28,22,51,.08); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .container, .container--md { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; padding: 56px 24px 48px; }
  .hero__single-img { display: none; }
  .hero__h1 { font-size: 44px; }
  .standards { grid-template-columns: 1fr; padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .womens-section { grid-template-columns: 1fr; padding: 40px 24px 64px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-section { grid-template-columns: 1fr; padding: 64px 24px; }
  .service-body { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .loc-body__inner { grid-template-columns: 1fr; }
  .loc-sidebar { position: static; }
  .loc-hero__h1 { font-size: 38px; }
  .related-grid, .blog-grid, .blog-index-grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-media { margin-top: 24px; }
  .service-media .service-media__img { margin-top: 0; }
}

/* ==========================================================
   FORMS
   ========================================================== */
.form-section { background: #faf8fd; border-top: 1px solid #efeaf8; border-bottom: 1px solid #efeaf8; padding: 80px 40px; }
.form-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.form-layout__trust { padding-top: 8px; }
.form-layout__trust h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 34px; line-height: 1.2; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 16px; }
.form-layout__trust p { font-size: 16px; line-height: 1.75; color: var(--body); margin-bottom: 24px; }
.form-layout__trust .checklist__item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.form-layout__trust .checklist__check { color: var(--purple); font-size: 15px; line-height: 1.6; flex-shrink: 0; }
.form-layout__trust .checklist__text { font-size: 15px; line-height: 1.6; color: var(--body); }
.form-card { background: #fff; border: 1px solid #e8e2f5; border-radius: 20px; padding: 40px 36px; box-shadow: 0 4px 24px rgba(91,63,160,.07); }
.form-card__title { font-family: 'Newsreader', serif; font-weight: 500; font-size: 22px; color: var(--ink); margin-bottom: 6px; }
.form-card__sub { font-size: 14px; color: var(--body); margin-bottom: 28px; }
.form-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; flex: 1 1 200px; }
.form-group--full { flex: 1 1 100%; }
.form-group label { font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--ink); }
.form-group label .req { color: var(--purple); margin-left: 2px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid #d8d2ec; border-radius: 10px; font-size: 15px; font-family: 'Hanken Grotesk', sans-serif; color: var(--ink); background: #fff; transition: border-color .18s; box-sizing: border-box; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,63,160,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input[type="file"] { padding: 8px 10px; font-size: 13px; cursor: pointer; }
.form-group--radio legend,
.form-group--check legend { font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--ink); margin-bottom: 8px; display: block; }
.form-group--radio legend .req,
.form-group--check legend .req { color: var(--purple); margin-left: 2px; }
.radio-grid, .check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.radio-opt, .check-opt { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--body); cursor: pointer; }
.radio-opt input, .check-opt input { width: 16px; height: 16px; accent-color: var(--purple); cursor: pointer; }
.form-section__divider { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); border-top: 1px solid #efeaf8; padding-top: 20px; margin: 8px 0 16px; }
.form-hp { display: none !important; }
.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 16px; padding: 14px 24px; }
.form-msg { margin-top: 12px; font-size: 14px; text-align: center; min-height: 20px; }
.form-msg--error { color: #c0392b; }

/* Referral form two-column rows */
.form-row--half .form-group { flex: 1 1 calc(50% - 8px); min-width: 0; }

/* Wide single-form pages */
.form-section--wide .form-layout { grid-template-columns: 1fr; max-width: 760px; }
.form-section--wide .form-layout__trust { display: none; }

@media (max-width: 900px) {
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-section { padding: 56px 24px; }
}

/* ==========================================================
   END FORMS
   ========================================================== */

@media (max-width: 640px) {
  .util-bar__inner { padding: 8px 20px; justify-content: center; }
  .util-bar__portal { display: none; }
  .util-bar__phone { white-space: nowrap; }
  .site-header__inner { padding: 14px 20px; }
  .site-nav { display: none; }
  .site-nav.is-open { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 20px 24px; z-index: 200; }
  /* Collapsed by default on mobile — the arrow is the toggle. */
  .site-nav__dropdown { position: static; transform: none; opacity: 1; pointer-events: all; box-shadow: none; border: none; padding: 4px 0 8px 16px; min-width: auto; display: none; }
  .site-nav__item.is-expanded .site-nav__dropdown { display: block; }
  .site-nav__item { width: 100%; padding-bottom: 0; margin-bottom: 0; }
  .site-nav__link { padding: 11px 0; justify-content: space-between; width: 100%; }
  .site-nav__arrow { font-size: 12px; opacity: .75; padding: 6px 10px; margin: -6px -10px -6px 0; transition: transform .2s; }
  .site-nav__item.is-expanded .site-nav__arrow { transform: rotate(180deg); }
  .site-nav .btn { margin-top: 12px; }
  .nav-toggle { display: block; }
  .hero__h1 { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .related-grid, .blog-grid, .blog-index-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .article-header { padding: 40px 20px 0; }
  .article-hero-wrap, .article-prose { padding-left: 20px; padding-right: 20px; }
  .announce-band__inner { flex-direction: column; text-align: center; }
  .article-footer { flex-direction: column; align-items: flex-start; }
  .container--sm { padding: 0 20px; }
}

/* ============================================================
   NEUROLOGY COMPONENTS
   ============================================================ */

/* ---- Logo ------------------------------------------------- */
.logo__img { height: 46px; width: auto; display: block; }
.site-footer__logo-img { height: 40px; width: auto; display: block; }
@media (max-width: 640px) {
  .logo__img { height: 36px; }
}

/* ---- Photographs ------------------------------------------- */
.panel-photo { background: var(--lavender-bg); }
.panel-photo img { object-fit: cover; width: 100%; height: 100%; }
.hero__art img { object-fit: cover; object-position: center 22%; }
.provider__portrait img { object-fit: cover; object-position: center 12%; }

/* ---- Hero artwork ----------------------------------------- */
.hero__art {
  height: 520px; border-radius: 24px; overflow: hidden;
  background: linear-gradient(155deg, #efe9fb, #faf8fd 55%, #f3eefc);
  border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
}
.hero__art svg { width: 100%; height: 100%; display: block; }

.panel-art {
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(150deg, #f1ebfc, #faf8fd);
  border: 1px solid var(--border-card);
}
.panel-art svg { width: 100%; height: 100%; display: block; }

/* ---- Trust / affiliations strip ---------------------------- */
.affil {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: #fff;
}
.affil__inner { max-width: 1200px; margin: 0 auto; padding: 34px 40px; }
.affil__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-label); text-align: center; margin-bottom: 20px;
}
.affil__list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 12px 0;
}
.affil__item {
  font-family: 'Newsreader', serif; font-size: 16.5px; color: #3c3852;
  white-space: nowrap; display: inline-flex; align-items: center;
}
.affil__item + .affil__item::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: #d5cbee; margin: 0 15px; flex: none;
}
/* Too narrow for one row: drop the separators and let the names wrap as a list. */
@media (max-width: 1180px) {
  .affil__list { gap: 10px 26px; }
  .affil__item + .affil__item::before { display: none; }
}

/* ---- Stat band -------------------------------------------- */
.stat-band { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-band__inner {
  max-width: 1100px; margin: 0 auto; padding: 56px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat__num {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 44px;
  line-height: 1; color: var(--purple); margin-bottom: 10px; letter-spacing: -0.02em;
}
.stat__label { font-size: 14px; line-height: 1.5; color: var(--body-muted); }

/* ---- Condition grid --------------------------------------- */
.cond-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cond-card {
  display: block; background: #fff; border: 1px solid var(--border-card);
  border-radius: 16px; padding: 28px 26px 26px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cond-card:hover {
  border-color: #ddd2f4; box-shadow: 0 10px 30px rgba(91,63,160,.09); transform: translateY(-2px);
}
.cond-card__icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--lavender-chip);
  color: var(--purple); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.cond-card__title {
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 21px;
  color: var(--ink); margin-bottom: 8px; line-height: 1.25;
}
.cond-card__desc { font-size: 14.5px; line-height: 1.6; color: var(--body-muted); margin-bottom: 14px; }
.cond-card__link {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple);
}

/* ---- Symptom chips ----------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.chip {
  font-size: 14px; color: var(--body-alt); background: var(--lavender-bg);
  border: 1px solid var(--border-card); border-radius: 999px; padding: 7px 15px;
}

/* ---- Alert / red-flag callout ------------------------------ */
.callout {
  border: 1px solid #f0d9d9; background: #fdf6f6; border-radius: 14px;
  padding: 22px 24px; margin: 8px 0 32px;
}
.callout__title { font-weight: 700; font-size: 15px; color: #8f3b3b; margin-bottom: 8px; }
.callout__body { font-size: 14.5px; line-height: 1.65; color: #6d4a4a; }

/* ---- Test / diagnostic cards -------------------------------- */
.test-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.test-card {
  border: 1px solid var(--border-card); border-radius: 16px; padding: 30px 28px; background: #fff;
}
.test-card__abbr {
  font-family: 'Newsreader', serif; font-style: italic; font-size: 15px;
  color: var(--purple); margin-bottom: 6px;
}
.test-card__title {
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 22px;
  color: var(--ink); margin-bottom: 10px;
}
.test-card__desc { font-size: 15px; line-height: 1.7; color: var(--body); margin-bottom: 16px; }
.test-card__meta {
  display: flex; gap: 22px; font-size: 13px; color: var(--muted-label);
  border-top: 1px solid var(--border-row); padding-top: 14px;
}
.test-card__meta b { color: var(--ink); font-weight: 600; }

/* ---- FAQ accordion ------------------------------------------ */
.faq-group { margin-bottom: 44px; }
.faq-group__label {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 18px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--ink); padding: 22px 40px 22px 0; position: relative;
  display: block; line-height: 1.45;
}
.faq-item__q::after {
  content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--purple); line-height: 1;
  transition: transform 0.2s;
}
.faq-item.is-open .faq-item__q::after { content: '\2212'; }
.faq-item__q:hover { color: var(--purple); }
.faq-item__a { display: none; padding: 0 40px 24px 0; }
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a p { font-size: 16px; line-height: 1.75; color: var(--body); margin-bottom: 14px; }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a ul { margin: 0 0 14px; padding-left: 20px; font-size: 16px; line-height: 1.75; color: var(--body); }
.faq-item__a li { margin-bottom: 7px; }

/* ---- Visit timeline ----------------------------------------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.tl-step { position: relative; padding: 0 22px 0 0; }
.tl-step__dot {
  width: 34px; height: 34px; border-radius: 50%; background: #fff;
  border: 2px solid var(--purple); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; margin-bottom: 18px; position: relative; z-index: 2;
}
.tl-step::before {
  content: ''; position: absolute; top: 17px; left: 34px; right: 0;
  height: 2px; background: var(--border-card);
}
.tl-step:last-child::before { display: none; }
.tl-step__title { font-weight: 700; font-size: 16.5px; color: var(--ink); margin-bottom: 8px; }
.tl-step__desc { font-size: 14.5px; line-height: 1.65; color: var(--body-muted); }

/* ---- Provider card (about page) ----------------------------- */
.provider {
  display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start;
}
.provider__portrait {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--border-card);
  background: linear-gradient(150deg, #efe9fb, #faf8fd);
  aspect-ratio: 3 / 4;
}
.provider__portrait svg { width: 100%; height: 100%; display: block; }
.provider__name {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 38px;
  letter-spacing: -0.015em; color: var(--ink); margin-bottom: 6px;
}
.provider__role {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 24px;
}
.provider__p { font-size: 16.5px; line-height: 1.78; color: var(--body); margin-bottom: 18px; }
.cred-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px;
  margin-top: 34px; padding-top: 32px; border-top: 1px solid var(--border);
}
.cred__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-label); margin-bottom: 10px;
}
.cred__value { font-size: 15px; line-height: 1.65; color: var(--ink); }
.cred__value span { display: block; color: var(--body); }

/* ---- Two-column info section -------------------------------- */
.split {
  max-width: 1200px; margin: 0 auto; padding: 92px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__eyebrow { margin-bottom: 14px; }
.split__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 40px;
  line-height: 1.14; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 22px;
}
.split__p { font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; }
.split__media { height: 420px; }
.split__media > .panel-art,
.section > div > .split__media > .panel-art { height: 100%; }

/* ---- Section headers ---------------------------------------- */
.section { max-width: 1200px; margin: 0 auto; padding: 92px 40px; }
.section--tight { padding: 68px 40px; }
.section--alt { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: none; padding: 0; }
.section--alt > .section { padding-top: 92px; padding-bottom: 92px; }
.section__eyebrow { margin-bottom: 12px; }
.section__h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 40px;
  line-height: 1.14; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 16px;
}
.section__lead { font-size: 17px; line-height: 1.7; color: var(--body); max-width: 620px; margin-bottom: 48px; }
.section__head--center { text-align: center; }
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }

/* ---- Contact detail rows ------------------------------------ */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.detail-card {
  border: 1px solid var(--border-card); border-radius: 16px; padding: 28px 26px; background: #fff;
}
.detail-card__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 12px;
}
.detail-card__value { font-size: 16px; line-height: 1.65; color: var(--ink); }
.detail-card__value a { color: var(--ink); border-bottom: 1px solid #d8cbf2; }
.detail-card__value a:hover { color: var(--purple); }
.detail-card__note { font-size: 13.5px; line-height: 1.6; color: var(--body-muted); margin-top: 10px; }

/* ---- Hours table -------------------------------------------- */
.hours-row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 11px 0; border-bottom: 1px solid var(--border-row); font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day { color: var(--body-muted); }
.hours-row__time { color: var(--ink); font-weight: 600; }

/* ---- Prose (policy pages) ----------------------------------- */
.prose { max-width: 760px; margin: 0 auto; padding: 56px 40px 90px; }
.prose h2 {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 28px;
  color: var(--ink); margin: 42px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16.5px; line-height: 1.8; color: var(--body); margin-bottom: 18px; }
.prose ul { margin: 0 0 20px; padding-left: 22px; font-size: 16.5px; line-height: 1.8; color: var(--body); }
.prose li { margin-bottom: 9px; }

/* ---- Responsive --------------------------------------------- */
@media (max-width: 900px) {
  .hero__art { display: none; }
  .section, .split { padding: 64px 24px; }
  .section--alt > .section { padding-top: 64px; padding-bottom: 64px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { height: 300px; }
  .cond-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .stat-band__inner { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding: 48px 24px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .tl-step::before { display: none; }
  .tl-step { padding-right: 0; }
  .provider { grid-template-columns: 1fr; gap: 32px; }
  .provider__portrait { max-width: 280px; }
  .detail-grid { grid-template-columns: 1fr; }
  .affil__inner { padding: 28px 24px; }
}

@media (max-width: 640px) {
  .cond-grid { grid-template-columns: 1fr; }
  .stat-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .timeline { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; gap: 22px; }
  .section, .split { padding: 52px 20px; }
  .prose { padding: 40px 20px 70px; }
  .section__h2, .split__h2 { font-size: 31px; }
  .provider__name { font-size: 30px; }
}
