:root {
  --ink: #102a34;
  --ink-strong: #071b22;
  --muted: #5d6d72;
  --paper: #ffffff;
  --canvas: #f3f7f8;
  --mist: #e5eff1;
  --teal: #197b73;
  --teal-dark: #0f5e59;
  --blue: #176b87;
  --gold: #835500;
  --coral: #c85d4a;
  --line: #cbd8db;
  --max: 1180px;
  --shadow: 0 18px 48px rgba(16, 42, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #075f8c;
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink-strong);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(203, 216, 219, 0.8);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
  text-decoration: none;
  white-space: nowrap;
}

.brand strong {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-mark {
  width: 29px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
}

.brand-mark i {
  display: block;
  background: var(--teal);
  border-radius: 2px 2px 0 0;
}

.brand-mark i:nth-child(1) {
  height: 48%;
  background: var(--gold);
}

.brand-mark i:nth-child(2) {
  height: 75%;
  background: var(--blue);
}

.brand-mark i:nth-child(3) {
  height: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #344b53;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  background: var(--teal);
  transition: transform 160ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.button-light:hover {
  background: var(--paper);
  color: var(--ink-strong);
}

.home-hero {
  min-height: min(650px, calc(100vh - 130px));
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 70px 0;
  background: var(--ink-strong);
}

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 64% 27%;
}

.hero-wash {
  z-index: -2;
  background: rgba(5, 28, 37, 0.7);
}

.hero-content {
  padding-top: 36px;
  padding-bottom: 36px;
  color: var(--paper);
}

.hero-location,
.kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-location {
  color: #a8e0d9;
}

.home-hero h1,
.page-hero h1,
.section-heading h2,
.provider-band h2,
.access-band h2,
.cta-band h2,
.contact-copy h2,
.contact-preview h2,
.legal-prose h2,
.about-provider h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.home-hero h1 {
  max-width: 780px;
  font-size: 72px;
}

.hero-tagline {
  margin: 18px 0 4px;
  color: #ffd98a;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-lead {
  max-width: 630px;
  margin: 17px 0 0;
  color: #e4eef0;
  font-size: 19px;
  line-height: 1.6;
}

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

.hero-boundary {
  max-width: 620px;
  margin: 18px 0 0;
  color: #c5d5d8;
  font-size: 13px;
}

.credential-rail {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.credential-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
}

.credential-grid > div {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.credential-grid > div:first-child {
  padding-left: 0;
}

.credential-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.credential-grid strong {
  color: var(--ink-strong);
  font-size: 15px;
}

.credential-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 96px 0;
}

.section-services,
.compact-services,
.faq-preview {
  background: var(--canvas);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 42px;
}

.section-heading h2,
.provider-band h2,
.access-band h2,
.cta-band h2,
.contact-copy h2,
.contact-preview h2,
.about-provider h2 {
  font-size: 46px;
}

.section-heading p,
.provider-copy p,
.access-layout p,
.cta-layout p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 282px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #8db3b5;
  box-shadow: var(--shadow);
}

.service-number,
.family-index,
.process-list > li > span,
.values-grid article > span,
.journey-list article > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  min-height: 56px;
  margin: 28px 0 11px;
  color: var(--ink-strong);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 25px;
  line-height: 1.12;
}

.service-status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 4px 7px;
  border: 1px solid #9bb0b4;
  border-radius: 3px;
  color: var(--ink-strong);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.evidence-band {
  padding-top: 0;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.evidence-grid figure {
  margin: 0;
}

.evidence-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
}

.evidence-grid figcaption {
  display: grid;
  gap: 7px;
  padding: 16px 2px 0;
}

.evidence-grid figcaption strong {
  max-width: 560px;
  color: var(--ink-strong);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.08;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.service-card a,
.section-link,
.family-links a,
.access-layout a,
.concept-index a {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.service-card a:hover,
.section-link:hover,
.family-links a:hover,
.access-layout a:hover,
.concept-index a:hover {
  text-decoration: underline;
}

.section-link {
  display: inline-block;
  margin-top: 30px;
}

.provider-band {
  background: var(--paper);
}

.provider-layout,
.access-layout,
.cta-layout,
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 80px;
}

.provider-copy .button {
  margin-top: 19px;
}

.review-note {
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  font-size: 14px;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 220px;
  padding: 24px 24px 24px 0;
  border-top: 3px solid var(--ink);
}

.process-list li + li {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.process-list h3,
.values-grid h3 {
  margin: 34px 0 8px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 24px;
}

.process-list p,
.values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.access-band {
  background: var(--ink-strong);
  color: var(--paper);
}

.access-band .kicker {
  color: #8fd7ce;
}

.access-layout p {
  color: #c7d7da;
}

.access-layout a {
  display: inline-block;
  margin-top: 18px;
  color: #ffd98a;
}

.faq-list,
.faq-page-list {
  border-top: 1px solid var(--line);
}

.faq-list details,
.faq-page-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary,
.faq-page-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--ink-strong);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker,
.faq-page-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after,
.faq-page-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--teal);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after,
.faq-page-list details[open] summary::after {
  content: "-";
}

