/* Matching Hearts
   Signature editorial system — August 2026
   Canonical source of truth for layout, type, navigation, photography, components, and responsive behavior. */

:root {
  --red: #A82D2D;
  --blue: #239EC4;
  --blue-deep: #147A99;
  --blue-ink: #0C6782;
  --purple: #682776;
  --ink: #20262B;
  --ink-soft: #39434B;
  --muted: #626D75;
  --line: #DCE3E7;
  --line-dark: #C7D0D6;
  --cool: #F2F7F9;
  --neutral: #F7F6F4;
  --footer: #EEF4F6;
  --white: #FFFFFF;
  --header-height: 86px;
  --container: 1180px;
  --reading: 760px;
  --ease: cubic-bezier(.2, .7, .25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
select {
  cursor: pointer;
}

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

img {
  height: auto;
}

a {
  color: var(--blue-ink);
  text-underline-offset: .22em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--purple);
}

p,
ul,
ol {
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.85rem, 6vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.22;
}

small {
  font-size: .78rem;
}

::selection {
  background: rgba(35, 158, 196, .2);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(35, 158, 196, .55);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

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

.reading-width {
  width: min(calc(100% - 56px), var(--reading));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.section--compact {
  padding: clamp(58px, 7vw, 92px) 0;
}

.section--cool {
  background: var(--cool);
}

.section--neutral {
  background: var(--neutral);
}

.section-label,
.article-kicker,
.eyebrow {
  display: block;
  margin: 0 0 16px;
  color: var(--red);
  font-size: .73rem;
  font-weight: 760;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-heading p {
  max-width: 610px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.lead {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.27rem);
  line-height: 1.55;
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-ink);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after,
.arrow-link::after {
  content: "→";
  transition: transform .2s var(--ease);
}

.text-link:hover::after,
.arrow-link:hover::after {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .91rem;
  font-weight: 740;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: var(--white);
}

.btn-primary:hover {
  border-color: var(--blue-ink);
  background: var(--blue-ink);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--line-dark);
  background: var(--white);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--blue-deep);
  color: var(--blue-ink);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, .65);
  background: transparent;
  color: var(--white);
}

.btn-on-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.home-header {
  border-color: var(--line);
  background: var(--white);
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  width: 218px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 27px;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: .89rem;
  font-weight: 690;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 100%;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: right .22s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a[aria-current="page"]:not(.nav-cta)::after {
  right: 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--red);
}

.nav-links .nav-cta,
.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--blue-deep);
  border-radius: 3px;
  background: var(--blue-deep);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-cta:hover {
  border-color: var(--blue-ink);
  background: var(--blue-ink);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform .2s var(--ease), opacity .16s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Editorial photography: natural aspect ratio is the default. */
.photo-frame {
  position: relative;
  min-width: 0;
  background: #DDE4E7;
}

.photo-frame picture,
.photo-frame img {
  width: 100%;
}

.photo-frame img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.story-photo,
.page-hero-photo,
.process-break-photo,
.faq-hero-photo,
.contact-photo,
.resource-photo,
.article-figure .photo-frame,
.photo-mosaic > .photo-frame,
.photo-mosaic > .mosaic-tall {
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
}

.story-photo picture,
.story-photo img,
.page-hero-photo picture,
.page-hero-photo img,
.process-break-photo picture,
.process-break-photo img,
.faq-hero-photo picture,
.faq-hero-photo img,
.contact-photo picture,
.contact-photo img,
.resource-photo picture,
.resource-photo img,
.article-figure .photo-frame picture,
.article-figure .photo-frame img,
.photo-mosaic picture,
.photo-mosaic img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
}

/* Cinematic homepage hero */
.cinematic-hero {
  position: relative;
  display: flex;
  min-height: clamp(650px, 84svh, 900px);
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #172127;
  color: var(--white);
}

