:root {
  --navy-950: #061524;
  --navy-900: #071a2b;
  --navy-850: #0a2134;
  --navy-800: #0d2a40;
  --teal-700: #0d5f6c;
  --teal-600: #137987;
  --teal-400: #55b7c2;
  --gold-600: #b9802f;
  --gold-500: #d2a24f;
  --gold-300: #e4c783;
  --ink: #142233;
  --muted: #526171;
  --paper: #f8f7f3;
  --sand: #eee9df;
  --line: #d8dde1;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(3, 17, 29, .24);
  --serif: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1420px, calc(100% - 64px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body.menu-open { overflow: hidden; }

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

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

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

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

button { cursor: pointer; }

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

.section { padding: 92px 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 4px;
  transition: top .2s ease;
}
.skip-link:focus { top: 20px; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal-400);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.45;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--teal-700); }

.gold-rule {
  display: block;
  width: 52px;
  height: 2px;
  margin: 20px 0 26px;
  background: var(--gold-500);
}
.gold-rule.centered { margin-inline: auto; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.primary-nav a:focus-visible,
.carousel-controls button:focus-visible,
.text-link:focus-visible,
.service-card a:focus-visible,
.resource-links a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 10px 30px rgba(210, 162, 79, .18);
}
.button-gold:hover { background: linear-gradient(135deg, #edd599, #d8a652); }

.button-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  background: rgba(4, 21, 36, .25);
  backdrop-filter: blur(8px);
}
.button-outline-light:hover { border-color: var(--gold-300); }

.button-outline-gold {
  color: var(--gold-300);
  border-color: var(--gold-500);
  background: transparent;
}
.button-outline-gold:hover {
  color: var(--navy-950);
  background: var(--gold-300);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(6, 21, 36, .94);
  box-shadow: 0 8px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}
.brand img { width: 196px; height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 44px);
}
.primary-nav a {
  position: relative;
  padding: 30px 0 27px;
  font-size: .9rem;
  font-weight: 600;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .2s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }

.header-cta { min-height: 44px; padding: 10px 18px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

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

.hero-video {
  object-fit: cover;
  object-position: center;
  opacity: .66;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4,16,28,.96) 0%, rgba(4,17,29,.84) 42%, rgba(4,17,29,.60) 72%, rgba(4,17,29,.78) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38));
}

.hero-pattern {
  opacity: .16;
  background-image:
    radial-gradient(circle at 82% 22%, rgba(89,190,201,.7) 0 1px, transparent 1.4px),
    radial-gradient(circle at 86% 28%, rgba(89,190,201,.5) 0 1px, transparent 1.4px);
  background-size: 18px 18px, 28px 28px;
  mask-image: linear-gradient(90deg, transparent 45%, #000 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .94fr);
  gap: clamp(50px, 6vw, 96px);
  align-items: center;
  padding-top: 128px;
  padding-bottom: 76px;
}

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

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .99;
  text-wrap: balance;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-note {
  max-width: 600px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: start;
  margin-top: 38px;
  color: rgba(255,255,255,.78);
  font-size: .91rem;
}
.trust-note p { margin: 0; }
.trust-note svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.question-carousel {
  min-height: 510px;
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(94,183,195,.45);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(6,30,48,.97), rgba(4,25,42,.91)),
    rgba(6,30,48,.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.carousel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.carousel-topline p {
  max-width: 330px;
  margin: 0;
  color: var(--teal-400);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}
.carousel-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  background: transparent;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.carousel-controls button:hover {
  color: var(--gold-300);
  border-color: var(--gold-300);
  transform: translateY(-1px);
}
.carousel-controls svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-progress {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 6px;
  align-items: center;
  margin: 34px 0 28px;
}
.carousel-number {
  color: var(--gold-500);
  font-size: 1.35rem;
  font-weight: 600;
}
.carousel-total {
  color: rgba(255,255,255,.62);
  font-size: .8rem;
}
.progress-track {
  height: 2px;
  margin-left: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.35);
}
.progress-track span {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--gold-300);
  transition: width .28s ease;
}

