@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
}

:root {
  --ink: #302638;
  --ink-deep: #231b27;
  --paper: #fbf8f2;
  --sand: #f2ece3;
  --coral: #e66f51;
  --coral-deep: #bf503b;
  --peach: #f8ded4;
  --butter: #f2dda9;
  --sage: #9db7a7;
  --muted: #6f6671;
  --line: #e4dbd1;
  --white: #fff;
  --shell: min(1180px, calc(100% - 48px));
  --radius-s: 12px;
  --radius-m: 22px;
  --radius-l: 32px;
  --shadow: 0 22px 60px rgba(48, 38, 56, .12), 0 3px 10px rgba(48, 38, 56, .06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Manrope", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
section[id] { scroll-margin-top: 100px; }
#who-we-support { scroll-margin-top: 100px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: 110px; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; transform: translateY(-140%); padding: 12px 16px; border-radius: 8px; background: var(--white); color: var(--ink); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding-inline: max(24px, calc((100vw - 1180px) / 2)); background: rgba(251, 248, 242, .94); border-bottom: 1px solid rgba(48, 38, 56, .1); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 11px; justify-self: start; color: var(--ink); text-decoration: none; font-size: 25px; font-weight: 800; letter-spacing: -.055em; }
.brand-mark { width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 11px 11px 11px 3px; background: var(--coral); color: var(--white); font-size: 18px; font-weight: 800; letter-spacing: -.06em; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 31px; }
.desktop-nav a { position: relative; padding: 31px 0 29px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 750; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 22px; height: 2px; border-radius: 2px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform 160ms ease-out; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-self: end; gap: 22px; }
.header-phone { display: grid; gap: 2px; color: var(--ink); text-decoration: none; }
.header-phone span { color: var(--coral-deep); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.header-phone strong { font-size: 12px; font-weight: 800; white-space: nowrap; }
.header-phone:hover strong { color: var(--coral-deep); }
.header-cta { justify-self: end; }
.menu-button { display: none; justify-self: end; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--ink); cursor: pointer; }
.menu-button span { display: block; height: 2px; width: 20px; margin: 4px auto; background: currentColor; border-radius: 99px; transition: transform 180ms ease-out, opacity 180ms ease-out; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 45; inset: 82px 0 0; padding: 32px 24px; background: var(--ink); color: var(--white); }
.mobile-menu nav { display: grid; margin-bottom: 34px; }
.mobile-menu nav a { padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,.17); color: var(--white); text-decoration: none; font-size: 24px; font-weight: 700; }
.mobile-phone { display: inline-flex; margin-top: 22px; color: var(--butter); text-decoration: none; font-size: 14px; font-weight: 800; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--coral); box-shadow: 0 8px 20px rgba(230, 111, 81, .2); color: var(--white); text-decoration: none; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out; }
.button:hover { background: var(--coral-deep); box-shadow: 0 11px 26px rgba(191, 80, 59, .25); }
.button:active { transform: scale(.96); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button-quiet { background: transparent; box-shadow: inset 0 0 0 1px rgba(48, 38, 56, .35); color: var(--ink); }
.button-quiet:hover { background: var(--peach); box-shadow: inset 0 0 0 1px var(--coral); }
.button-light { background: var(--butter); box-shadow: none; color: var(--ink); }
.button-light:hover { background: var(--white); }
.button-wide { width: 100%; justify-content: space-between; padding-inline: 24px; }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid var(--butter); outline-offset: 3px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 800; }
.text-link span, .glance-link span, .footer-cta span, .service-row-arrow { transition: transform 160ms ease-out; }
.text-link:hover span, .glance-link:hover span, .footer-cta:hover span, .service-row:hover .service-row-arrow { transform: translateX(4px); }

