:root {
  --navy: oklch(27% 0.045 245);
  --navy-dark: oklch(21% 0.042 245);
  --slate: oklch(45% 0.03 246);
  --taupe: oklch(58% 0.026 70);
  --sand: oklch(86% 0.02 76);
  --porcelain: oklch(96.5% 0.012 75);
  --paper: oklch(98.5% 0.008 75);
  --gold: oklch(72% 0.095 78);
  --gold-dark: oklch(57% 0.1 74);
  --error: oklch(48% 0.16 25);
  --success: oklch(45% 0.09 155);
  --copy-size: .88rem;
  --display: "Lora", Georgia, serif;
  --body: "Montserrat", Arial, sans-serif;
  --page: min(1280px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--navy);
  background: var(--paper);
  font: 400 1rem/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 2.4vw + 1.1rem, 4rem); }
h2 { font-size: clamp(1.85rem, 2.8vw + 0.85rem, 4.8rem); }
h3 { font-size: 1.3rem; }
p { text-wrap: pretty; }
section { scroll-margin-top: 88px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.page-grid { width: var(--page); margin-inline: auto; }
.section { padding-block: clamp(100px, 12vw, 180px); }
.kicker {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.button, .header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 0;
  color: var(--navy-dark);
  background: var(--gold);
  font-size: .76rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms, background 180ms, transform 180ms var(--ease);
}
.button:hover, .header-cta:hover { color: var(--paper); background: var(--navy); transform: translateY(-2px); }
.button--dark { border-color: var(--navy); color: var(--paper); background: var(--navy); }
.button--dark:hover { color: var(--navy); background: var(--gold); }

.site-header {
  position: relative;
  z-index: 20;
  width: var(--page);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-inline: auto;
  border-bottom: 1px solid var(--sand);
}
.site-header.is-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  padding-inline: max(24px, calc((100% - 1280px) / 2));
  background: oklch(98.5% 0.008 75 / .97);
  backdrop-filter: blur(12px);
}
.logo { flex: 0 0 auto; width: 190px; }
.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.3vw, 38px);
  margin-left: auto;
}
.navigation > a:not(.header-cta) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 0;
  color: var(--navy);
  font-size: .7rem;
  font-weight: 600;
  text-decoration: none;
}
.navigation > a:not(.header-cta)::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  margin-top: 3px;
  background: var(--gold-dark);
  transition: width 180ms var(--ease);
}
.navigation > a:not(.header-cta):hover::after { width: 100%; }
.header-cta { min-height: 38px; padding: 8px 14px; background: var(--navy); border-color: var(--navy); color: var(--paper); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 9px 14px 9px 12px;
  border: 1px solid var(--sand);
  border-radius: 0;
  color: var(--navy-dark);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px oklch(98.5% 0.008 75);
  cursor: pointer;
}
.nav-toggle__frame {
  display: grid;
  gap: 4px;
  width: 18px;
}
.nav-toggle__line {
  display: block;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}
