:root {
  --white: #ffffff;
  --page: #fbfaff;
  --lavender: #ede7fb;
  --lavender-2: #e4dbfa;
  --lavender-3: #d7c9f3;
  --primary: #552b94;
  --primary-2: #6e37b7;
  --primary-3: #7b5ad0;
  --indigo: #34429c;
  --clinical-blue: #5d7fd4;
  --deep-blue: #081b50;
  --navy: #071743;
  --text: #0b1b44;
  --muted: #4d5879;
  --soft-muted: #7b83a1;
  --border: #ded7f2;
  --border-blue: #c9d2f4;
  --success: #2e9d71;
  --error: #c43d65;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Lato", "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  --font-label: "Montserrat", "Inter", "Segoe UI", Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 8px 22px rgba(8, 27, 80, .08);
  --shadow-md: 0 18px 42px rgba(80, 45, 146, .12);
  --max: 1280px;
  --wide: 1500px;
  --space: clamp(1.25rem, 1rem + 1.4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--page) 54%, #fff 100%);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--deep-blue);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.75rem, 3.6vw, 4rem); max-width: 18ch; }
h2 { font-size: clamp(1.85rem, 2.9vw, 2.65rem); }
h3 { font-size: clamp(1.12rem, 1.45vw, 1.48rem); }
.hero-title {
  max-width: none;
}
.hero-title > span,
.hero-subtitle > span {
  display: block;
}
.title-accent {
  color: var(--primary-2);
}
p + p { margin-top: 1rem; }
ul { padding-left: 1.1rem; }
:focus-visible { outline: 4px solid rgba(93, 127, 212, .55); outline-offset: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--navy); color: #fff; padding: .75rem 1rem; }
.skip-link:focus { left: 0; }
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--space); }
.section { padding-block: clamp(2.4rem, 4.4vw, 4.7rem); }
.section-head { display: grid; gap: .45rem; margin-bottom: 1.7rem; }
.center { text-align: center; }
.eyebrow {
  font: 800 .78rem/1 var(--font-label);
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow.light { color: #fff; }
.lede { color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.18rem); max-width: 43rem; }
.lede.purple { color: var(--primary-2); font-family: var(--font-heading); font-size: clamp(1.8rem, 3.3vw, 2.65rem); line-height: 1.06; }

.site-header {
  position: relative;
  z-index: 80;
  background: #fff;
  border-bottom: 0;
}
.nav-shell {
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  min-height: clamp(132px, 12vw, 190px);
  padding: clamp(1rem, 1.4vw, 1.6rem) var(--space) .5rem;
  display: grid;
  grid-template-columns: clamp(210px, 19vw, 320px) minmax(0, 1fr) auto;
  grid-template-rows: minmax(42px, auto) 1fr;
  align-items: start;
  column-gap: clamp(1.5rem, 3vw, 4rem);
  row-gap: .75rem;
}
.brand { display: inline-flex; align-items: flex-start; grid-column: 1; grid-row: 1 / 3; }
.brand img { width: clamp(210px, 18vw, 306px); aspect-ratio: 3 / 2; object-fit: contain; }
.primary-nav { grid-column: 2 / 4; grid-row: 2; align-self: start; }
.primary-nav ul { display: flex; justify-content: center; align-items: center; gap: clamp(1.6rem, 3vw, 4rem); list-style: none; padding: 0; }
.primary-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: clamp(.93rem, .9vw, 1.04rem);
  font-weight: 900;
  padding: .55rem 0 .7rem;
  border-bottom: 3px solid transparent;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--primary-2); border-color: var(--primary-2); }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: clamp(1.4rem, 2.4vw, 3rem); grid-column: 3; grid-row: 1; }
.nav-phone { display: inline-flex; align-items: center; gap: .55rem; color: var(--navy); font-size: clamp(.95rem, .9vw, 1.08rem); font-weight: 900; text-decoration: none; white-space: nowrap; }
.nav-phone-icon,
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
}
.nav-phone-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-arrow {
  margin-left: .2rem;
  font-weight: 900;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .75rem; cursor: pointer; }
.nav-toggle span { width: 28px; height: 2px; background: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .82rem 1.35rem;
  border: 1px solid var(--primary-2);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #6d35b9 0%, #4d218c 100%);
  color: #fff;
  font: 800 .9rem/1 var(--font-label);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: filter .18s ease, transform .18s ease, border-color .18s ease;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--primary); box-shadow: none; }
