:root {
  --ink: #271a11;
  --ink-soft: #5e5044;
  --cream: #fbf5e9;
  --cream-deep: #f3e7d3;
  --paper: #fffaf0;
  --gold: #9a6226;
  --gold-light: #d3ad72;
  --saffron: #d98a17;
  --rust: #a73b1d;
  --rust-dark: #7f2b18;
  --brown: #21160f;
  --line: rgba(116, 76, 35, 0.22);
  --shadow: 0 24px 70px rgba(66, 41, 21, 0.12);
  --radius: 18px;
  --container: min(1180px, calc(100% - 40px));
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

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

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

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

:focus-visible {
  outline: 3px solid #e29525;
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 15px;
  color: #fff;
  background: var(--brown);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e7bb76;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.questions-intro h2,
.assessment h2,
.human-process h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.section-heading > p:last-child,
.questions-intro > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-dark {
  color: #fff7e9;
  background: var(--brown);
  box-shadow: 0 12px 26px rgba(35, 21, 12, 0.18);
}

.button-dark:hover {
  background: #3a2517;
}

.button-rust {
  color: #fff9ed;
  background: var(--rust);
  box-shadow: 0 14px 30px rgba(155, 52, 25, 0.2);
}

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

.button-cream {
  color: var(--brown);
  background: #fff2d8;
}

.button-cream:hover {
  background: #fffaf0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rust);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: #e9ad54;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(95, 61, 28, 0.12);
  background: rgba(251, 245, 233, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name small {
  align-self: flex-end;
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name small a {
  color: inherit;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a {
  position: relative;
  color: #4e3c2d;
  font-size: 0.82rem;
  font-weight: 600;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--rust);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 43px;
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brown);
  background: rgba(255, 250, 240, 0.72);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle > span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 17% 23%, rgba(222, 168, 75, 0.12), transparent 28%),
    linear-gradient(105deg, #fbf4e5 0%, #f6e9d3 58%, #e6c58f 100%);
}

.hero::before {
  position: absolute;
  bottom: 26px;
  left: -40px;
  width: 220px;
  height: 220px;
  content: "";
  opacity: 0.17;
  background:
    radial-gradient(ellipse at center, transparent 48%, var(--gold) 50%, transparent 52%),
    radial-gradient(ellipse at center, transparent 58%, var(--gold) 60%, transparent 62%);
}

.hero-grid {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: stretch;
  width: calc(100vw + (100vw - var(--container)) / 2);
  margin-left: calc((100vw - var(--container)) / 2 * -1);
  padding-left: calc((100vw - var(--container)) / 2);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 600px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 95px 42px 95px 0;
}

.hero-copy h1 {
  max-width: 580px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-intro {
  max-width: 500px;
  margin: 28px 0 0;
  color: #59483b;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.hero-note {
  max-width: 460px;
  margin: 32px 0 0;
  padding-top: 20px;
  color: #746352;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, #f6e9d3 0%, rgba(246, 233, 211, 0.38) 10%, transparent 28%),
    url("assets/images/01-hero-viet-kieu-family-v2.webp");
  background-position: center, 76% center;
  background-size: cover, cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 36px 0 50px rgba(246, 233, 211, 0.38);
}

.hero-sun {
  position: absolute;
  top: 72px;
  left: 31%;
  width: 250px;
  height: 250px;
  opacity: 0.15;
  border: 1px solid #a76b22;
  border-radius: 50%;
}

.hero-line {
  position: absolute;
  bottom: -110px;
  left: -180px;
  width: 510px;
  height: 510px;
  opacity: 0.22;
  border: 1px solid var(--saffron);
  border-radius: 50%;
}

.hero-line-two {
  bottom: -80px;
  left: -145px;
  width: 440px;
  height: 440px;
}

.eligibility-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 245, 233, 0.94);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  display: grid;
  min-height: 148px;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 15px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #6d431e;
  border: 1px solid rgba(154, 98, 38, 0.34);
  border-radius: 50%;
  background: rgba(211, 173, 114, 0.22);
}

.benefit-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(28%) sepia(25%) saturate(1120%) hue-rotate(348deg) brightness(88%) contrast(86%);
}

.benefit h2 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.08;
}

.benefit p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.journeys {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.7);
  box-shadow: 0 20px 60px rgba(82, 49, 19, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-card-body {
  padding: 25px 26px 29px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.52rem;
  font-weight: 500;
  line-height: 1.2;
}

.story-card-body > p:last-child {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

.pathways {
  padding-top: 20px;
  background: var(--cream);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pathway-card {
  display: grid;
  min-height: 240px;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
}

.pathway-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.pathway-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pathway-card:nth-child(1) .pathway-media img {
  object-position: 38% center;
}

.pathway-card:nth-child(2) .pathway-media img {
  object-position: 53% center;
}

.pathway-card:nth-child(3) .pathway-media img {
  object-position: 72% center;
}

.pathway-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px;
}

.pathway-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
}

.pathway-card p {
  margin: 13px 0 18px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.6;
}

.pathway-card a {
  margin-top: auto;
  color: var(--rust);
  font-size: 0.73rem;
  font-weight: 700;
}

.human-process {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(430px, 0.85fr) minmax(0, 1.15fr);
  background: var(--brown);
}

.human-process-copy {
  display: flex;
  align-items: center;
  color: #fbf0de;
  background:
    radial-gradient(circle at 0 0, rgba(194, 129, 47, 0.16), transparent 32%),
    linear-gradient(135deg, #281a11, #160f0b);
}

.human-process-copy-inner {
  width: min(520px, calc(100% - 80px));
  margin-left: max(40px, calc((100vw - 1180px) / 2));
  padding: 70px 0;
}

.human-process h2 {
  max-width: 480px;
}

.human-process p:not(.eyebrow) {
  max-width: 500px;
  margin: 22px 0 0;
  color: #cdbfab;
}

.human-process .text-link {
  margin-top: 30px;
}

.human-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process {
  background: #fff9ee;
}

.process-heading {
  position: relative;
  margin-bottom: 54px;
}

.process-heading::after {
  position: absolute;
  top: -82px;
  right: -150px;
  width: 360px;
  height: 260px;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background: url("assets/icons/brand-lotus.webp") center / contain no-repeat;
}

.process-heading > * {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  min-width: 0;
}

.step-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-topline span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--brown);
  background: #e3bd7c;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.step-topline i {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.step-topline i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

.process-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.process-step > p {
  min-height: 76px;
  margin: 9px 0 20px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.process-step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.meaning-banner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background-image: url("assets/images/10-testimonial-viet-kieu-woman.webp");
  background-position: center;
  background-size: cover;
}

.meaning-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(189, 113, 10, 0.94) 0%, rgba(199, 128, 19, 0.86) 45%, rgba(73, 42, 18, 0.08) 69%, transparent 100%);
}

