:root {
  --ink: #182421;
  --muted: #5b6963;
  --paper: #fffdf8;
  --cream: #f6f1e8;
  --mist: #e6f0ea;
  --white: #ffffff;
  --teal: #176b68;
  --teal-dark: #103f3e;
  --leaf: #4b7d43;
  --coral: #c96d4c;
  --gold: #d6a84f;
  --line: rgba(24, 36, 33, 0.14);
  --shadow: 0 22px 58px rgba(21, 34, 30, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

p,
li {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.55rem, 6vw, 5.25rem);
}

h2 {
  max-width: 790px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid,
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 10px 40px rgba(24, 36, 33, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-weight: 900;
  font-size: 1.04rem;
}

.brand-subtitle {
  font-size: 0.78rem;
  opacity: 0.82;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  border-radius: 8px;
  padding: 10px 13px;
  font-weight: 800;
  font-size: 0.93rem;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-solid .primary-nav a:hover,
.site-header.is-solid .primary-nav a:focus-visible,
.site-header.is-solid .primary-nav a[aria-current="page"],
.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a:focus-visible,
.site-header.is-scrolled .primary-nav a[aria-current="page"],
.site-header.is-open .primary-nav a:hover,
.site-header.is-open .primary-nav a:focus-visible {
  background: var(--mist);
}

.primary-nav .nav-cta {
  color: #ffffff;
  background: var(--teal);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible,
.primary-nav .nav-cta[aria-current="page"] {
  color: #ffffff;
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 84vh;
  isolation: isolate;
  overflow: hidden;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 38, 34, 0.84) 0%, rgba(14, 38, 34, 0.7) 38%, rgba(14, 38, 34, 0.22) 70%, rgba(14, 38, 34, 0.06) 100%),
    linear-gradient(180deg, rgba(14, 38, 34, 0.52) 0%, rgba(14, 38, 34, 0.14) 32%, rgba(14, 38, 34, 0.36) 100%);
}

.hero-content {
  align-self: end;
  width: min(820px, calc(100% - 36px));
  padding: 128px clamp(18px, 6vw, 76px) 74px;
  color: #ffffff;
}

.hero-brand-banner {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 900;
  line-height: 1.15;
}

.hero-brand-banner strong {
  display: inline-grid;
  flex: 0 0 auto;
  min-width: 46px;
  min-height: 34px;
  place-items: center;
  border-radius: 6px;
  color: var(--teal-dark);
  background: #ffffff;
}

.hero-brand-banner span {
  flex: 1 1 230px;
  min-width: 0;
  overflow-wrap: break-word;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c77b;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 5.75vw, 5rem);
  line-height: 1.02;
}

.hero-lede {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.3vw, 1.38rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.trust-strip div {
  min-height: 128px;
  padding: 28px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 6vw, 76px);
}

.section.no-top,
.no-top {
  padding-top: 0;
}

.section-tint {
  background: var(--cream);
}

.page-main {
  padding-top: 78px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(230, 240, 234, 0.95), rgba(246, 241, 232, 0.94)),
    var(--cream);
}

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

.about-hero {
  align-items: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-copy,
.split-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p + p,
.split-copy p + p {
  margin-top: 18px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 430px);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-header > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-header.compact {
  grid-template-columns: 1fr;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.resource-card,
.quick-panel,
.founder-card,
.statement-card,
.contact-details-panel,
.article-callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(24, 36, 33, 0.06);
}

.feature-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
}

.feature-card h3,
.resource-card h3,
.service-list h3,
.process-item h3,
.faq-grid h3 {
  margin-top: 14px;
  color: var(--teal-dark);
}