.carousel-content {
  min-height: 285px;
  transition: opacity .18s ease, transform .18s ease;
}
.carousel-content.is-changing {
  opacity: 0;
  transform: translateY(5px);
}
.carousel-category {
  margin: 0 0 12px;
  color: var(--gold-300);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.carousel-content h2 {
  max-width: 590px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.55vw, 3rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.14;
  text-wrap: balance;
}
.carousel-content > p:not(.carousel-category) {
  max-width: 580px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.62;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--gold-300);
  font-weight: 700;
}
.text-link:hover { color: #f0d593; }

.slide-markers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.slide-markers span {
  height: 2px;
  background: rgba(255,255,255,.28);
  transition: background-color .2s ease;
}
.slide-markers span.active { background: var(--gold-300); }

.outcomes {
  background:
    linear-gradient(90deg, rgba(238,233,223,.88), rgba(255,255,255,.97) 50%, rgba(238,233,223,.55));
  border-bottom: 1px solid var(--line);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  align-items: stretch;
}
.section-intro {
  padding: 8px 56px 8px 0;
}
.section-intro h2,
.centered-heading h2,
.about-copy h2,
.resources-inner h2,
.cta-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.section-intro h2 { font-size: clamp(2.5rem, 3.25vw, 4rem); }

.outcome {
  padding: 0 42px;
  border-left: 1px solid var(--line);
}
.icon-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--teal-700);
  border-radius: 50%;
}
.icon-circle svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--teal-700);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.outcome h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.15;
}
.outcome p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.services { background: var(--white); }

.centered-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}
.centered-heading h2 { font-size: clamp(2.4rem, 3.3vw, 4rem); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.service-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 34px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.service-card:first-child { border-left: 0; }
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--teal-700);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  min-height: 56px;
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.08;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.service-card a {
  display: inline-flex;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-700);
  font-size: .87rem;
  font-weight: 700;
}
.service-card a:hover { color: var(--gold-600); }