.meaning-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 420px;
  align-items: center;
}

.meaning-content blockquote {
  position: relative;
  width: min(650px, 56%);
  margin: 0;
  padding-left: 72px;
}

.quote-mark {
  position: absolute;
  top: -32px;
  left: 0;
  color: rgba(83, 44, 10, 0.42);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.meaning-content blockquote p {
  margin: 0;
  color: #2f1b0e;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.meaning-content blockquote footer {
  margin-top: 24px;
  color: #40240f;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.questions {
  background: var(--cream);
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.questions-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 5px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  content: "+";
  color: var(--rust);
  border: 1px solid rgba(167, 59, 29, 0.28);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 740px;
  margin: -2px 0 0;
  padding: 0 52px 24px 5px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.assessment {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff4df;
}

.assessment > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assessment-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(124, 41, 19, 0.98) 0%, rgba(157, 49, 20, 0.92) 37%, rgba(133, 44, 21, 0.53) 58%, rgba(26, 15, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(26, 15, 10, 0.25), transparent 60%);
}

.assessment-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.assessment h2 {
  max-width: 650px;
}

.assessment-content > p:not(.eyebrow) {
  max-width: 540px;
  margin: 22px 0 30px;
  color: #f3d9bf;
}

.site-footer {
  color: #d9cebf;
  background: #1a120d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
  padding: 70px 0 50px;
}

.brand-light {
  color: #fff6e7;
}

.footer-brand > p {
  margin: 15px 0 0;
  color: #9f9181;
  font-size: 0.82rem;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #bd8b50;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a:not(.brand) {
  margin: 4px 0;
  color: #d9cebf;
  font-size: 0.78rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid p {
  margin: 8px 0 0;
  color: #928477;
  font-size: 0.73rem;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #807368;
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 22px;
  }

  .primary-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 6.5vw, 5.4rem);
  }

  .benefit {
    grid-template-columns: 50px 1fr;
    padding-inline: 16px;
  }

  .benefit-icon {
    width: 46px;
    height: 46px;
  }

  .pathway-card {
    grid-template-columns: 42% 58%;
  }
}