.hero-media,
.hero-slide,
.hero-slide picture,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-slide {
  opacity: 0;
  background: radial-gradient(circle at center, #34434C 0%, #172127 72%);
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  object-fit: cover;
  transform: scale(1.01);
  transform-origin: center top;
  transition: transform 8s ease-out;
}

.hero-slide.is-panning img {
  transform: scale(1.035);
}

.hero-slide.is-resetting img {
  transition: none;
}

.hero-slide.is-active img {
  will-change: transform;
}

.hero-slide:nth-child(1) img {
  object-position: 50% 8%;
}

.hero-slide:nth-child(2) img,
.hero-slide:nth-child(3) img,
.hero-slide:nth-child(4) img {
  object-position: 50% 0%;
}

.cinematic-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 25, 30, .76) 0%, rgba(17, 25, 30, .62) 34%, rgba(17, 25, 30, .24) 67%, rgba(17, 25, 30, .08) 100%),
    linear-gradient(0deg, rgba(14, 21, 25, .38) 0%, rgba(14, 21, 25, 0) 58%);
  content: "";
}

.hero-content {
  width: 100%;
  padding: 0 0 clamp(70px, 8vh, 100px);
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(3.2rem, 6.7vw, 5.45rem);
  letter-spacing: -.052em;
}

.home-page .hero-emphasis {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: .01em .10em .055em .09em;
  color: var(--white);
  line-height: .98;
  isolation: isolate;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.home-page .hero-emphasis::before {
  position: absolute;
  z-index: -2;
  top: -.12em;
  right: -.20em;
  bottom: -.09em;
  left: -.17em;
  background: var(--blue);
  content: "";
  opacity: .97;
  transform: rotate(-1deg);
  transform-origin: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 140'%3E%3Cpath fill='white' d='M13 53C38 31 92 28 145 30C205 32 258 18 321 22C383 26 440 17 478 32C494 39 499 54 489 65C497 79 492 93 473 101C424 121 372 108 316 113C254 119 199 108 143 114C94 119 43 113 16 96C2 87 4 68 13 53Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 140'%3E%3Cpath fill='white' d='M13 53C38 31 92 28 145 30C205 32 258 18 321 22C383 26 440 17 478 32C494 39 499 54 489 65C497 79 492 93 473 101C424 121 372 108 316 113C254 119 199 108 143 114C94 119 43 113 16 96C2 87 4 68 13 53Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.home-page .hero-emphasis::after {
  position: absolute;
  z-index: -1;
  top: .18em;
  right: -.10em;
  left: -.08em;
  height: .30em;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  content: "";
  opacity: .72;
  transform: rotate(.45deg);
}

.hero-copy .lead {
  max-width: 590px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.hero-copy .button-row {
  margin-top: 2px;
}

.hero-copy .btn-secondary {
  border-color: rgba(255, 255, 255, .64);
  background: rgba(20, 27, 32, .08);
  color: var(--white);
}

.hero-copy .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.hero-detail {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .84rem;
  font-weight: 590;
}

.hero-detail a {
  color: var(--white);
}

.hero-indicators {
  position: absolute;
  right: max(28px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  z-index: 3;
  display: flex;
}

.hero-indicators button {
  width: 38px;
  height: 44px;
  padding: 21px 4px;
  border: 0;
  background: transparent;
}

.hero-indicators button::before {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .42);
  content: "";
  transition: background-color .2s ease, transform .2s ease;
}

.hero-indicators button[aria-pressed="true"]::before {
  background: var(--blue);
  transform: scaleY(1.5);
}

/* Answer-first editorial links */
.questions-section {
  padding: clamp(74px, 8vw, 112px) 0;
  background: var(--white);
}

.questions-head {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 74px;
  align-items: end;
  margin-bottom: 40px;
}

.questions-head p {
  max-width: 520px;
  margin: 0;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.question-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  min-width: 0;
  min-height: 138px;
  align-items: center;
  padding: 26px 30px 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.question-link:nth-child(odd) {
  padding-right: 42px;
  border-right: 1px solid var(--line);
}

.question-link:nth-child(even) {
  padding-left: 42px;
}

.question-link::before {
  position: absolute;
  right: 100%;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: right .3s var(--ease);
}

.question-link:nth-child(2n)::before {
  background: var(--purple);
}

.question-link:hover::before,
.question-link:focus-visible::before {
  right: 0;
}

.question-link strong,
.question-link > span > span {
  display: block;
}

.question-link strong {
  color: var(--ink);
  font-size: clamp(1.13rem, 2vw, 1.42rem);
  font-weight: 720;
  letter-spacing: -.025em;
  line-height: 1.24;
}

.question-link > span > span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .88rem;
}

.question-link b {
  color: var(--blue-ink);
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform .2s var(--ease);
}

.question-link:hover b {
  transform: translateX(4px);
}

/* Homepage adoption process summary */
.process-section {
  overflow: hidden;
  background: var(--cool);
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 76px;
  align-items: end;
}

.process-intro p {
  max-width: 570px;
  margin: 0;
  font-size: 1.07rem;
}

.process-map {
  position: relative;
  margin-top: 54px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(32, 38, 43, .2);
  list-style: none;
}

.process-step {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 25px 22px 16px 0;
  border-right: 1px solid rgba(32, 38, 43, .13);
}

.process-step + .process-step {
  padding-left: 22px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: -3px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cool);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(35, 158, 196, .35);
  content: "";
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.52;
}

.process-more {
  margin-top: 32px;
}

/* Homepage origin story: photo first, copy below. */
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 5vw, 64px);
  align-items: start;
}