.proof-band {
  padding: 52px 0;
  color: var(--white);
  background: var(--navy-900);
}
.proof-inner {
  max-width: 1060px;
  text-align: center;
}
.proof-inner blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
}
.proof-inner p {
  margin: 16px 0 0;
  color: var(--gold-300);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
  padding: 0;
  background: linear-gradient(90deg, var(--sand), var(--paper) 56%);
}
.about-visual {
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-900);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy {
  align-self: center;
  max-width: 920px;
  padding: 84px clamp(50px, 7vw, 120px);
}
.about-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 3.3vw, 4.1rem);
}
.about-copy > p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
}
.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 38px;
}
.about-points > div {
  padding: 0 30px;
  border-left: 1px solid var(--line);
}
.about-points > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.about-points svg {
  width: 35px;
  height: 35px;
  margin-bottom: 12px;
  fill: none;
  stroke: var(--teal-700);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-points h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.15;
}
.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.resources {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.resources-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: end;
}
.resources-inner h2 { font-size: clamp(2.5rem, 3.4vw, 4.2rem); }
.resource-links {
  border-top: 1px solid var(--line);
}
.resource-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
  transition: color .2s ease, padding-left .2s ease;
}
.resource-links a:hover {
  color: var(--teal-700);
  padding-left: 8px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 50%, rgba(62,170,181,.22), transparent 26%),
    linear-gradient(90deg, var(--teal-700), var(--navy-900));
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255,255,255,.03), 0 0 0 80px rgba(255,255,255,.02);
}
.cta-inner {
  position: relative;
  z-index: 1;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-inner h2 { font-size: clamp(2rem, 2.8vw, 3.25rem); }
.cta-inner p { margin: 8px 0 0; color: rgba(255,255,255,.82); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.site-footer {
  padding: 62px 0 22px;
  color: rgba(255,255,255,.78);
  background: var(--navy-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr 1fr;
  gap: 70px;
}
.footer-brand img { width: 190px; }
.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}
.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a {
  width: max-content;
  font-size: .88rem;
}
.footer-links a:hover { color: var(--gold-300); }
.footer-location {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}
.footer-location p { margin: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
  font-size: .8rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--gold-300); }

@media (max-width: 1180px) {
  :root { --container: min(100% - 44px, 1100px); }

  .header-inner { grid-template-columns: 200px 1fr auto; gap: 18px; }
  .brand img { width: 180px; }
  .primary-nav { gap: 22px; }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero h1 { font-size: clamp(3.2rem, 5vw, 4.7rem); }
  .question-carousel { padding: 36px; }

  .outcomes-grid { grid-template-columns: repeat(3, 1fr); }
  .section-intro {
    grid-column: 1 / -1;
    padding: 0 0 48px;
  }
  .section-intro h2 { max-width: 560px; }
  .outcome:first-of-type { border-left: 0; padding-left: 0; }

  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 44px 0; }
  .service-card:nth-child(4) { border-left: 0; }

  .about-section { grid-template-columns: .8fr 1.2fr; }
  .about-points { grid-template-columns: 1fr; gap: 22px; }
  .about-points > div {
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 920px) {
  :root { --container: min(100% - 36px, 820px); }

  .site-header { background: rgba(6, 21, 36, .94); backdrop-filter: blur(14px); }
  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }
  .brand img { width: 170px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }

  .primary-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(6, 21, 36, .98);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateY(-130%);
    visibility: hidden;
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .primary-nav.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .primary-nav a::after { display: none; }

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

  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 132px;
    padding-bottom: 72px;
  }
  .hero-copy { max-width: 720px; }
  .hero h1 { max-width: 760px; }
  .question-carousel { min-height: 480px; }

  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome {
    display: grid;
    grid-template-columns: 66px 1fr;
    column-gap: 20px;
    padding: 32px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .outcome:first-of-type { border-top: 0; }
  .outcome .icon-circle { grid-row: 1 / 3; }
  .outcome h3 { margin-top: 4px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3),
  .service-card:nth-child(5) { border-left: 0; }

  .about-section { grid-template-columns: 1fr; }
  .about-visual { min-height: 420px; }
  .about-copy { padding: 72px 36px; }
  .about-points { grid-template-columns: repeat(3, 1fr); }
  .about-points > div {
    padding: 0 22px;
    border-left: 1px solid var(--line);
  }
  .about-points > div:first-child { padding-left: 0; border-left: 0; }

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 42px 0;
  }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-location { justify-content: flex-start; text-align: left; }
}

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

  .section { padding: 70px 0; }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
    line-height: 1.02;
  }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }

  .question-carousel {
    min-height: 530px;
    padding: 28px 24px;
  }
  .carousel-topline { align-items: center; }
  .carousel-topline p { max-width: 210px; font-size: .66rem; }
  .carousel-controls button { width: 38px; height: 38px; }
  .carousel-content h2 { font-size: 2.05rem; }
  .carousel-progress { margin-top: 28px; }
  .progress-track { margin-left: 8px; }
  .slide-markers { margin-top: 18px; }

  .outcome {
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
  }
  .icon-circle { width: 50px; height: 50px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: auto;
    padding: 36px 10px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-card:first-child { border-top: 0; }
  .service-card h3 { min-height: auto; }
  .service-card a { margin-top: 18px; }

  .about-visual { min-height: 300px; }
  .about-copy { padding: 60px 22px; }
  .about-points { grid-template-columns: 1fr; }
  .about-points > div,
  .about-points > div:first-child {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .resource-links a { font-size: 1.15rem; }

  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .button { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-video { display: none; }
}


.homepage-about-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--teal-700);
  font-weight: 700;
}

.homepage-about-link:hover {
  color: var(--gold-600);
}

/* Production hardening and image behavior */
.hero-video { background: var(--navy-950); }
img { height: auto; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