@media (max-width: 960px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .section {
    padding: 84px 0;
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-header.menu-open .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 10px 16px 16px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 245, 233, 0.98);
    box-shadow: 0 18px 30px rgba(66, 41, 21, 0.1);
  }

  .site-header.menu-open .primary-nav::before {
    position: absolute;
    right: -28px;
    bottom: -38px;
    width: 220px;
    height: 165px;
    pointer-events: none;
    content: "";
    opacity: 0.12;
    background: url("assets/icons/brand-lotus.webp") center / contain no-repeat;
  }

  .site-header.menu-open .primary-nav a {
    position: relative;
    z-index: 1;
    padding: 11px 0;
    text-align: center;
  }

  .site-header.menu-open .primary-nav a::after {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
    margin-left: 0;
    padding-left: 0;
  }

  .hero-copy {
    width: var(--container);
    max-width: none;
    margin-inline: auto;
    padding: 90px 0 64px;
  }

  .hero-copy h1 {
    max-width: 750px;
  }

  .hero-visual {
    min-height: min(680px, 76vw);
    background-image: url("assets/images/01-hero-viet-kieu-family-v2.webp");
    background-position: 72% center;
  }

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

  .benefit {
    padding: 25px 20px;
    border-bottom: 1px solid var(--line);
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(3),
  .benefit:nth-child(4) {
    border-bottom: 0;
  }

  .story-grid,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    display: grid;
    grid-template-columns: 43% 57%;
  }

  .story-card img {
    height: 100%;
  }

  .pathway-card {
    min-height: 220px;
    grid-template-columns: 42% 58%;
  }

  .pathway-media {
    min-height: 220px;
  }

  .human-process {
    grid-template-columns: 1fr;
  }

  .human-process-copy-inner {
    width: var(--container);
    margin-inline: auto;
  }

  .human-process-image {
    min-height: 520px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .process-step > p {
    min-height: 52px;
  }

  .process-step:nth-child(2) .step-topline i {
    display: none;
  }

  .meaning-content blockquote {
    width: 64%;
  }

  .questions-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .questions-intro {
    position: static;
  }

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

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
    --radius: 14px;
  }

  .section {
    padding: 70px 0;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    padding: 75px 0 52px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 88vw;
    background-position: 70% center;
  }

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

  .benefit,
  .benefit:first-child,
  .benefit:last-child {
    min-height: 124px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .story-card {
    display: block;
  }

  .story-card img {
    height: auto;
  }

  .pathway-media {
    min-height: 220px;
    max-height: none;
  }

  .human-process-image {
    min-height: 340px;
  }

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

  .process-heading::after {
    top: -58px;
    right: -30px;
    width: 240px;
    height: 180px;
  }

  .process-step > p {
    min-height: auto;
  }

  .step-topline i {
    display: none;
  }

  .meaning-banner,
  .meaning-content {
    min-height: 590px;
  }

  .meaning-banner {
    background-position: 68% center;
  }

  .meaning-overlay {
    background: linear-gradient(180deg, rgba(190, 117, 14, 0.96) 0%, rgba(190, 117, 14, 0.9) 48%, rgba(47, 24, 10, 0.12) 100%);
  }

  .meaning-content {
    align-items: flex-start;
    padding-top: 70px;
  }

  .meaning-content blockquote {
    width: 100%;
    padding-left: 48px;
  }

  .quote-mark {
    font-size: 5.5rem;
  }

  .meaning-content blockquote p {
    font-size: clamp(2rem, 10.5vw, 3.2rem);
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .assessment,
  .assessment-content {
    min-height: 660px;
  }

  .assessment > img {
    object-position: 64% center;
  }

  .assessment-overlay {
    background: linear-gradient(180deg, rgba(125, 40, 18, 0.98) 0%, rgba(140, 43, 18, 0.88) 52%, rgba(34, 17, 10, 0.3) 100%);
  }

  .assessment-content {
    justify-content: flex-start;
    padding-top: 76px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }
}

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