.nav-toggle__line:nth-child(2) { width: 72%; }
.nav-toggle__text {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-toggle:hover {
  border-color: var(--gold-dark);
  background: var(--porcelain);
}
.nav-toggle:focus-visible {
  border-color: var(--gold);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.nav-toggle[aria-hidden="true"] {
  visibility: hidden;
  pointer-events: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.navigation__head { display: none; }

.nav-close {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.34fr .92fr .48fr;
  gap: 12px;
  padding-block: clamp(44px, 7vw, 92px) clamp(100px, 11vw, 160px);
}
.hero-copy {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: 8px 7vw 0 0;
}
.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(1.85rem, 2.1vw + 0.95rem, 3.6rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}
.hero-title__lead { white-space: nowrap; }
.hero-copy__bottom { max-width: 38ch; margin-top: auto; }
.hero-copy__bottom p { color: var(--slate); font-size: var(--copy-size); }
.hero-main-image img { height: 650px; object-fit: cover; }
.hero-side { display: grid; grid-template-rows: 1fr auto; gap: 12px; }
.hero-side figure, .hero-main-image { margin: 0; overflow: hidden; }
.hero-side figure img { height: 370px; object-fit: cover; }
.hero-side blockquote {
  min-height: 268px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 30px 26px;
  color: var(--navy);
  background: var(--gold);
}
.hero-side blockquote > span { font: 600 2.4rem/1 var(--display); }
.hero-side blockquote p { margin: 14px 0 auto; font: 500 1.25rem/1.25 var(--display); }
.hero-side cite { font-size: .62rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

.promise {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}
.promise h2 { margin-bottom: 28px; }
.promise > p:last-child { max-width: 72ch; margin: 0 auto; color: var(--slate); }

.care {
  display: grid;
  grid-template-columns: .92fr 1fr .86fr;
  gap: 12px;
  align-items: stretch;
}
.care-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px clamp(20px, 4vw, 58px) 6px 0;
}
.care-intro h2 { max-width: 12ch; font-size: clamp(2.2rem, 3.1vw, 3.55rem); }
.care-intro > p:not(.kicker) { color: var(--slate); font-size: var(--copy-size); }
.care-intro .button { margin-top: auto; }
.care-image { margin: 0; min-height: 690px; }
.care-image img { height: 100%; object-fit: cover; }
.care-list { display: grid; grid-template-rows: repeat(4, 1fr); background: var(--porcelain); }
.care-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 26px;
  border-bottom: 1px solid var(--sand);
}
.care-list article:last-child { border: 0; }
.care-list svg { width: 40px; fill: none; stroke: var(--gold-dark); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.care-list h3 { margin-bottom: 8px; font-size: 1.13rem; }
.care-list p { margin: 0; color: var(--slate); font-size: var(--copy-size); line-height: 1.55; }

.process {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy-dark);
}
.process::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -28vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid oklch(72% .095 78 / .18);
  border-radius: 50%;
  pointer-events: none;
}
.process-layout {
  position: relative;
  z-index: 1;
  width: var(--page);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(70px, 10vw, 150px);
  margin: 0 auto;
}
.process-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}
.process-heading h2 { max-width: 11ch; margin-bottom: 30px; }
.process-heading > p:last-child { max-width: 46ch; color: oklch(84% .014 75); font-size: .86rem; }
.process-flow {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-flow li {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 35px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid oklch(72% .095 78 / .38);
}
.process-flow li:last-child { border-bottom: 1px solid oklch(72% .095 78 / .38); }
.process-word { color: var(--gold); font: 500 clamp(1.45rem, 2.1vw, 2rem)/1.1 var(--display); }
.process-flow p { max-width: 38ch; margin: 0; color: oklch(88% .012 75); font-size: var(--copy-size); }

.expert {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  grid-template-areas: "copy note" "details details";
  gap: 80px 12vw;
}
.expert-copy { grid-area: copy; }
.expert-copy h2 { max-width: 13ch; }
.expert-copy > p:not(.kicker) { max-width: 60ch; color: var(--slate); font-size: var(--copy-size); }
.expert-note {
  grid-area: note;
  align-self: end;
  padding: 34px;
  color: var(--paper);
  background: var(--navy);
}
.expert-note p { font: 500 1.5rem/1.35 var(--display); }
.expert-note span { color: var(--gold); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.expert-details { grid-area: details; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid var(--sand); }
.expert-details div { padding: 26px 0; border-right: 1px solid var(--sand); }
.expert-details div:not(:first-child) { padding-left: 32px; }
.expert-details div:last-child { border-right: 0; }
.expert-details dt { color: var(--taupe); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.expert-details dd { margin: 8px 0 0; font-family: var(--display); font-weight: 500; }

.image-pause {
  display: grid;
  grid-template-columns: 1.55fr .65fr;
  min-height: 470px;
  margin-bottom: clamp(100px, 12vw, 180px);
}
.image-pause figure { min-height: 470px; margin: 0; overflow: hidden; }
.image-pause img { height: 100%; object-fit: cover; }
.image-pause__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 70px);
  color: var(--paper);
  background: var(--navy);
}
.image-pause__copy blockquote {
  max-width: 15ch;
  margin: 0;
  color: var(--paper);
  font: 500 clamp(1.65rem, 2.8vw, 3rem)/1.18 var(--display);
  letter-spacing: -.025em;
}

.choice { display: grid; grid-template-columns: .92fr 1.08fr; gap: 6vw; padding-inline: max(24px, calc((100% - 1280px) / 2)); background: var(--porcelain); }
.choice-heading h2 { max-width: 18ch; font-size: clamp(2.4rem, 3.55vw, 4.2rem); }
.choice-heading > p:last-child { color: var(--slate); font-size: var(--copy-size); }
.choice-columns { display: grid; grid-template-columns: 1fr 1fr; align-self: center; }
.choice-columns article { min-height: 410px; display: flex; flex-direction: column; padding: 42px; border: 1px solid var(--sand); }
.choice-columns h3 { font-size: 1.65rem; }
.choice-columns p { color: var(--slate); font-size: var(--copy-size); }
.choice-columns ul { display: grid; gap: 10px; margin: auto 0 0; padding: 0; list-style: none; font-size: var(--copy-size); }
.choice-columns li::before { content: "✓"; margin-right: 10px; color: var(--gold-dark); }
.choice-featured { color: var(--paper); background: var(--navy); border-color: var(--navy) !important; }
.choice-featured p { color: oklch(87% .012 75); }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10vw; }
.faq-heading h2 { max-width: 10ch; }
.faq-list { border-top: 1px solid var(--navy); }
.faq-list details { border-bottom: 1px solid var(--sand); }
.faq-list summary {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 20px 48px 20px 0;
  font: 500 1.05rem var(--display);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; color: var(--gold-dark); font: 400 1.5rem var(--body); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 68ch; padding: 0 48px 26px 0; color: var(--slate); font-size: var(--copy-size); }