.origin-story-photo,
.story-photo {
  width: 100%;
  background: transparent;
}

.origin-story-photo img,
.story-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.story-copy {
  width: min(100%, 760px);
  max-width: 760px;
}

.story-copy h2 {
  margin-bottom: 25px;
}

.story-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.story-copy .text-link {
  margin-top: 10px;
}

/* Adoption-only focus */
.focus-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 78px;
  align-items: start;
}

.focus-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.focus-heading h2 {
  max-width: 440px;
  color: var(--red);
}

.focus-facts {
  border-top: 1px solid var(--line-dark);
}

.focus-fact {
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.focus-fact h3 {
  margin-bottom: 8px;
}

.focus-fact p {
  max-width: 590px;
  margin: 0;
}

.focus-verify {
  margin: 26px 0 0;
}

/* Guided navigation */
.start-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.start-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 76px;
  align-items: start;
}

.start-layout h2 {
  max-width: 420px;
  color: var(--white);
}

.start-layout .section-label {
  color: #72C7E2;
}

.start-options {
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.start-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  min-height: 72px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  text-decoration: none;
  transition: padding-left .22s var(--ease), color .22s ease;
}

.start-option:hover {
  padding-left: 6px;
  color: #A7E0F1;
}

.start-option strong {
  font-size: 1.02rem;
  font-weight: 680;
}

.start-option b {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Natural-ratio homepage photo gallery */
.mosaic-section {
  padding: 14px 0;
  background: var(--white);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .82fr) minmax(0, 1.15fr);
  gap: 14px;
  align-items: start;
  width: min(calc(100% - 28px), 1500px);
  margin-inline: auto;
}

.photo-mosaic > .photo-frame {
  align-self: start;
  width: 100%;
}

.photo-mosaic img {
  object-fit: contain;
  object-position: center;
}

/* Final photographic CTA: intentional background exception. */
.visual-cta {
  position: relative;
  display: flex;
  min-height: clamp(500px, 44vw, 680px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #24292D;
}

.visual-cta > .container {
  position: relative;
  z-index: 2;
}

.visual-cta .photo-frame {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #24292D;
}

.visual-cta .photo-frame picture,
.visual-cta .photo-frame img {
  width: 100%;
  height: 100%;
}

.visual-cta img {
  object-fit: cover;
  object-position: 50% 42%;
}

.visual-cta .photo-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 25, 30, .70) 0%, rgba(18, 25, 30, .52) 38%, rgba(18, 25, 30, .22) 70%, rgba(18, 25, 30, .08) 100%),
    linear-gradient(0deg, rgba(18, 25, 30, .20), rgba(18, 25, 30, .02) 62%);
  content: "";
}