.faq-list details p,
.faq-page-list details p {
  max-width: 800px;
  margin: -7px 0 22px;
  color: var(--muted);
}

.faq-page-list {
  max-width: 900px;
}

.cta-band {
  padding: 76px 0;
  background: #dcebed;
}

.cta-layout {
  align-items: center;
}

.cta-layout p {
  max-width: 730px;
  margin-top: 16px;
}

.cta-layout .button {
  justify-self: end;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 72px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.page-hero h1 {
  max-width: 940px;
  color: var(--ink-strong);
  font-size: 64px;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.family-list {
  border-top: 1px solid var(--line);
}

.family-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.family-row h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 31px;
  line-height: 1.12;
}

.family-row p {
  margin: 0;
  color: var(--muted);
}

.family-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 18px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 90px;
}

.service-detail-grid h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 43px;
  line-height: 1.08;
}

.prose {
  color: var(--muted);
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2,
.prose h3 {
  color: var(--ink-strong);
}

.prose h3 {
  margin: 32px 0 12px;
  font-size: 20px;
}

.prose ul,
.privacy-layout ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prose li,
.privacy-layout li {
  position: relative;
  padding: 11px 0 11px 25px;
  border-bottom: 1px solid var(--line);
}

.prose li::before,
.privacy-layout li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.clinical-boundary,
.privacy-section {
  padding: 48px 0;
  background: var(--ink-strong);
  color: var(--paper);
}

.clinical-boundary .kicker,
.privacy-section .kicker {
  color: #8fd7ce;
}

.clinical-boundary p {
  max-width: 920px;
  margin: 0;
  color: #d7e3e5;
  font-size: 18px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(400px, 1.15fr);
  align-items: start;
  gap: 80px;
}

.provider-portrait {
  margin: 0;
}

.provider-portrait img {
  width: 100%;
  max-height: 710px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 7px;
}

.provider-portrait figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.credential-line {
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 850;
}

.verification-box {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #d9b66d;
  border-radius: 6px;
  background: #fff9ec;
  color: #54451f;
}

.verification-box p {
  margin: 8px 0 0;
  color: #6c592a;
  font-size: 14px;
}

.values-band {
  background: var(--canvas);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.values-grid article {
  min-height: 230px;
  padding: 25px;
  border-top: 3px solid var(--ink);
  border-right: 1px solid var(--line);
}

.values-grid article:last-child {
  border-right: 0;
}

.journey-list {
  border-top: 1px solid var(--line);
}

.journey-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 760px);
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.journey-list h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 31px;
}

.journey-list p {
  margin: 9px 0 0;
  color: var(--muted);
}

.privacy-layout {
  align-items: start;
}

.privacy-layout h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 43px;
}

.privacy-layout li {
  border-bottom-color: #36515a;
  color: #d7e3e5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: 80px;
  align-items: start;
}

.contact-copy > p,
.contact-preview > p {
  color: var(--muted);
}

.contact-copy dl {
  margin: 35px 0 0;
  border-top: 1px solid var(--line);
}

.contact-copy dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-copy dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-copy dd {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 750;
}

.secure-route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.secure-route-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--teal-dark);
  border-radius: 4px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.secure-route-links a:hover {
  background: var(--teal-dark);
  color: var(--paper);
}

.contact-preview {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--canvas);
}

.privacy-safe-panel {
  border-top: 4px solid var(--teal);
}

.privacy-safe-panel .button {
  margin-top: 12px;
}