.contact { display: grid; grid-template-columns: .92fr 1.08fr; gap: 7vw; color: var(--paper); background: var(--navy-dark); width: 100%; padding-inline: max(24px, calc((100% - 1280px) / 2)); }
.contact-copy h2 { max-width: 16ch; font-size: clamp(2.35rem, 3.45vw, 4rem); }
.contact-copy > p:not(.kicker) { max-width: 48ch; color: oklch(86% .014 75); font-size: var(--copy-size); }
.contact-methods { display: grid; gap: 0; margin-top: 42px; font-style: normal; }
.contact-methods > a, .contact-methods > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid oklch(72% .095 78 / .25);
  color: var(--paper);
  text-decoration: none;
}
.contact-methods > :last-child { border-bottom: 1px solid oklch(72% .095 78 / .25); }
.contact-methods svg { width: 30px; fill: none; stroke: var(--gold); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.contact-methods span { display: grid; gap: 2px; }
.contact-methods small { color: var(--gold); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-methods strong { font: 500 .95rem/1.45 var(--display); }
.contact-form { padding: clamp(28px, 4vw, 52px); color: var(--navy); background: var(--paper); }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 18px; font-size: .7rem; font-weight: 600; }
.contact-form label > span { color: var(--taupe); font-weight: 400; }
.contact-form input, .contact-form textarea {
  width: 100%;
  min-height: 48px;
  display: block;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid var(--sand);
  border-radius: 0;
  color: var(--navy);
  background: var(--porcelain);
}
.contact-form textarea { resize: vertical; }
.contact-form input[aria-invalid="true"] { border-color: var(--error); }
.contact-form small { min-height: 17px; display: block; color: var(--error); font-size: .64rem; }
.contact-form .consent { display: flex; gap: 10px; align-items: flex-start; color: var(--slate); font-size: .68rem; font-weight: 400; line-height: 1.45; }
.contact-form .consent input { width: 18px; min-height: 18px; margin: 1px 0 0; accent-color: var(--gold-dark); }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--success); font-size: .74rem; font-weight: 600; }