.visual-cta-copy {
  max-width: 650px;
  padding: clamp(58px, 7vw, 90px) 0;
}

.visual-cta-copy .section-label {
  color: #7ACCE5;
}

.visual-cta-copy h2 {
  max-width: 620px;
  color: var(--white);
}

.visual-cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 24px 0 30px;
}

.visual-cta-contact a {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 660;
  overflow-wrap: anywhere;
}

/* Shared interior page hero */
.page-hero {
  padding: clamp(70px, 8vw, 112px) 0 clamp(58px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
}

.page-hero .lead {
  margin: 20px 0 0;
}

.page-hero--media {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 98px);
  align-items: start;
}

.page-hero-grid .hero-panel {
  align-self: center;
  padding-bottom: clamp(62px, 7vw, 96px);
}

.page-hero-photo {
  width: 100%;
  max-width: 700px;
  justify-self: end;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0 0 21px;
  color: var(--muted);
  font-size: .78rem;
}

.breadcrumb a {
  color: var(--blue-ink);
}

/* About */
.about-story {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.about-story h2 {
  max-width: 420px;
}

.about-story-copy {
  max-width: 690px;
}

.about-story-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.facts-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.fact-column {
  padding: 28px 28px 14px 0;
  border-right: 1px solid var(--line);
}

.fact-column + .fact-column {
  padding-left: 28px;
}

.fact-column:last-child {
  border-right: 0;
}

.fact-column small {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-ink);
  font-weight: 800;
  letter-spacing: .07em;
}

.fact-column:nth-child(2) small {
  color: var(--purple);
}

.fact-column:nth-child(3) small {
  color: var(--red);
}

.fact-column h3 {
  margin-bottom: 10px;
}

/* Full adoption-process page */
.process-page {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-page::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 68px;
  width: 1px;
  background: var(--line-dark);
  content: "";
}

.process-page-step {
  position: relative;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 34px;
  min-height: 170px;
  padding: 0 0 48px;
}

.process-page-step:last-child {
  padding-bottom: 0;
}

.process-page-number {
  position: relative;
  z-index: 2;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-left: 39px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-ink);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.process-page-content {
  max-width: 690px;
  padding-top: 8px;
}

.process-page-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.process-page-content p {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.process-break {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 54px;
  align-items: end;
  margin: 30px 0 78px 138px;
}

.process-break p {
  margin-bottom: 0;
}

/* FAQ */
.faq-hero-photo {
  width: min(100%, 900px);
  margin: 48px auto 0;
}

.faq-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  border-top: 2px solid var(--purple);
}

.faq-nav a {
  display: block;
  min-height: 44px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 650;
  text-decoration: none;
}

.faq-nav a:hover {
  color: var(--blue-ink);
}

.faq-category + .faq-category {
  margin-top: 58px;
}

.faq-category h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

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

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

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 18px;
  width: 100%;
  min-height: 72px;
  align-items: center;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.38;
  text-align: left;
}

.faq-question:hover {
  color: var(--blue-ink);
}

.faq-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s var(--ease);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 720px;
  padding: 0 54px 22px 0;
}

.faq-answer p {
  margin: 0;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.contact-photo {
  margin-bottom: 30px;
}

.contact-details {
  border-top: 1px solid var(--line-dark);
}

.contact-detail {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail small {
  color: var(--muted);
  font-weight: 700;
}

.contact-detail a,
.contact-detail strong {
  min-width: 0;
  color: var(--ink);
  font-weight: 680;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--blue-ink);
  text-decoration: underline;
}

.form-intro {
  max-width: 620px;
  margin-bottom: 30px;
}

.form-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

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

.field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-deep);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(35, 158, 196, .13);
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-note,
.form-status {
  max-width: 650px;
  margin: 16px 0 0;
  font-size: .78rem;
  line-height: 1.5;
}

.form-status.success {
  color: #176337;
  font-weight: 700;
}

.form-status.error {
  color: #8A2020;
}