.secure-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.secure-bridge h2 {
  margin: 8px 0 14px;
  color: var(--ink-strong);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.secure-bridge > div > p {
  max-width: 680px;
  color: var(--muted);
}

.status-disabled {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid #8da5aa;
  border-radius: 4px;
  background: #eef3f4;
  color: var(--ink-strong);
  font-weight: 850;
}

.contact-preview label:not(.acknowledgment) {
  display: block;
  margin: 16px 0 6px;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 850;
}

.contact-preview label span {
  color: var(--muted);
  font-weight: 500;
}

.contact-preview input:not([type="checkbox"]),
.contact-preview select,
.concierge input {
  width: 100%;
  min-height: 46px;
  padding: 9px 11px;
  border: 1px solid #aabdc1;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink-strong);
}

.acknowledgment {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 13px;
}

.acknowledgment input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-status {
  min-height: 46px;
  margin-bottom: 0;
  padding: 11px;
  border-left: 3px solid var(--blue);
  background: var(--paper);
  font-size: 13px;
}

.legal-prose {
  max-width: 850px;
}

.legal-prose h2 {
  margin: 45px 0 12px;
  font-size: 32px;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p {
  color: var(--muted);
}

.concept-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.concept-index article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.concept-index article > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.concept-index h2 {
  margin: 30px 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 29px;
}

.concept-index p {
  margin: 0 0 24px;
  color: var(--muted);
}

.concierge-launch {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid #8fd7ce;
  border-radius: 6px;
  background: var(--ink-strong);
  color: var(--paper);
  font-weight: 850;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.concierge {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: min(440px, calc(100% - 40px));
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 24px;
  border: 1px solid #8da5aa;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(3, 20, 27, 0.32);
}

.concierge[hidden] {
  display: none;
}

.concierge-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.concierge-heading h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 27px;
  line-height: 1.1;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.privacy-boundary {
  margin: 18px 0;
  padding: 12px;
  border-left: 3px solid var(--coral);
  background: #fff2ef;
  color: #6b3329;
  font-size: 13px;
}

.concierge-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.concierge-topics button {
  min-height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--canvas);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.concierge-response {
  min-height: 92px;
  margin: 16px 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--canvas);
  color: var(--muted);
  font-size: 14px;
}

.concierge > label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
  font-size: 12px;
  font-weight: 850;
}

.concierge-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.clear-button {
  margin-top: 13px;
}

.site-footer {
  padding: 62px 0 26px;
  background: #071b22;
  color: #b7c7ca;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 70px;
}

.footer-brand {
  color: var(--paper);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid p {
  max-width: 390px;
  margin: 8px 0 0;
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.footer-grid nav strong {
  margin-bottom: 5px;
  color: var(--paper);
}

.footer-grid nav a {
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-grid nav span {
  color: #70868b;
}

.footer-legal {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid #294048;
  font-size: 11px;
  line-height: 1.6;
}

.footer-legal p {
  max-width: 970px;
  margin: 5px 0;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: #8da1a5;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 16px;
  }

  .primary-nav > a:not(.button) {
    font-size: 13px;
  }

  .home-hero h1 {
    font-size: 62px;
  }

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

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

  .process-list li:nth-child(3),
  .values-grid article:nth-child(3) {
    border-left: 0;
  }

  .about-grid,
  .contact-layout {
    gap: 48px;
  }

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

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 26px 18px 32px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .primary-nav[data-open="true"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav > a:not(.button) {
    padding: 9px 2px;
    font-size: 16px;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .home-hero {
    min-height: min(620px, calc(100vh - 120px));
  }

  .hero-image {
    object-position: 60% 24%;
  }

  .hero-wash {
    background: rgba(5, 28, 37, 0.74);
  }

  .section-heading,
  .provider-layout,
  .access-layout,
  .cta-layout,
  .service-detail-grid,
  .privacy-layout,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .secure-bridge {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading {
    align-items: start;
  }

  .cta-layout .button {
    justify-self: start;
  }

  .family-row {
    grid-template-columns: 42px 1fr;
  }

  .family-row > div:last-child {
    grid-column: 2;
  }

  .provider-portrait {
    max-width: 580px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .evidence-grid {
    grid-template-columns: 1fr;
  }
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .home-hero {
    min-height: min(610px, calc(100svh - 110px));
    align-items: flex-end;
    padding: 60px 0 24px;
  }

  .hero-image {
    object-position: 55% 20%;
  }

  .hero-wash {
    background: rgba(5, 28, 37, 0.79);
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .home-hero h1 {
    font-size: 43px;
  }

  .hero-tagline {
    font-size: 24px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid > div,
  .credential-grid > div:first-child,
  .credential-grid > div:last-child {
    min-height: 82px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credential-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .provider-band h2,
  .access-band h2,
  .cta-band h2,
  .contact-copy h2,
  .contact-preview h2,
  .about-provider h2,
  .privacy-layout h2,
  .service-detail-grid h2 {
    font-size: 36px;
  }

  .service-grid,
  .related-grid,
  .process-list,
  .values-grid,
  .concept-index {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 245px;
  }

  .process-list li,
  .process-list li + li,
  .values-grid article {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-list li:first-child,
  .values-grid article:first-child {
    border-top: 3px solid var(--ink);
  }

  .process-list h3,
  .values-grid h3 {
    margin-top: 20px;
  }

  .page-hero {
    min-height: 360px;
    padding: 100px 0 55px;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .family-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .family-row > div:last-child {
    grid-column: 1;
  }

  .family-row h2,
  .journey-list h2 {
    font-size: 27px;
  }

  .journey-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-preview {
    padding: 21px;
  }

  .contact-copy dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-base {
    flex-direction: column;
  }

  .concierge-launch {
    right: 12px;
    bottom: 12px;
  }

  .concierge {
    right: 8px;
    bottom: 8px;
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
  }

  .concierge-topics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 24px;
  }

  .brand strong {
    font-size: 15px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}