.eyebrow { margin-bottom: 15px; color: var(--coral-deep); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow.light { color: #f7c3b5; }
.section-heading { margin-bottom: 48px; }
.section-heading h2, .coverage-intro h2, .faq-intro h2, .inquiry-copy h2 { margin-bottom: 0; color: var(--ink); font-size: clamp(38px, 4.6vw, 64px); line-height: 1.01; letter-spacing: -.06em; }
.what-heading { max-width: 760px; }

.hero { position: relative; overflow: hidden; padding: 74px 0 58px; background: var(--paper); }
.hero-layout { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 80px; min-height: 575px; }
.hero-copy-block { position: relative; z-index: 2; max-width: 635px; }
.hero h1 { max-width: 630px; margin-bottom: 26px; color: var(--ink); font-size: clamp(54px, 6.8vw, 88px); line-height: .94; letter-spacing: -.08em; }
.hero-copy { max-width: 540px; margin-bottom: 32px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-footnote { display: flex; align-items: center; gap: 9px; margin-top: 29px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.status-dot { width: 9px; height: 9px; flex: 0 0 auto; display: inline-block; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(157, 183, 167, .2); }
.hero-visual { position: relative; min-height: 430px; padding: 0 0 0 42px; }
.glow-shape { position: absolute; z-index: 0; top: 2px; right: -24px; width: 370px; height: 370px; border-radius: 50%; background: var(--peach); }
.glance-card { position: relative; z-index: 2; max-width: 470px; margin-left: auto; padding: 31px 33px 25px; border-radius: 28px 28px 6px 28px; background: var(--ink); box-shadow: var(--shadow); color: var(--white); }
.glance-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.glance-heading .eyebrow { margin-bottom: 0; }
.glance-label { color: rgba(255,255,255,.42); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.glance-list { margin: 20px 0 0; }
.glance-list > div { display: grid; grid-template-columns: .67fr 1.33fr; gap: 18px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.17); }
.glance-list dt { color: #f5bcae; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.glance-list dd { margin: 0; color: rgba(255,255,255,.91); font-size: 15px; line-height: 1.4; }
.glance-subtext { display: block; margin-top: 5px; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.45; }
.capacity-pill { display: inline-flex; padding: 5px 10px; border-radius: 999px; background: var(--sage); color: var(--ink); font-size: 12px; font-weight: 800; }
.glance-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.17); color: var(--butter); text-decoration: none; font-size: 13px; font-weight: 800; }

.answer-strip { overflow: hidden; background: var(--ink-deep); color: var(--white); }
.answer-strip-inner { min-height: 78px; display: grid; grid-template-columns: 1.1fr repeat(5, 1fr); align-items: stretch; }
.answer-strip a, .strip-label { display: flex; align-items: center; gap: 11px; padding: 0 18px; border-left: 1px solid rgba(255,255,255,.15); text-decoration: none; font-size: 12px; font-weight: 750; }
.strip-label { padding-left: 0; border-left: 0; color: #f3b8a8; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.answer-strip a:hover { background: rgba(255,255,255,.07); color: var(--butter); }
.answer-strip a span { color: var(--coral); font-size: 10px; font-weight: 800; }
.answer-strip a b { margin-left: auto; color: var(--butter); font-size: 16px; font-weight: 400; }

.coverage-section { background: var(--peach); }
.coverage-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; gap: 72px; }
.coverage-intro { align-self: center; }
.coverage-intro h2 { max-width: 590px; margin-bottom: 24px; }
.coverage-intro > p:not(.eyebrow) { max-width: 520px; margin-bottom: 26px; color: rgba(48,38,56,.72); font-size: 17px; line-height: 1.7; }
.coverage-panel { padding: 34px 37px 30px; border-radius: 26px 26px 5px 26px; background: var(--ink); box-shadow: var(--shadow); color: var(--white); }
.coverage-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.17); }
.coverage-panel-heading .eyebrow { margin-bottom: 11px; }
.coverage-panel-heading h3 { margin: 0; color: var(--white); font-size: clamp(27px, 3vw, 42px); line-height: 1; letter-spacing: -.055em; }
.coverage-panel-heading > span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.coverage-panel > p { max-width: 470px; margin: 23px 0 25px; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.6; }
.coverage-areas { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.17); }
.coverage-areas span { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.82); font-size: 14px; font-weight: 750; }
.coverage-areas span:nth-child(odd) { margin-right: 20px; border-right: 1px solid rgba(255,255,255,.17); }
.coverage-areas .coverage-area-primary { color: var(--butter); font-size: 18px; }
.coverage-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 23px; color: var(--butter); text-decoration: none; font-size: 13px; font-weight: 800; }
.coverage-link span { transition: transform 160ms ease-out; }
.coverage-link:hover span { transform: translateX(4px); }