.feature-card p,
.resource-card p,
.service-list p,
.process-item p,
.faq-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.feature-card a:not(.button),
.resource-card a:not(.button) {
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.card-number,
.resource-type,
.profile-label,
.panel-label {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
}

.profile-panel {
  border-radius: 8px;
  padding: clamp(26px, 5vw, 44px);
  color: #ffffff;
  background: var(--teal-dark);
}

.profile-panel h2,
.profile-panel p {
  color: #ffffff;
}

.profile-panel p:not(.profile-label) {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.profile-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 18px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 900;
}

.profile-mark.large {
  width: 96px;
  height: 96px;
  font-size: 2.6rem;
}

.profile-photo-wrap,
.founder-photo-wrap {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.profile-photo-wrap {
  max-width: 340px;
  margin-bottom: 22px;
  aspect-ratio: 4 / 5;
}

.founder-photo-wrap {
  margin-bottom: 22px;
  aspect-ratio: 4 / 5;
}

.profile-photo,
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.resource-preview {
  background: #ffffff;
}

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

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

.resource-card {
  min-height: 260px;
  padding: 24px;
}

.resource-card.large {
  grid-column: span 2;
}

.resource-card.large h2,
.resource-card.large h3 {
  margin-top: 14px;
  color: var(--teal-dark);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(44px, 6vw, 70px) clamp(18px, 6vw, 76px);
  color: #ffffff;
  background: var(--teal-dark);
}

.cta-band h2 {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.cta-band p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.founder-card,
.quick-panel,
.contact-details-panel {
  padding: 28px;
}

.hero-side-stack {
  display: grid;
  gap: 16px;
}

.side-image-card,
.family-gallery-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(24, 36, 33, 0.06);
}

.side-image-card {
  aspect-ratio: 3 / 2;
}

.side-image-card picture,
.family-gallery-card picture {
  display: block;
  width: 100%;
}

.side-image,
.family-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-image {
  object-position: center;
}

.family-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 0.9fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  background: #ffffff;
}

.family-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.family-gallery-card {
  margin: 0;
  background: #ffffff;
}

.family-gallery-card.wide {
  grid-column: 1 / -1;
}

.family-gallery-card picture {
  aspect-ratio: 4 / 5;
}

.family-gallery-card.wide picture {
  aspect-ratio: 16 / 9;
}

.family-gallery-card figcaption {
  padding: 9px 11px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.family-gallery-card img {
  object-position: center 38%;
}

.family-gallery-card.wide img {
  object-position: center;
}

.founder-card h2 {
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: clamp(2rem, 4vw, 3rem);
}

.founder-card p:not(.profile-label),
.quick-panel li,
.contact-details-panel span {
  color: var(--muted);
}

.statement-card {
  padding: clamp(24px, 4vw, 36px);
  background: var(--teal-dark);
  color: #ffffff;
}

.quote-mark {
  color: var(--gold);
  font-size: 4rem;
  line-height: 0.8;
}

.statement-card blockquote {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.25;
}

.quote-credit {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.credentials-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
}

.credentials-list {
  display: grid;
  gap: 12px;
}

.credentials-list div {
  border-left: 5px solid var(--gold);
  padding: 15px 18px;
  background: var(--mist);
}

.credentials-list strong,
.credentials-list span {
  display: block;
}

.credentials-list span {
  margin-top: 4px;
  color: var(--muted);
}

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

.service-list.compact article {
  min-height: auto;
}

.service-list article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.process-item span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--leaf);
  font-weight: 900;
}

.process-item h3 {
  margin-top: 0;
}

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

.faq-grid article {
  border-top: 4px solid var(--teal);
  padding: 22px;
  background: #ffffff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: var(--mist);
  font-weight: 800;
  font-size: 0.9rem;
}

.quick-panel.light {
  background: var(--cream);
}

.article-page {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 6vw, 76px);
}

.article-header {
  max-width: 960px;
}

.article-header p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.18rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-top: clamp(44px, 6vw, 78px);
}

.article-toc {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.article-toc strong {
  color: var(--teal-dark);
}

.article-toc a {
  color: var(--muted);
  font-weight: 800;
}

.article-content {
  display: grid;
  gap: 40px;
}

.article-content h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.06rem;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-top: 16px;
}

.article-callout {
  margin-top: 24px;
  padding: 24px;
  background: var(--mist);
}

.article-callout h3 {
  color: var(--teal-dark);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.76fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  color: #ffffff;
  background: var(--teal-dark);
}

.contact-section h2 {
  color: #ffffff;
}

.contact-copy p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.form-row select option {
  color: var(--ink);
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.form-submit {
  width: 100%;
  background: var(--coral);
  border-color: var(--coral);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: #ad5738;
  border-color: #ad5738;
}

.form-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.contact-details-panel a {
  display: inline-flex;
  margin: 4px 0 18px;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(260px, 1fr) minmax(280px, 1.2fr);
  gap: 28px;
  padding: 34px clamp(18px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.76);
  background: #13201d;
  font-size: 0.9rem;
}

.footer-brand {
  display: grid;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 800;
}

.footer-note {
  max-width: 760px;
}

@media (max-width: 1120px) {
  .card-grid.four,
  .resource-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .brand-subtitle {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: clamp(18px, 5vw, 64px);
    left: clamp(18px, 5vw, 64px);
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 13px;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14, 38, 34, 0.86), rgba(14, 38, 34, 0.62)),
      linear-gradient(180deg, rgba(14, 38, 34, 0.36), rgba(14, 38, 34, 0.78));
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .trust-strip,
  .intro-grid,
  .section-header,
  .split-section,
  .family-section,
  .page-hero,
  .credentials-section,
  .contact-section,
  .article-layout,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .card-grid.three,
  .resource-grid,
  .service-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.35rem);
  }

  .hero {
    min-height: 72vh;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.6vw, 3.25rem);
    line-height: 1.04;
  }

  .hero-content {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-actions,
  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .section,
  .page-hero,
  .article-page {
    padding-inline: 18px;
  }

  .card-grid.four,
  .resource-index {
    grid-template-columns: 1fr;
  }

  .resource-card.large {
    grid-column: span 1;
  }

  .feature-card,
  .resource-card,
  .service-list article {
    min-height: auto;
  }

  .process-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .process-item span {
    width: 40px;
    height: 40px;
  }
}