.site-footer {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px, 10vw, 150px);
  padding: 58px max(24px, calc((100% - 1280px) / 2)) 24px;
  color: var(--paper);
  background: var(--navy);
  font-size: var(--copy-size);
}
.footer-lead { display: flex; flex-direction: column; align-items: flex-start; }
.footer-lead img { width: 210px; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: .94; }
.footer-lead h2 { max-width: 18ch; margin-bottom: 26px; color: var(--paper); font-size: clamp(1.8rem, 2.45vw, 2.8rem); line-height: 1.08; }
.footer-navigation { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; align-self: end; padding-top: 12px; }
.footer-navigation > div { display: flex; flex-direction: column; gap: 10px; }
.footer-navigation p { margin-bottom: 10px; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-navigation a { color: oklch(91% .01 75); text-decoration-color: oklch(72% .095 78 / .35); text-underline-offset: 4px; }
.footer-navigation a[aria-disabled="true"] { pointer-events: none; cursor: default; text-decoration: none; }
.footer-navigation span { color: oklch(82% .012 75); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid oklch(72% .095 78 / .25);
  color: oklch(75% .012 75);
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: .8fr 1.2fr; }
  .hero-side { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .hero-side figure img, .hero-side blockquote { height: 300px; min-height: 0; }
  .care { grid-template-columns: 1fr 1fr; }
  .care-intro { grid-column: 1 / -1; min-height: 380px; max-width: 680px; }
  .care-image { min-height: 620px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-heading { position: static; max-width: 750px; }
  .process-heading h2 { max-width: 15ch; }
  .process-flow { grid-template-columns: 1fr 1fr; column-gap: 42px; }
  .process-flow li:nth-child(even) { transform: none; }
  .choice { grid-template-columns: 1fr; }
  .choice-heading h2 { max-width: 19ch; }
  .contact { grid-template-columns: .85fr 1.15fr; gap: 5vw; }
}

@media (max-width: 760px) {
  :root { --page: calc(100% - 32px); }
  section { scroll-margin-top: 78px; }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: auto;
    min-height: 70px;
    flex-wrap: nowrap;
    gap: 12px;
    padding-block: 10px;
    width: 100%;
    padding-inline: 16px;
    background: oklch(98.5% 0.008 75 / .97);
    backdrop-filter: blur(12px);
  }
  .site-header.is-sticky { padding-inline: 16px; }
  .logo { width: 148px; }

  .nav-toggle { display: inline-flex; }

  .nav-backdrop {
    display: block;
  }
  .nav-backdrop.is-visible {
    visibility: visible;
    pointer-events: auto;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 55;
    width: min(100%, 380px);
    height: 100dvh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding:
      calc(20px + env(safe-area-inset-top, 0px))
      20px
      calc(28px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--paper);
    background:
      linear-gradient(165deg, oklch(24% 0.045 245) 0%, var(--navy-dark) 42%, oklch(19% 0.04 245) 100%);
    box-shadow: -28px 0 64px oklch(16% 0.04 245 / .42);
    visibility: hidden;
  }
  .navigation::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, oklch(82% 0.08 78) 100%);
  }
  .navigation.is-open { visibility: visible; }

  .navigation__head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
  }

  .nav-close {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 0;
    color: var(--navy-dark);
    background: var(--gold);
    box-shadow: none;
    cursor: pointer;
  }
  .nav-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
  }
  .nav-close:hover {
    color: var(--paper);
    background: var(--navy);
    border-color: var(--paper);
  }
  .nav-close:focus-visible {
    outline: 3px solid var(--paper);
    outline-offset: 3px;
  }

  .navigation > a:not(.header-cta) {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    padding: 20px 0;
    border-bottom: 1px solid oklch(72% .095 78 / .24);
    color: oklch(98% 0.008 75);
    font-size: 1.12rem;
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -.02em;
  }
  .navigation > a:not(.header-cta)::after { display: none; }

  .navigation .header-cta {
    width: 100%;
    min-height: 54px;
    margin-top: 28px;
    padding: 14px 18px;
    border-color: var(--gold);
    color: var(--navy-dark);
    background: var(--gold);
    font-size: .76rem;
    box-shadow: 0 12px 28px oklch(16% 0.04 245 / .24);
  }
  .navigation .header-cta:hover {
    color: var(--paper);
    background: var(--navy);
    transform: translateY(-2px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 24px 48px;
  }
  .hero-copy {
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.575rem, 5.8vw + 0.42rem, 2.35rem);
    line-height: 1.14;
    letter-spacing: -.03em;
    hyphens: none;
    text-wrap: pretty;
  }
  .hero-copy__bottom { max-width: none; margin-top: 0; }
  .hero-main-image img { height: min(62vw, 420px); }
  .hero-side { grid-column: auto; grid-template-columns: .85fr 1.15fr; }
  .hero-side figure img, .hero-side blockquote { height: 260px; }
  .hero-side blockquote { padding: 22px 18px; }
  .hero-side blockquote p { font-size: 1rem; }

  .promise {
    padding-inline: 0;
    text-align: left;
  }
  .promise h2 { font-size: clamp(1.75rem, 6vw + 0.5rem, 2.5rem); }
  .promise > p:last-child { margin: 0; }

  .section { padding-block: 72px; }
  .promise.section { padding-block: 48px; }
  .care { grid-template-columns: 1fr; }
  .care-intro { grid-column: auto; min-height: 0; padding-right: 0; }
  .care-intro h2 { max-width: none; font-size: clamp(1.75rem, 5.5vw + 0.6rem, 2.4rem); }
  .care-image { min-height: 320px; }
  .care-list article { padding: 24px 20px; }
  .process-flow { grid-template-columns: 1fr; }
  .process-flow li { min-height: 150px; grid-template-columns: 1fr; gap: 14px; }
  .process-word { font-size: 1.6rem; }
  .process-heading h2 { max-width: none; font-size: clamp(1.75rem, 6vw + 0.5rem, 2.5rem); }
  .expert { grid-template-columns: 1fr; grid-template-areas: "copy" "note" "details"; gap: 44px; }
  .expert-copy h2 { max-width: none; font-size: clamp(1.75rem, 6vw + 0.5rem, 2.5rem); }
  .expert-details { grid-template-columns: 1fr; }
  .expert-details div, .expert-details div:not(:first-child) { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--sand); }
  .image-pause { grid-template-columns: 1fr; min-height: 0; margin-bottom: 72px; }
  .image-pause figure { min-height: 280px; }
  .image-pause__copy { min-height: 240px; }
  .image-pause__copy blockquote { max-width: none; font-size: clamp(1.45rem, 5vw + 0.5rem, 2rem); }
  .choice { padding-inline: 16px; }
  .choice-heading h2 { max-width: none; font-size: clamp(1.75rem, 6vw + 0.5rem, 2.5rem); }
  .choice-columns { grid-template-columns: 1fr; }
  .choice-columns article { min-height: 0; padding: 32px 24px; }
  .faq, .contact { grid-template-columns: 1fr; gap: 40px; }
  .faq-heading h2 { max-width: none; font-size: clamp(1.75rem, 6vw + 0.5rem, 2.5rem); }
  .contact-copy h2 { max-width: none; font-size: clamp(1.75rem, 6vw + 0.5rem, 2.4rem); }
  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .contact-form { margin-inline: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 48px; padding-inline: 16px; }
  .footer-lead h2 { max-width: none; }
  .footer-navigation { grid-template-columns: 1fr 1fr; }
  .footer-navigation > div:last-child { grid-column: 1 / -1; }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 440px) {
  .hero-side { grid-template-columns: 1fr; }
  .hero-side figure { display: none; }
  .footer-navigation { grid-template-columns: 1fr; }
  .footer-navigation > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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

  .navigation.is-open {
    visibility: visible;
    transform: none;
  }

  .navigation > a:not(.header-cta),
  .navigation .header-cta,
  .nav-close {
    opacity: 1;
    transform: none;
  }
}