.what-we-do-section { background: var(--sand); }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.service-feature { display: grid; grid-template-columns: .87fr 1.13fr; min-height: 415px; overflow: hidden; border-radius: var(--radius-m); background: var(--white); box-shadow: 0 12px 35px rgba(48,38,56,.07); }
.service-feature-image { min-height: 415px; background: var(--coral); overflow: hidden; }
.service-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.service-feature-copy { align-self: center; padding: 36px 31px; }
.service-number { margin-bottom: 23px; color: var(--coral-deep); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-feature h3 { margin-bottom: 13px; color: var(--ink); font-size: 29px; line-height: 1.05; letter-spacing: -.045em; }
.service-feature-copy > p:not(.service-number) { margin-bottom: 25px; color: var(--muted); line-height: 1.65; }
.service-list { display: grid; align-content: stretch; padding: 0 9px; }
.service-row { display: grid; grid-template-columns: 38px 1fr 24px; align-items: center; gap: 16px; padding: 18px 11px; border-top: 1px solid rgba(48,38,56,.2); color: var(--ink); text-decoration: none; }
.service-row:last-child { border-bottom: 1px solid rgba(48,38,56,.2); }
.service-row:hover { color: var(--coral-deep); }
.service-row-number { align-self: start; padding-top: 3px; color: var(--coral-deep); font-size: 11px; font-weight: 800; }
.service-row-copy { display: grid; gap: 5px; }
.service-row-copy strong { font-size: 18px; letter-spacing: -.025em; }
.service-row-copy small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.service-row-arrow { color: var(--coral); font-size: 20px; }

.support-section { padding-block: 112px; background: var(--coral); color: var(--ink); }
.support-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.support-copy h2 { max-width: 550px; margin-bottom: 25px; color: var(--ink); font-size: clamp(42px, 4.8vw, 68px); line-height: .98; letter-spacing: -.065em; }
.support-copy > p:not(.eyebrow) { max-width: 480px; margin-bottom: 31px; color: rgba(48,38,56,.74); font-size: 17px; line-height: 1.7; }
.support-points { margin: 0; padding: 0; list-style: none; }
.support-points li { display: grid; grid-template-columns: 42px 1fr; gap: 22px; padding: 21px 0; border-top: 1px solid rgba(48,38,56,.28); }
.support-points li:first-child { padding-top: 0; border-top: 0; }
.support-points li > span { color: var(--ink); font-size: 12px; font-weight: 800; }
.support-points strong { display: block; margin-bottom: 7px; color: var(--ink); font-size: 20px; }
.support-points p { margin: 0; color: rgba(48,38,56,.72); line-height: 1.55; }

.referral-section { padding-top: 108px; padding-bottom: 108px; }
.referral-card { display: grid; grid-template-columns: .83fr 1.17fr; overflow: hidden; border-radius: var(--radius-l); background: var(--butter); }
.referral-illustration { position: relative; min-height: 370px; overflow: hidden; background: var(--ink); }
.referral-illustration::before { content: ""; position: absolute; width: 245px; height: 245px; left: 50%; top: 50%; border: 1px solid rgba(242,221,169,.35); border-radius: 50%; transform: translate(-50%, -50%); }
.referral-illustration::after { content: ""; position: absolute; width: 175px; height: 175px; left: 50%; top: 50%; border-radius: 50%; background: var(--coral); transform: translate(-42%, -54%); }
.scribble { position: absolute; z-index: 2; display: block; border: 1px solid var(--butter); border-radius: 50%; opacity: .75; }
.scribble-one { width: 122px; height: 45px; left: 26%; top: 28%; transform: rotate(27deg); }
.scribble-two { width: 160px; height: 58px; left: 38%; top: 55%; border-color: rgba(255,255,255,.65); transform: rotate(-18deg); }
.referral-bubble { position: absolute; z-index: 4; top: 44px; left: 42px; padding: 8px 13px; border-radius: 999px; background: var(--paper); color: var(--ink); font-size: 12px; font-weight: 800; transform: rotate(-5deg); }
.referral-letter { position: absolute; z-index: 4; right: 48px; bottom: 35px; color: var(--butter); font-family: Georgia, serif; font-size: 72px; font-style: italic; transform: rotate(-13deg); }
.referral-copy { align-self: center; max-width: 620px; padding: 58px 68px; }
.referral-copy h2 { margin-bottom: 21px; color: var(--ink); font-size: clamp(38px, 4vw, 57px); line-height: 1; letter-spacing: -.06em; }
.referral-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 29px; color: rgba(48,38,56,.72); font-size: 17px; line-height: 1.65; }
.referral-links { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-intro > p:last-child { max-width: 355px; margin-top: 25px; color: var(--muted); line-height: 1.65; }
.accordions { border-top: 1px solid var(--line); }
.accordions details { border-bottom: 1px solid var(--line); }
.accordions summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 3px; color: var(--ink); cursor: pointer; font-size: 17px; font-weight: 800; list-style: none; }
.accordions summary::-webkit-details-marker { display: none; }
.accordions summary span { position: relative; flex: 0 0 auto; width: 27px; height: 27px; border-radius: 50%; background: var(--peach); }
.accordions summary span::before, .accordions summary span::after { content: ""; position: absolute; top: 12px; left: 7px; width: 13px; height: 2px; border-radius: 2px; background: var(--coral-deep); transition: transform 180ms ease-out; }
.accordions summary span::after { transform: rotate(90deg); }
.accordions details[open] summary span::after { transform: rotate(0); }
.accordions details p { max-width: 680px; margin: -2px 50px 23px 3px; color: var(--muted); line-height: 1.65; }