.btn-light { background: #fff; color: var(--primary); border-color: #fff; }
.btn-small { min-height: 52px; padding: .9rem 1.65rem; font-size: .92rem; white-space: nowrap; }
.button-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.35rem; }
.button-row.single { justify-content: center; }
.plain-link { display: inline-flex; color: #fff; font-weight: 900; text-decoration: none; margin-top: 1rem; }

.hero { padding-block: clamp(1.5rem, 2vw, 2.4rem) clamp(3rem, 5vw, 5.5rem); overflow: hidden; }
.hero-grid { max-width: var(--wide); display: grid; grid-template-columns: minmax(620px, .95fr) minmax(580px, 1.05fr); align-items: center; gap: clamp(1.5rem, 2.8vw, 3.5rem); }
.hero-copy { display: grid; gap: 1.15rem; }
.hero-copy h1 { max-width: none; }
.hero-copy .lede { max-width: 600px; }
.hero-media { position: relative; min-height: clamp(520px, 40vw, 660px); }
.blob-frame { border-radius: 30% 0 0 52% / 9% 0 0 78%; overflow: hidden; box-shadow: var(--shadow-md); border-left: clamp(18px, 1.8vw, 30px) solid rgba(215, 201, 243, .95); }
.blob-frame img { width: 100%; height: 100%; object-fit: cover; min-height: inherit; }
.brand-line { margin-top: .25rem; color: var(--primary); font: 800 clamp(.92rem, 1vw, 1.12rem)/1 var(--font-label); letter-spacing: .22em; text-transform: uppercase; }
.brand-line span::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); margin-inline: 1rem; vertical-align: middle; }

.split-grid, .about-grid, .contact-grid, .faq-grid, .provider-cta-grid, .footer-cta-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.split-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
.soft-photo { border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); object-fit: cover; width: 100%; }
.check-list { list-style: none; padding: 0; display: grid; gap: .72rem; }
.check-list li { position: relative; padding-left: 1.65rem; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .43rem;
  width: .78rem;
  height: .78rem;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 24%, var(--primary-2) 26% 100%);
}
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 2rem; margin-top: 1.5rem; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.3rem; }