button:disabled {
  cursor: wait;
  opacity: .68;
}

/* Client portal */
.portal-section {
  background: var(--cool);
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 78px;
  align-items: start;
}

.portal-layout h2 {
  max-width: 440px;
}

.portal-access {
  padding-top: 26px;
  border-top: 2px solid var(--purple);
}

.portal-access p {
  max-width: 620px;
}

.portal-access .button-row {
  margin-top: 25px;
}

.portal-help {
  margin-top: 48px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

/* Resources */
.resource-intro {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 76px;
  align-items: end;
}

.resource-intro p {
  max-width: 570px;
  margin-bottom: 0;
}

.resource-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
}

.resource-row {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 31px 50px 28px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.resource-row:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.resource-row:nth-child(even) {
  padding-left: 46px;
}

.resource-row small {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.resource-row:nth-child(3n+2) small {
  color: var(--blue-ink);
}

.resource-row:nth-child(3n) small {
  color: var(--purple);
}

.resource-row h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}

.resource-row p {
  max-width: 470px;
  margin-bottom: 20px;
  font-size: .93rem;
}

.resource-row b {
  color: var(--blue-ink);
  font-size: .9rem;
}

.resource-row:hover h2 {
  color: var(--blue-ink);
}

.resource-photo {
  width: min(100%, 930px);
  margin-inline: auto;
}

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

.official-item {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr) auto;
  gap: 34px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.official-item h3 {
  font-size: 1.05rem;
}

.official-item p {
  margin: 0;
  font-size: .9rem;
}

.official-item a {
  white-space: nowrap;
}

/* Long-form editorial guides */
.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  transform-origin: left;
}

.article-hero {
  padding: clamp(68px, 8vw, 108px) 0 clamp(54px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.article-hero-inner {
  max-width: 960px;
}

.article-hero h1 {
  max-width: 920px;
  font-size: clamp(2.75rem, 5.8vw, 4.8rem);
}

.article-hero .lead {
  margin: 21px 0 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--reading)) minmax(210px, 260px);
  gap: clamp(54px, 6vw, 84px);
  align-items: start;
}

.prose {
  max-width: var(--reading);
}

.prose h2 {
  margin: 52px 0 15px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

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

.prose h3 {
  margin: 34px 0 10px;
}

.prose p,
.prose li {
  color: #515D65;
  font-size: 1.02rem;
  line-height: 1.72;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 7px;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding-top: 20px;
  border-top: 2px solid var(--purple);
}

.article-aside h2,
.article-aside h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.article-aside p {
  font-size: .86rem;
  line-height: 1.55;
}

.article-aside .btn {
  margin-top: 7px;
}

.article-figure {
  width: calc(100% + 48px);
  margin: 46px 0 46px -24px;
}

.article-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .75rem;
}

.editorial-note,
.notice {
  margin: 38px 0;
  padding: 20px 0 2px 22px;
  border-left: 2px solid var(--purple);
}

.editorial-note strong,
.notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.editorial-note p,
.notice p {
  margin-bottom: 12px;
  font-size: .93rem;
}

.official-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
}

.official-source::after {
  content: "↗";
}

.seo-disclaimer {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #707A81;
  font-size: .79rem;
  line-height: 1.52;
}

.related-reading {
  margin-top: 50px;
  border-top: 1px solid var(--line-dark);
}

.related-reading-title {
  padding: 22px 0 10px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.related-reading a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 52px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 680;
  text-decoration: none;
}

.related-reading a::after {
  color: var(--blue-ink);
  content: "→";
  transition: transform .2s var(--ease);
}

.related-reading a:hover::after {
  transform: translateX(4px);
}