.inquiry-section { padding-block: 112px; background: var(--ink-deep); color: var(--white); }
.inquiry-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.inquiry-copy h2 { max-width: 500px; margin-bottom: 25px; color: var(--white); }
.inquiry-copy > p:not(.eyebrow) { max-width: 430px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.7; }
.contact-note { display: grid; gap: 5px; margin-top: 39px; }
.contact-note span { color: #f3b8a8; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-note strong, .phone-link { color: var(--butter); font-size: 19px; font-weight: 800; }
.phone-link { text-decoration: none; }
.phone-link:hover { color: var(--white); }
.contact-note small { color: rgba(255,255,255,.58); font-size: 12px; }
.inquiry-form { padding: 35px; border-radius: 26px 26px 6px 26px; background: var(--paper); box-shadow: 0 22px 55px rgba(0,0,0,.22); color: var(--ink); }
.form-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 28px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--coral-deep); font-size: 11px; font-weight: 800; }
.form-heading p { margin: 0; color: var(--ink); font-size: 14px; font-weight: 800; }
.field { margin-bottom: 23px; }
.field label { display: block; margin-bottom: 8px; color: var(--ink); font-size: 14px; font-weight: 800; }
.field input, .field textarea { width: 100%; border: 1px solid #d8cfc5; border-radius: var(--radius-s); background: var(--white); color: var(--ink); padding: 14px 15px; transition: border-color 150ms ease-out, box-shadow 150ms ease-out, background-color 150ms ease-out; }
.field input { min-height: 50px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: #b9aca0; }
.field input:focus, .field textarea:focus { background: var(--white); border-color: var(--coral); box-shadow: 0 0 0 4px rgba(230,111,81,.15); outline: none; }
.field small { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 24px; margin: 15px 2px 0; color: var(--muted); font-size: 14px; }
.form-status.success { color: #36805a; }
.form-status.error { color: #a33838; }
.inquiry-form.is-sending .button { opacity: .7; cursor: wait; }

.placeholder-hero { padding-block: 130px; background: var(--coral); color: var(--ink); }
.placeholder-hero h1 { max-width: 780px; margin-bottom: 24px; color: var(--ink); font-size: clamp(50px, 7vw, 88px); line-height: .95; letter-spacing: -.07em; }
.placeholder-hero p:not(.eyebrow) { max-width: 620px; margin-bottom: 30px; color: rgba(48,38,56,.74); font-size: 19px; line-height: 1.6; }
.placeholder-body { min-height: 310px; padding-block: 80px; }
.placeholder-body p { color: var(--muted); font-size: 19px; }

.site-footer { padding-top: 62px; background: var(--ink); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 55px; align-items: center; padding-bottom: 48px; }
.footer-brand { color: var(--white); }
.footer-top > p { max-width: 350px; margin: 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.65; }
.footer-cta { display: inline-flex; align-items: center; gap: 9px; color: var(--butter); text-decoration: none; font-size: 14px; font-weight: 800; }
.footer-bottom { min-height: 77px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.48); font-size: 12px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 25px; }
.footer-bottom a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-bottom a:hover { color: var(--butter); }
.footer-bottom p { margin: 0; }

@media (max-width: 1060px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 20px; }
  .desktop-nav { gap: 21px; }
  .desktop-nav a { font-size: 12px; }
  .hero-layout { gap: 45px; }
  .glance-card { padding-inline: 27px; }
  .support-grid, .coverage-layout, .faq-layout, .inquiry-layout { gap: 65px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 720px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 20px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .hero { padding-top: 55px; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; min-height: 0; }
  .hero-copy-block { max-width: 650px; }
  .hero h1 { max-width: 680px; }
  .hero-visual { min-height: 0; max-width: 600px; padding-left: 36px; }
  .glance-card { max-width: 100%; }
  .answer-strip-inner { width: max-content; min-width: 100%; grid-template-columns: auto repeat(5, minmax(145px, 1fr)); }
  .answer-strip a, .strip-label { padding-inline: 17px; }
  .support-grid, .coverage-layout, .faq-layout, .inquiry-layout { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-feature { min-height: 370px; }
  .service-feature-image { min-height: 370px; }
  .support-grid { gap: 55px; }
  .coverage-layout { gap: 45px; }
  .coverage-intro { max-width: 650px; }
  .faq-layout, .inquiry-layout { gap: 45px; }
  .faq-intro > p:last-child { margin-top: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-cta { grid-column: 2; justify-self: start; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 30px, 720px); --radius-l: 24px; }
  .site-header { min-height: 72px; }
  .brand { font-size: 23px; }
  .brand-mark { width: 31px; height: 31px; border-radius: 10px 10px 10px 3px; }
  .mobile-menu { inset: 72px 0 0; padding: 25px 20px; }
  .section { padding-block: 78px; }
  section[id] { scroll-margin-top: 82px; }
  .hero { padding: 48px 0 35px; }
  .hero h1 { margin-bottom: 21px; font-size: clamp(48px, 14vw, 67px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-footnote { align-items: flex-start; font-size: 11px; }
  .hero-visual { min-height: 0; padding: 0; }
  .glow-shape { top: -14px; right: -100px; width: 300px; height: 300px; }
  .glance-card { padding: 25px 21px 20px; border-radius: 22px 22px 4px 22px; }
  .glance-list > div { grid-template-columns: .8fr 1.2fr; gap: 13px; padding: 14px 0; }
  .glance-list dd { font-size: 13px; }
  .glance-link { font-size: 12px; }
  .answer-strip-inner { min-height: 68px; }
  .answer-strip a, .strip-label { padding-inline: 14px; font-size: 11px; }
  .strip-label { padding-left: 0; }
  .section-heading h2, .coverage-intro h2, .faq-intro h2, .inquiry-copy h2 { font-size: 42px; }
  .what-we-do-section { padding-bottom: 82px; }
  .section-heading { margin-bottom: 35px; }
  .coverage-panel { padding: 27px 22px 23px; }
  .coverage-panel-heading { gap: 12px; }
  .coverage-panel-heading h3 { font-size: 29px; }
  .coverage-panel-heading > span { font-size: 9px; }
  .coverage-areas span { font-size: 12px; }
  .service-feature { grid-template-columns: 1fr; min-height: 0; }
  .service-feature-image { min-height: 250px; max-height: 290px; }
  .service-feature-copy { padding: 27px 23px 30px; }
  .service-feature h3 { font-size: 27px; }
  .service-list { padding: 12px 0 0; }
  .service-row { grid-template-columns: 30px 1fr 20px; gap: 11px; padding: 17px 0; }
  .service-row-copy strong { font-size: 16px; }
  .service-row-copy small { font-size: 12px; }
  .support-section { padding-block: 80px; }
  .support-copy h2 { font-size: 46px; }
  .support-copy > p:not(.eyebrow) { font-size: 16px; }
  .support-points li { grid-template-columns: 34px 1fr; gap: 13px; }
  .support-points strong { font-size: 18px; }
  .support-points p { font-size: 14px; }
  .referral-section { padding-block: 78px; }
  .referral-card { grid-template-columns: 1fr; }
  .referral-illustration { min-height: 245px; }
  .referral-copy { padding: 35px 24px 39px; }
  .referral-copy h2 { font-size: 40px; }
  .referral-copy > p:not(.eyebrow) { font-size: 15px; }
  .referral-links { align-items: flex-start; flex-direction: column; gap: 19px; }
  .accordions summary { min-height: 70px; font-size: 15px; }
  .accordions details p { margin-right: 30px; font-size: 14px; }
  .inquiry-section { padding-block: 80px; }
  .inquiry-form { padding: 25px 20px; border-radius: 21px 21px 4px 21px; }
  .placeholder-hero { padding-block: 95px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta { grid-column: auto; }
  .footer-bottom { padding-block: 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom nav { gap: 15px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; transform: none !important; }
}
