:root {
  --navy: #0a3156;
  --deep-navy: #061f38;
  --teal: #1c747a;
  --mint: #8ed8c3;
  --seafoam: #d9f0e9;
  --paper: #fbfcf8;
  --soft: #eef7f3;
  --ink: #17222b;
  --muted: #5c6b73;
  --warm: #b7684b;
  --line: rgba(10, 49, 86, 0.16);
  --shadow: 0 20px 60px rgba(6, 31, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--deep-navy);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 18px;
  color: var(--deep-navy);
  background: var(--mint);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding: 3px clamp(16px, 4vw, 32px) 11px;
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  --logo-height: clamp(68px, 7vw, 80px);
  position: relative;
  display: block;
  width: calc(var(--logo-height) * 2.95);
  height: var(--logo-height);
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: calc(var(--logo-height) * -0.095);
  left: calc(var(--logo-height) * -0.172);
  width: auto;
  max-width: none;
  height: calc(var(--logo-height) * 1.287);
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--deep-navy);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--seafoam);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 87px));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 252, 248, 0.96) 0%, rgba(217, 240, 233, 0.86) 36%, rgba(35, 139, 145, 0.18) 62%, rgba(6, 31, 56, 0.18) 100%),
    linear-gradient(135deg, rgba(142, 216, 195, 0.46), rgba(35, 139, 145, 0.22)),
    url("assets/newhero.jpg");
  background-position: center, center, 58% center;
  background-repeat: no-repeat;
  background-size: auto, auto, 135% auto;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(56px, 8vw, 84px) clamp(24px, 5vw, 56px) clamp(56px, 8vw, 84px) max(clamp(24px, 5vw, 56px), calc((100vw - 1240px) / 2));
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card .card-kicker {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-navy);
  line-height: 1.05;
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 6.5vw, 4.35rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.55rem);
}

h3 {
  font-size: clamp(1.18rem, 2.4vw, 1.36rem);
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 620px;
  margin-top: 22px;
  color: #30414b;
  font-size: 1.2rem;
}

.hero-lede span {
  display: inline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .button {
  min-width: 168px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(10, 49, 86, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--deep-navy);
}

.button.secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--seafoam);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 154px 0 0;
}

.hero-facts div {
  min-height: 104px;
  padding: 18px;
  border-left: 5px solid var(--mint);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(4px);
}

.hero-facts dt {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.intro-band {
  padding: 52px 0;
  color: #ffffff;
  background: var(--navy);
}

.section-inner,
.section,
.bio-section {
  width: min(1160px, calc(100% - clamp(32px, 5vw, 48px)));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.intro-band .eyebrow {
  color: #ffffff;
}

.intro-band p:not(.eyebrow) {
  max-width: 920px;
  color: #d8ebe8;
  font-size: 1.12rem;
}

.section {
  padding: clamp(66px, 8vw, 92px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow):not(.search-status) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.search-status {
  min-height: 24px;
  color: var(--warm);
  font-weight: 800;
}

.site-search-results {
  display: grid;
  gap: 10px;
}

.site-search-result {
  display: grid;
  grid-template-columns: minmax(86px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  color: var(--deep-navy);
  background: #ffffff;
  text-decoration: none;
}

.site-search-result span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-search-result strong {
  line-height: 1.35;
}

.site-search-result:hover,
.site-search-result:focus-visible {
  border-color: var(--teal);
}

.service-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--soft));
  box-shadow: 0 12px 34px rgba(6, 31, 56, 0.06);
}

.service-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.service-search span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-search input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--muted);
  background: #ffffff;
  font: inherit;
  font-weight: 500;
}

.service-search input::placeholder {
  color: rgba(92, 107, 115, 0.58);
}

.service-search input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(35, 139, 145, 0.14);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 18px;
}