.card-grid, .service-grid, .process-grid, .value-grid { display: grid; gap: 1rem; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four, .process-grid.four, .value-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.icon-card, .resource-card, .info-card, .mini-panel, .todo-panel {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.icon-card { text-align: center; }
.icon-circle, .large-icon, .number, .round-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font: 900 .88rem/1 var(--font-label);
  margin-bottom: 1rem;
}
.icon-circle.blue { background: var(--clinical-blue); }
.icon-circle.lavender { background: var(--lavender-3); color: var(--primary); }
.large-icon { width: 76px; height: 76px; background: #dbe6ff; color: var(--indigo); }
.mark-svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.large-icon .mark-svg { width: 38px; height: 38px; }
.number { width: 48px; height: 48px; background: var(--primary-2); }

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  padding-block: 0;
  background: linear-gradient(110deg, #fff 0%, #fff 48%, var(--lavender) 48%, #fff 100%);
}
.feature-band.reverse { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); background: linear-gradient(100deg, #fff 0%, var(--lavender) 48%, #fff 48%, #fff 100%); }
.feature-image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.feature-copy { padding: clamp(2rem, 4vw, 4rem); display: grid; align-content: center; gap: 1rem; }
.promise-strip { background: linear-gradient(180deg, #fff 0%, #f7f4ff 100%); }
.promise-strip h2 { margin-bottom: 1.8rem; }
.process-grid article, .value-grid article {
  background: rgba(255, 255, 255, .78);
  border-right: 1px solid var(--border-blue);
  padding: 1rem;
}
.process-grid article:last-child, .value-grid article:last-child { border-right: 0; }
.dot-text { color: var(--primary-2); }

.service-area {
  color: #fff;
  padding-block: clamp(2rem, 4vw, 3.25rem);
  background-image: linear-gradient(90deg, rgba(8, 27, 80, .88), rgba(85, 43, 148, .74)), var(--banner);
  background-size: cover;
  background-position: center;
}
.service-area h2 { color: #fff; max-width: 760px; }
.service-area-grid { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.provider-home { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); padding-block: 0; }
.provider-home img { width: 100%; height: 300px; object-fit: cover; }
.final-card-section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #f5efff, #eef4ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.cta-contact { display: grid; gap: .25rem; font-weight: 900; }

.services-help-section { padding-block: clamp(2rem, 4vw, 3.5rem); }
.services-help-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(220px, .45fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.5rem);
  background: linear-gradient(135deg, #f6f0ff, #eef5ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.services-help-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #6d35b9 0%, #4d218c 100%);
  box-shadow: var(--shadow-sm);
}
.services-help-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-help-copy h2 { font-size: clamp(1.85rem, 2.6vw, 2.65rem); }
.services-help-copy p { max-width: 620px; }
.services-help-contact {
  display: grid;
  gap: .55rem;
  padding-inline: clamp(1rem, 2vw, 2rem);
  border-left: 1px solid var(--border-blue);
  font-weight: 900;
}
.services-help-button {
  min-width: 250px;
}

.about-grid { grid-template-columns: .8fr 1.2fr; align-items: start; }
.profile-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.5rem;
  background: linear-gradient(135deg, #f8f4ff, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
}
.profile-card img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; }
.script-label { color: var(--primary-2); font-family: var(--font-heading); font-size: 2rem; font-style: italic; }
.credential { color: var(--navy); font-weight: 900; font-size: 1.2rem; }
.values-section { background: #fff; }
.value-grid article { text-align: center; }

.service-list { padding-top: 2rem; }
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.service-card {
  display: grid;
  grid-template-columns: minmax(150px, .78fr) 1fr;
  gap: .95rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card > img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.service-card > div, .service-card .mini-panel { padding: 1.1rem; }
.service-card h2 { font-size: clamp(1.42rem, 1.8vw, 1.82rem); }
.service-card p, .service-card li { font-size: .92rem; line-height: 1.45; }
.service-card-wide { grid-column: 1 / -1; grid-template-columns: .5fr .65fr .45fr; }
.value-strip { padding-block: 2rem; background: #fff; border-top: 1px solid var(--border); }

.partner-strip { background: linear-gradient(180deg, #fff, #f6f2ff); }
.referral-icons { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: .35rem; text-align: center; }
.referral-icons span {
  border-right: 1px solid var(--border);
  color: var(--deep-blue);
  font-weight: 900;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: .55rem;
  font-size: .84rem;
}
.provider-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.provider-cta {
  color: #fff;
  background: linear-gradient(90deg, #203fbb, #6e37b7);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
.provider-cta h2, .provider-cta a { color: #fff; }
.provider-cta .btn-light { color: var(--primary); }
.provider-cta-grid { grid-template-columns: 1.1fr .8fr auto; align-items: center; }
.todo-panel { border-color: #f1b7cf; background: #fff7fb; }

.contact-grid { grid-template-columns: 320px 1fr; align-items: start; }
.contact-rail { display: grid; gap: 1.3rem; }
.contact-row { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; align-items: start; }
.contact-row h2 { font-family: var(--font-body); font-size: 1rem; font-weight: 900; }
.round-mark { background: var(--lavender); color: var(--primary-2); }
.round-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.2rem, 2.4vw, 1.65rem);
}
.form-head, .full { grid-column: 1 / -1; }
.form label, .radio-field { display: grid; gap: .35rem; font-weight: 900; color: var(--navy); border: 0; padding: 0; }
.form input, .form textarea, .form select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-sm);
  padding: .62rem .75rem;
  color: var(--text);
  background: #fff;
  font: inherit;
}
.form textarea { resize: vertical; }
.contact-form textarea { min-height: 86px; }
.radio-field { display: flex; flex-wrap: wrap; gap: 1rem; }
.radio-field legend { width: 100%; margin-bottom: .35rem; font-weight: 900; }
.radio-field label { display: flex; align-items: center; gap: .55rem; font-weight: 700; }
.checkbox-row { display: flex; align-items: center; gap: .55rem; font-size: .5rem; line-height: 1.35; font-weight: 700; }
.radio-field input, .checkbox-row input { width: auto; min-height: auto; }
.hp { position: absolute; left: -9999px; }
.secure-note { color: var(--muted); font-size: .9rem; }
.contact-cards { padding-top: 0; }
.info-card.blue-card { background: linear-gradient(135deg, #eef4ff, #fff); }
.emergency-note {
  background: #fff2fb;
  border: 1px solid #f1b7cf;
  border-radius: var(--radius-md);
  padding: 1.3rem var(--space);
  margin-bottom: 2rem;
}
.emergency-note h2 { color: var(--error); font-family: var(--font-body); font-size: 1.1rem; font-weight: 900; }
.map-strip { position: relative; min-height: 230px; overflow: hidden; }
.map-strip img { width: 100%; min-height: 230px; object-fit: cover; }
.map-card { position: absolute; left: clamp(1rem, 6vw, 5rem); top: 50%; transform: translateY(-50%); max-width: 330px; background: #fff; border-radius: var(--radius-md); padding: 1.4rem; box-shadow: var(--shadow-md); }

.faq-grid { grid-template-columns: .45fr 1fr; }
.faq-list { display: grid; gap: 1rem; }
.faq-list article { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.2rem; }
.not-found { min-height: 50vh; display: grid; align-items: center; }

.site-footer { background: #fff; }
.home-footer-panel { border-top: 1px solid var(--border); padding-block: 1.45rem; background: #fff; }
.home-footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.35fr;
  align-items: stretch;
  gap: 1.5rem;
}
.footer-info-group {
  display: grid;
  align-content: start;
  gap: .55rem;
  padding-right: 1.25rem;
  border-right: 1px solid var(--border-blue);
}
.footer-info-group p { margin: 0; }
.footer-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: .55rem;
  border-radius: 50%;
  background: #edf2ff;
  color: var(--primary-2);
  vertical-align: top;
}
.footer-mini-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-next-card {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: .6rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f3edff, #eef3ff);
  padding: 1.25rem 1.45rem;
}
.footer-next-card h2 { font-size: 1.45rem; }
.home-footer-bottom { background: linear-gradient(90deg, #35208a, #6e37b7); color: #fff; }
.home-footer-bottom a { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .75rem;
  font-size: .78rem;
}

@media (max-width: 980px) {
  .brand img { width: 132px; }
  .nav-shell { gap: .8rem; }
  .primary-nav ul { gap: .62rem; }
  .primary-nav a { font-size: .78rem; }
  .nav-phone { font-size: .78rem; }
  .btn-small { padding-inline: .75rem; }
}

@media (max-width: 840px) {
  .nav-phone { display: none; }
}

@media (max-width: 760px) {
  .nav-shell {
    position: relative;
    min-height: 86px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-rows: auto;
    align-items: center;
    padding-block: .7rem;
  }
  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-items: center;
  }
  .brand img { width: 145px; }
  .nav-toggle {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding: .7rem var(--space); gap: 0; }
  .primary-nav li { border-top: 1px solid var(--border); }
  .primary-nav a { display: block; padding: .85rem 0; }
  .nav-actions { display: none; }
  .hero-grid, .split-grid, .about-grid, .feature-band, .feature-band.reverse, .provider-home, .contact-grid, .faq-grid, .provider-panel, .provider-cta-grid, .home-footer-grid {
    grid-template-columns: 1fr;
  }
  h1 { max-width: 12ch; }
  .hero-title > span,
  .hero-subtitle > span {
    display: inline;
  }
  .hero-title > span::after,
  .hero-subtitle > span::after {
    content: " ";
  }
  .hero-media { min-height: 320px; }
  .three-col, .two-col, .card-grid.three, .card-grid.four, .process-grid.four, .process-grid.three, .value-grid.four, .value-grid.five, .service-grid, .card-grid.two {
    grid-template-columns: 1fr;
  }
  .process-grid article, .value-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border-blue);
  }
  .process-grid article:last-child, .value-grid article:last-child { border-bottom: 0; }
  .service-card, .service-card-wide { grid-column: auto; grid-template-columns: 1fr; }
  .service-card > img { min-height: 240px; }
  .cta-card { grid-template-columns: 1fr; }
  .services-help-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .services-help-contact {
    border-left: 0;
    border-top: 1px solid var(--border-blue);
    padding: 1rem 0 0;
  }
  .services-help-button {
    min-width: 0;
  }
  .contact-form { grid-template-columns: 1fr; }
  .contact-grid .contact-form { order: -1; }
  .checkbox-row { font-size: .68rem; }
  .footer-bottom { flex-direction: column; }
  .footer-info-group { border-right: 0; border-bottom: 1px solid var(--border-blue); padding: 0 0 1rem; }
}

@media (max-width: 560px) {
  .container, .nav-shell { padding-inline: 1rem; }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  .brand img { width: 145px; }
  .button-row, .button-row .btn, .btn { width: 100%; }
  .blob-frame { border-left-width: 9px; border-radius: 32px; }
  .hero-media, .feature-image img { min-height: 250px; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-card img { width: 160px; }
  .referral-icons { grid-template-columns: 1fr; }
  .map-card { position: static; transform: none; max-width: none; margin: 1rem; }
  .map-strip { display: grid; }
  .map-strip img { order: 2; }
  .footer-logo { width: 160px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