.next-question {
  margin-top: 42px;
  padding: 24px 0;
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.next-question small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.next-question a {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 720;
  text-decoration: none;
}

/* Legal and error pages */
.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-copy p,
.legal-copy li {
  color: #535E66;
}

.error-page {
  display: flex;
  min-height: 62vh;
  align-items: center;
  padding: 80px 0;
}

.error-code {
  margin: 0 0 15px;
  color: var(--purple);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.error-page h1 {
  max-width: 770px;
  color: var(--red);
}

.error-page .lead {
  margin: 20px 0 28px;
}

/* Footer */
.site-footer {
  padding: 62px 0 25px;
  border-top: 1px solid #D6E0E4;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.3fr) minmax(130px, .55fr) minmax(190px, .75fr) minmax(200px, .8fr);
  gap: clamp(32px, 5vw, 66px);
  align-items: start;
}

.footer-logo {
  width: 196px;
  height: auto;
}

.footer-about {
  max-width: 350px;
  margin: 16px 0 0;
  color: #55636B;
  font-size: .86rem;
  line-height: 1.55;
}

.footer-about strong {
  color: var(--ink);
}

.footer-title {
  margin: 0 0 14px;
  color: #626E75;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #414D55;
  font-size: .84rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blue-ink);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid #D3DDE1;
  color: #626E75;
  font-size: .75rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  align-items: center;
  margin-top: 10px;
  color: #626E75;
  font-size: .76rem;
}

.footer-meta a {
  color: #59656D;
  text-decoration: none;
}

.footer-meta .builder-credit {
  color: var(--blue-ink);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Desktop / small-laptop refinement: 1024–1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
  .site-logo {
    width: 182px;
  }

  .nav {
    gap: 16px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: .79rem;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .questions-head,
  .process-intro,
  .focus-layout,
  .start-layout,
  .resource-intro,
  .portal-layout {
    gap: 48px;
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
  }

  .process-step,
  .process-step + .process-step {
    min-height: 184px;
    padding: 24px 28px 22px 0;
    border-top: 1px solid rgba(32, 38, 43, .2);
    border-right: 1px solid rgba(32, 38, 43, .13);
  }

  .process-step:nth-child(3n + 2),
  .process-step:nth-child(3n + 3) {
    padding-left: 28px;
  }

  .process-step:nth-child(3n) {
    padding-right: 0;
    border-right: 0;
  }

  .process-step:nth-child(n + 4) {
    margin-top: 28px;
  }

  .process-step::before {
    left: -3px;
  }

  .process-step:nth-child(3n + 2)::before,
  .process-step:nth-child(3n + 3)::before {
    left: 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
  }

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

/* Tablet and navigation transition: 768–1023px */
@media (max-width: 1023px) {
  :root {
    --header-height: 78px;
  }

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

  .site-logo {
    width: 190px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 102;
    display: flex;
    width: auto;
    max-height: calc(100dvh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 8px 21px 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 16px 28px rgba(28, 38, 45, .1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s var(--ease), visibility .2s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 0 2px;
    border-bottom: 1px solid #E9EEF0;
    color: var(--ink-soft);
    font-size: .94rem;
    text-shadow: none;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links a[aria-current="page"] {
    color: var(--red);
  }

  .nav-links .nav-cta {
    min-height: 44px;
    align-self: flex-start;
    margin-top: 12px;
    padding: 0 14px;
    border-bottom: 1px solid var(--blue-deep);
  }

  .questions-head,
  .process-intro,
  .focus-layout,
  .start-layout,
  .resource-intro,
  .portal-layout,
  .about-story,
  .contact-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .questions-head,
  .process-intro,
  .focus-layout,
  .start-layout,
  .resource-intro,
  .portal-layout {
    gap: 26px;
  }

  .page-hero-grid {
    gap: 38px;
  }

  .page-hero-grid .hero-panel {
    max-width: 760px;
    padding-bottom: 0;
  }

  .page-hero-photo {
    max-width: 760px;
    justify-self: start;
  }

  .process-steps {
    position: relative;
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-steps::before {
    position: absolute;
    top: 8px;
    bottom: 14px;
    left: 7px;
    width: 1px;
    background: rgba(35, 158, 196, .55);
    content: "";
  }

  .process-step,
  .process-step + .process-step {
    min-height: 0;
    padding: 0 0 28px 44px;
    border: 0;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .process-step::before {
    top: 5px;
    left: 3px;
  }

  .focus-heading,
  .faq-nav,
  .article-aside {
    position: static;
  }

  .focus-facts {
    margin-top: 10px;
  }

  .about-story {
    gap: 28px;
  }

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

  .process-break {
    grid-template-columns: 1fr;
    gap: 26px;
    margin: 32px 0 72px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 24px;
    padding-top: 12px;
  }

  .faq-nav a {
    border-bottom: 0;
  }

  .contact-layout {
    gap: 58px;
  }

  .contact-layout > aside {
    width: min(100%, 680px);
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-aside {
    max-width: 620px;
  }

  .article-figure {
    width: 100%;
    margin-inline: 0;
  }

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

  .official-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .official-item a {
    margin-top: 5px;
    white-space: normal;
  }

  .photo-mosaic {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 12px;
  }

  .photo-mosaic > .photo-frame:last-child {
    grid-column: 1 / -1;
    width: min(72%, 860px);
    justify-self: center;
  }

  .visual-cta {
    min-height: 520px;
  }

  .visual-cta img {
    object-position: 54% 44%;
  }

  .visual-cta .photo-frame::after {
    background:
      linear-gradient(90deg, rgba(18, 25, 30, .72) 0%, rgba(18, 25, 30, .50) 55%, rgba(18, 25, 30, .15) 100%),
      linear-gradient(0deg, rgba(18, 25, 30, .22), rgba(18, 25, 30, .03) 65%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 42px;
  }

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

/* Mobile: below 768px */
@media (max-width: 767px) {
  :root {
    --header-height: 74px;
  }

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

  h1 {
    font-size: clamp(2.42rem, 11vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.88rem, 8.5vw, 2.7rem);
  }

  .section {
    padding: 68px 0;
  }

  .section--compact {
    padding: 54px 0;
  }

  .site-logo {
    width: 174px;
  }

  .cinematic-hero {
    min-height: clamp(590px, 78svh, 700px);
  }

  .hero-content {
    padding: 0 0 62px;
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero-copy h1 {
    max-width: 475px;
    font-size: clamp(2.62rem, 11.5vw, 3.7rem);
  }

  .hero-copy .lead {
    max-width: 480px;
    margin: 17px 0 21px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-copy .button-row {
    gap: 9px;
  }

  .hero-copy .btn {
    min-height: 46px;
  }

  .hero-detail {
    max-width: 360px;
    margin-top: 16px;
    line-height: 1.5;
  }

  .hero-indicators {
    right: 14px;
    bottom: 15px;
  }

  .hero-indicators button {
    width: 34px;
    height: 44px;
  }

  .cinematic-hero::before {
    background:
      linear-gradient(90deg, rgba(17, 25, 30, .66) 0%, rgba(17, 25, 30, .42) 62%, rgba(17, 25, 30, .10) 100%),
      linear-gradient(0deg, rgba(14, 21, 25, .45) 0%, rgba(14, 21, 25, .04) 72%);
  }

  .hero-slide:nth-child(1) img,
  .hero-slide:nth-child(2) img,
  .hero-slide:nth-child(3) img,
  .hero-slide:nth-child(4) img {
    object-position: center top;
  }

  .questions-section {
    padding: 68px 0;
  }

  .questions-head {
    margin-bottom: 28px;
  }

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

  .question-link,
  .question-link:nth-child(odd),
  .question-link:nth-child(even) {
    min-height: 104px;
    padding: 20px 0;
    border-right: 0;
  }

  .question-link strong {
    font-size: 1.1rem;
  }

  .question-link > span > span {
    font-size: .82rem;
  }

  .process-map {
    margin-top: 38px;
  }

  .process-step,
  .process-step + .process-step {
    padding: 0 0 24px 40px;
  }

  .story-layout {
    gap: 34px;
  }

  .story-copy p {
    font-size: 1rem;
  }

  .focus-fact {
    padding: 23px 0;
  }

  .focus-verify {
    margin-top: 22px;
  }

  .start-option {
    gap: 14px;
    min-height: 68px;
    padding: 20px 0;
  }

  .start-option strong {
    font-size: .95rem;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100% - 20px);
  }

  .photo-mosaic > .photo-frame:last-child {
    grid-column: auto;
    width: 100%;
  }

  .visual-cta {
    min-height: clamp(440px, 118vw, 540px);
  }

  .visual-cta img {
    object-position: 56% 48%;
  }

  .visual-cta .photo-frame::after {
    background:
      linear-gradient(90deg, rgba(16, 23, 28, .72) 0%, rgba(16, 23, 28, .48) 68%, rgba(16, 23, 28, .15) 100%),
      linear-gradient(0deg, rgba(16, 23, 28, .40) 0%, rgba(16, 23, 28, .08) 75%, rgba(16, 23, 28, .03) 100%);
  }

  .visual-cta-copy {
    max-width: 100%;
    padding: 42px 0;
  }

  .visual-cta-copy .section-label {
    margin-bottom: 10px;
  }

  .visual-cta-contact {
    display: grid;
    gap: 5px;
    margin: 18px 0 22px;
  }

  .page-hero {
    padding: 54px 0 48px;
  }

  .page-hero--media {
    padding-bottom: 54px;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.4rem);
  }

  .page-hero-grid {
    gap: 32px;
  }

  .facts-band {
    grid-template-columns: 1fr;
  }

  .fact-column,
  .fact-column + .fact-column {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-page::before {
    left: 24px;
  }

  .process-page-step {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 15px;
    min-height: 0;
    padding-bottom: 38px;
  }

  .process-page-number {
    width: 44px;
    height: 44px;
    margin-left: 2px;
  }

  .process-page-content {
    padding-top: 3px;
  }

  .process-break {
    gap: 22px;
    margin: 10px 0 54px;
  }

  .faq-hero-photo {
    margin-top: 36px;
  }

  .faq-nav {
    display: none;
  }

  .faq-category + .faq-category {
    margin-top: 42px;
  }

  .faq-question {
    min-height: 68px;
    gap: 12px;
    font-size: .95rem;
  }

  .faq-answer {
    padding-right: 14px;
  }

  .contact-layout {
    gap: 48px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .field.full {
    grid-column: auto;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 160px;
  }

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

  .resource-row,
  .resource-row:nth-child(odd),
  .resource-row:nth-child(even) {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
  }

  .resource-row small {
    margin-bottom: 14px;
  }

  .article-hero {
    padding: 54px 0 46px;
  }

  .prose h2 {
    margin-top: 40px;
  }

  .prose p,
  .prose li {
    font-size: 1rem;
    line-height: 1.67;
  }

  .article-figure {
    margin-block: 38px;
  }

  .related-reading a {
    gap: 12px;
  }

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

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

  .footer-bottom {
    display: grid;
    gap: 5px;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .container,
  .reading-width {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-logo {
    width: 164px;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11.4vw, 3.1rem);
  }

  .hero-copy .button-row {
    display: grid;
    width: min(100%, 315px);
    grid-template-columns: 1fr;
  }

  .hero-copy .btn {
    width: 100%;
  }

  .hero-detail {
    max-width: 310px;
  }

  .contact-detail {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .visual-cta-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }
}

@media (max-width: 360px) {
  .site-logo {
    width: 150px;
  }

  .hero-copy h1 {
    font-size: 2.42rem;
  }

  .hero-copy .lead {
    font-size: .95rem;
  }

  .question-link strong {
    font-size: 1.03rem;
  }
}

@media (max-height: 540px) and (orientation: landscape) {
  .cinematic-hero {
    min-height: 520px;
  }

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

  .hero-copy h1 {
    max-width: 720px;
    font-size: 3rem;
  }

  .hero-copy .lead {
    margin: 12px 0 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero-slide:not(:first-child) {
    display: none;
  }

  .hero-indicators {
    display: none;
  }

  .hero-slide img {
    transform: none !important;
  }
}