.service-card {
  --card-padding: clamp(20px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(6, 31, 56, 0.06);
}

.service-card.has-banner {
  min-height: 420px;
}

.service-banner {
  margin: auto calc(var(--card-padding) * -1) calc(var(--card-padding) * -1);
  padding: 11px 18px;
  border-radius: 0 0 8px 8px;
  color: #ffffff;
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.service-card.feature {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff, var(--soft));
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.service-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(35, 139, 145, 0.24);
  border-radius: 8px;
  color: var(--teal);
  background: var(--seafoam);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.9;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p:not(.card-kicker) {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.service-card.has-banner ul {
  padding-bottom: 24px;
}

/* Extra breathing room before bottom banners on select cards. */
.service-card ul + .service-banner {
  margin-top: auto;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #263742;
  font-weight: 650;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(142, 216, 195, 0.22);
}

.service-card.is-hidden,
.article-item.is-hidden {
  display: none;
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bio-image {
  height: 620px;
  overflow: hidden;
  border: 2px solid var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.bio-copy {
  display: grid;
  gap: 18px;
}

.bio-copy h2 {
  margin-bottom: 18px;
}

.bio-copy h3 {
  margin-top: 6px;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 1rem;
  text-transform: uppercase;
}

.bio-copy p:not(.eyebrow) {
  color: #33464f;
  font-size: 1.05rem;
}

.appointments {
  border-bottom: 1px solid var(--line);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.calendly-panel,
.directions-panel,
.contact-panel {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(6, 31, 56, 0.06);
}

.calendly-panel {
  min-height: clamp(620px, 85vh, 820px);
  padding: 0;
  overflow: hidden;
  border-color: var(--navy);
  border-top: 6px solid var(--navy);
}

.calendly-inline-widget {
  width: 100%;
  min-width: 0;
  height: clamp(600px, 82vh, 780px);
}

.calendly-note {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.calendly-note a {
  color: var(--teal);
  font-weight: 900;
}

.appointment-side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.directions-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
  border-top: 6px solid var(--mint);
}

.directions-panel p {
  margin: 14px 0 18px;
  color: var(--muted);
}

.directions-panel address {
  margin: 0 0 18px;
  color: var(--deep-navy);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}

.map-frame {
  position: relative;
  min-height: 260px;
  flex: 1;
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--seafoam);
}

.map-embed {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 260px;
  border: 0;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 24px;
  color: var(--deep-navy);
  text-align: center;
  font-weight: 750;
}

.map-fallback span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel {
  padding: 28px;
  border-top: 6px solid var(--teal);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.contact-list i,
.contact-list svg {
  width: 30px;
  height: 30px;
  color: var(--teal);
  stroke: var(--teal);
  stroke-width: 2.25;
}

.contact-list a {
  min-width: 0;
  color: var(--deep-navy);
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--deep-navy);
  text-decoration: none;
}

.article-accordion {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(6, 31, 56, 0.06);
}

.pdf-library {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.pdf-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--mint);
  border-radius: 8px;
  color: var(--deep-navy);
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(6, 31, 56, 0.06);
}

.pdf-link span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdf-link strong {
  line-height: 1.35;
}

.pdf-link:hover,
.pdf-link:focus-visible {
  border-color: var(--teal);
}

.article-item {
  border-left: 4px solid var(--teal);
}

.article-item + .article-item {
  border-top: 1px solid var(--line);
}

.article-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 22px 24px 22px 42px;
  color: var(--deep-navy);
  cursor: pointer;
  list-style: none;
}

.article-item summary::-webkit-details-marker {
  display: none;
}

.article-item summary span {
  display: grid;
  gap: 7px;
}

.article-item summary strong {
  font-size: 1.04rem;
  line-height: 1.35;
}

.article-item summary em {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.55;
}

.article-item summary i,
.article-item summary svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  stroke-width: 2;
  transition: transform 180ms ease;
}

.article-item[open] summary {
  background: var(--soft);
}

.article-item[open] summary i,
.article-item[open] summary svg {
  transform: rotate(180deg);
}

.article-body.embedded-article {
  max-width: 840px;
  padding: 8px 28px 34px 78px;
}

.article-body.embedded-article h2 {
  margin-top: 34px;
}

.site-footer {
  display: grid;
  justify-items: stretch;
  gap: 18px;
  padding: 28px 32px;
  color: #dceeed;
  background: var(--deep-navy);
}

.footer-title {
  justify-self: center;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.62vw, 1.11rem);
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
  align-items: start;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.footer-policies {
  justify-self: end;
  text-align: right;
  align-items: flex-end;
}

.footer-contact {
}

@media (max-width: 660px) {
  .footer-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-contact,
  .footer-policies {
    margin: 0;
  }

  .footer-policies {
    justify-self: start;
    text-align: left;
    align-items: flex-start;
  }
}

.footer-heading {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta {
  margin: 0;
  color: #dceeed;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-meta + .footer-meta {
  margin-top: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-credit {
  justify-self: center;
  margin: 0;
  color: #dceeed;
  font-size: 0.86rem;
}

.footer-credit a {
  font-weight: 900;
}

.site-footer a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a {
  color: #dceeed;
  font-size: 0.72rem;
  font-weight: 500;
}

.footer-meta a {
  color: #dceeed;
  font-size: 0.82rem;
  font-weight: 500;
}

.legal-main {
  width: min(980px, calc(100% - clamp(32px, 5vw, 48px)));
  margin: 0 auto;
  padding: 84px 0;
}

.legal-hero {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5.4vw, 3.1rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 3.8vw, 2.1rem);
}

.legal-section h3 {
  margin: 28px 0 10px;
  color: var(--teal);
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-section p {
  max-width: 820px;
  color: #33464f;
  font-size: 1.03rem;
}

.legal-section p + p {
  margin-top: 14px;
}

.article-main {
  width: min(900px, calc(100% - clamp(32px, 5vw, 48px)));
}

.article-hero h1 {
  max-width: 820px;
}

.article-body {
  padding: 48px 0 10px;
}

.article-body p {
  color: #33464f;
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-body p + p {
  margin-top: 22px;
}

.article-body h2 {
  margin: 42px 0 16px;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 1.4rem;
  color: #33464f;
  font-size: 1.04rem;
  line-height: 1.65;
}

.article-body li::marker {
  color: var(--teal);
  font-weight: 900;
}

.article-body ul + p,
.article-body ol + p {
  margin-top: 24px;
}

.article-body .article-byline {
  margin-top: 34px;
  color: var(--deep-navy);
  font-weight: 850;
}

.article-back {
  margin-top: 34px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    --logo-height: 78px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .hero-copy {
    padding: 72px 32px;
  }

  .hero h1 {
    transform: translateY(18px);
  }

  .hero-lede {
    max-width: 520px;
    transform: translateY(54px);
  }

  .hero-actions {
    margin-top: 178px;
    transform: translateY(28px);
  }

  .hero-facts {
    max-width: none;
    margin: 112px -32px -72px;
    padding: 24px 32px;
    background: transparent;
    border-top: 0;
    box-shadow: none;
  }

  .hero-facts div {
    background: rgba(217, 240, 233, 0.45);
    backdrop-filter: none;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-search-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .bio-section,
  .appointment-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .bio-image {
    height: 540px;
  }

  .appointment-layout {
    gap: 28px;
  }

}

@media (max-width: 660px) {
  .site-header {
    padding: 3px 18px 11px;
  }

  .brand {
    --logo-height: 70px;
  }

  .hero {
    min-height: min(900px, calc(115vh - 87px));
    background-color: var(--seafoam);
    background-position: center, center, 64% -30%;
    background-size: auto, auto, auto 100%;
  }

  .hero-copy {
    padding: 54px 24px;
  }

  .hero h1 {
    transform: translateY(20px);
  }

  .hero-lede {
    max-width: 380px;
    transform: translateY(58px);
  }

  .hero-actions {
    margin-top: 186px;
    transform: translateY(30px);
  }

  .hero-facts {
    margin: 96px -24px -54px;
    padding: 20px 24px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-lede span {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    justify-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-search {
    grid-template-columns: 1fr;
  }

  .site-search-result {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-facts div {
    min-height: 88px;
  }

  .intro-band {
    padding: 42px 0;
  }

  .section-inner,
  .section,
  .bio-section {
    width: calc(100% - 32px);
  }

  .bio-copy {
    padding: 0 10px;
  }

  .section,
  .bio-section {
    padding: 66px 0;
  }

  .legal-main {
    width: calc(100% - 32px);
    padding: 58px 0;
  }

  .legal-hero h1 {
    font-size: 2.25rem;
  }

  .legal-section h2 {
    font-size: 1.65rem;
  }

  .article-body {
    padding-top: 36px;
  }

  .article-body p {
    font-size: 1rem;
  }

  .service-card.feature {
    grid-column: auto;
  }

  .bio-image {
    height: 460px;
  }

  .article-item summary {
    min-height: 0;
    padding: 20px 20px 20px 32px;
  }

  .article-body.embedded-article {
    padding: 0 20px 28px 44px;
  }
}

@media (max-width: 420px) {
  .top-strip {
    font-size: 0.72rem;
  }

  .site-header {
    gap: 8px;
    padding: 3px 12px 11px;
  }

  .brand {
    --logo-height: 58px;
    width: min(calc(var(--logo-height) * 2.95), calc(100vw - 86px));
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .hero-copy {
    padding: 46px 18px;
  }

  .hero h1 {
    transform: translateY(16px);
  }

  .hero-lede {
    max-width: 330px;
    transform: translateY(62px);
  }

  .hero-actions {
    margin-top: 192px;
    transform: translateY(32px);
  }

  .hero-facts {
    margin: 92px -18px -46px;
    padding: 18px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow):not(.search-status),
  .intro-band p:not(.eyebrow),
  .bio-copy p:not(.eyebrow),
  .legal-section p {
    font-size: 1rem;
  }

  .button {
    min-height: 46px;
    padding: 12px 14px;
  }

  .section-inner,
  .section,
  .bio-section,
  .legal-main,
  .article-main {
    width: calc(100% - 24px);
  }

  .bio-section {
    width: calc(100% - 36px);
  }

  .bio-copy {
    padding: 0 12px;
  }

  .service-card-top {
    align-items: flex-start;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-icon svg {
    width: 24px;
    height: 24px;
  }

  .bio-image {
    height: 380px;
  }

  .directions-panel {
    padding: 22px;
  }

  .calendly-panel {
    min-height: 600px;
  }

  .calendly-inline-widget {
    height: 560px;
  }

  .site-footer {
    padding: 24px 18px;
  }
}
