:root {
  --navy: #1c3664;
  --navy-900: #10223f;
  --blue: #6599bd;
  --blue-100: #e7f2f7;
  --teal: #1d9a9a;
  --green: #5b8d3c;
  --amber: #d28a25;
  --ink: #172033;
  --muted: #617086;
  --line: #dbe5ec;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --shadow: 0 24px 70px rgba(28, 54, 100, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(231, 242, 247, 0.82), rgba(255, 255, 255, 0) 520px),
    var(--surface);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(101, 153, 189, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 153, 189, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 48px);
  width: 100%;
  margin: 0;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(219, 229, 236, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(28, 54, 100, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(132px, 12vw, 168px);
  height: auto;
}

.brand span {
  padding-left: 16px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 0;
  background: transparent;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--blue-100);
  outline: none;
}

.nav-links a[href="#contact"] {
  margin-left: 6px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(28, 54, 100, 0.16);
}

.nav-links a[href="#contact"]:hover,
.nav-links a[href="#contact"]:focus-visible {
  background: var(--navy-900);
}

main {
  overflow: hidden;
}

.section,
.contact-section,
.trust-strip {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.intro-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(231, 242, 247, 0.92) 58%, rgba(28, 54, 100, 0.2)),
    url("racks.png") center / cover no-repeat,
    #ffffff;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
  padding: clamp(34px, 6vw, 68px) clamp(24px, 4vw, 54px) clamp(48px, 7vw, 76px);
}

.intro-copy {
  max-width: 720px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--navy-900);
  font-size: clamp(2.05rem, 3.55vw, 3.15rem);
  font-weight: 720;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-900);
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  font-weight: 720;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.2;
}

.intro-text,
.section-heading p:not(.eyebrow),
.program-summary,
.reporting-copy p:not(.eyebrow),
.about-copy p:not(.eyebrow),
.about-copy ul,
.contact-section p:not(.eyebrow),
.value-columns p,
.process-list p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

.intro-text {
  max-width: 680px;
  margin-bottom: 30px;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(28, 54, 100, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
}

.recovery-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(101, 153, 189, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.recovery-visual::before {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 86px;
  height: 86px;
  border-top: 5px solid rgba(101, 153, 189, 0.44);
  border-right: 5px solid rgba(101, 153, 189, 0.44);
  border-radius: 0 36px 0 0;
  content: "";
  z-index: 0;
}

.recovery-visual > * {
  position: relative;
  z-index: 1;
}

.visual-topline {
  display: grid;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.visual-topline span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-topline strong {
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.supply-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0;
}

.supply-path span {
  display: grid;
  min-height: 70px;
  place-items: center;
  border: 1px solid rgba(101, 153, 189, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.supply-path span:nth-child(2) {
  border-color: rgba(29, 154, 154, 0.32);
}

.supply-path span:nth-child(3) {
  border-color: rgba(210, 138, 37, 0.35);
}

.supply-path span:nth-child(4) {
  border-color: rgba(91, 141, 60, 0.36);
}

.visual-stats {
  display: grid;
  gap: 14px;
  margin: 0;
}

.visual-stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(219, 229, 236, 0.72);
}

.visual-stats dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.visual-stats dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.24rem;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 50px rgba(28, 54, 100, 0.07);
}

.trust-strip p {
  display: grid;
  min-height: 86px;
  place-items: center;
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  font-weight: 850;
  text-align: center;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.impact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(62px, 8vw, 98px) clamp(24px, 4vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 34, 63, 0.96), rgba(28, 54, 100, 0.94)),
    var(--navy-900);
}

.impact-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.085) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(45deg, rgba(158, 217, 223, 0.07) 0 1px, transparent 1px 18px);
  opacity: 0.72;
}

.impact-section > .section-heading,
.impact-section > .impact-pane {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
}

.impact-section .section-heading {
  max-width: 980px;
}

.impact-section .section-heading h2,
.impact-section .section-heading p {
  max-width: 980px;
}

.impact-section .section-heading h2,
.impact-section .section-heading p:not(.eyebrow) {
  margin-inline: auto;
  text-align: center;
}

.impact-section .section-heading h2 {
  color: #ffffff;
}

.impact-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.impact-section .section-heading .eyebrow {
  color: #9ed9df;
}

.impact-section .metric-card {
  border: 0;
  border-left: 1px solid rgba(219, 229, 236, 0.9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.impact-section .metric-card:first-child {
  border-left: 0;
}

.impact-pane {
  overflow: hidden;
  max-width: 980px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(16, 34, 63, 0.24);
  backdrop-filter: blur(12px);
}

.impact-pane-intro {
  margin: 0;
  padding: 20px 20px 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.impact-pane .metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.impact-section .metric-card {
  min-height: 148px;
  padding: 20px;
  justify-content: flex-start;
}

.impact-section .metric-card span {
  margin-bottom: 20px;
  min-height: 2.5em;
}

.impact-section .metric-card strong {
  font-size: clamp(1.65rem, 2.25vw, 2.2rem);
}

.impact-controls {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
  color: var(--ink);
}

.impact-controls label {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.impact-slider-group {
  min-width: 0;
}

.impact-slider-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(5.5rem, auto);
  gap: 16px;
  align-items: center;
}

.impact-slider-row input[type="range"] {
  width: 100%;
  accent-color: #9ed9df;
}

.impact-slider-row output {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.impact-slider-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(28, 54, 100, 0.08);
}

.metric-card span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 14rem;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.metric-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy);
  font-size: clamp(1.85rem, 2.85vw, 2.7rem);
  line-height: 0.98;
}

.metric-card:first-child strong {
  color: var(--green);
}

.metric-card:nth-child(4) strong {
  color: var(--teal);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

#program {
  align-items: stretch;
  row-gap: 16px;
}

.program-intro {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 16px;
  align-self: stretch;
  align-content: start;
  min-width: 0;
}

#program .section-heading {
  grid-column: 1;
  grid-row: 1;
}

#program .process-list {
  grid-column: 1;
  grid-row: 3;
}

.program-summary {
  grid-column: 1;
  grid-row: 2;
  max-width: 760px;
  margin: 0;
}

.program-image-grid {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
}

.program-image-grid img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(28, 54, 100, 0.08);
}

.process-list {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.process-list span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(28, 54, 100, 0.08) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(101, 153, 189, 0.1) 0 1px, transparent 1px 8px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(231, 242, 247, 0.8)),
    var(--blue-100);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.process-list p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.34;
}

.dark-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  width: min(1180px, calc(100% - 40px));
  max-width: min(1180px, calc(100% - 40px));
  padding: clamp(54px, 7vw, 84px) clamp(24px, 4vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 248, 251, 0.9)),
    var(--soft);
}

.dark-band::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle at center, rgba(101, 153, 189, 0.16) 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.52), transparent 36%, rgba(255, 255, 255, 0.34));
  background-size: 22px 22px, 100% 100%;
  opacity: 0.78;
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

.dark-band .eyebrow {
  color: var(--teal);
}

.dark-band h2,
.dark-band p {
  color: var(--navy-900);
}

.dark-band p {
  color: var(--muted);
}

.dark-band .reporting-copy p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.insight-grid div {
  min-height: 84px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(28, 54, 100, 0.07);
}

.value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.value-intro {
  min-width: 0;
}

.value-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.value-visual {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(101, 153, 189, 0.26);
  border-radius: 8px;
  background: var(--navy-900);
  box-shadow: 0 22px 54px rgba(28, 54, 100, 0.13);
}

.value-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.value-columns {
  display: grid;
  align-self: end;
  gap: 18px;
}

.value-columns article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.value-columns article:last-child {
  border-bottom: 0;
}

.value-columns p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 4vw, 48px) clamp(28px, 5vw, 72px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(46px, 6vw, 74px) clamp(24px, 4vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(226, 234, 241, 0.82)),
    #e1e8ef;
}

.about-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(0deg, rgba(28, 54, 100, 0.055) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(101, 153, 189, 0.07) 0 1px, transparent 1px 24px);
  opacity: 0.72;
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.about-copy {
  max-width: 820px;
}

.about-copy p {
  max-width: 760px;
  margin-bottom: 0;
}

.about-copy ul {
  max-width: 760px;
  margin: 16px 0;
  padding-left: 1.25rem;
}

.about-copy li {
  margin-bottom: 6px;
}

.about-copy li:last-child {
  margin-bottom: 0;
}

.about-visual {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(101, 153, 189, 0.28);
  border-radius: 8px;
  background: var(--navy-900);
  box-shadow: 0 22px 54px rgba(28, 54, 100, 0.13);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-carousel {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  min-width: 0;
  padding-inline: 30px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(28, 54, 100, 0.08);
  transform: translateY(-50%);
  transition:
    translate 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.carousel-button-previous {
  left: 0;
}

.carousel-button-next {
  right: 0;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: rgba(29, 154, 154, 0.45);
  background: var(--blue-100);
  outline: none;
  translate: 0 -1px;
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.45;
  translate: 0;
}

.about-study-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.about-study-slider::-webkit-scrollbar {
  display: none;
}

.study-card {
  display: flex;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  min-height: 308px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(28, 54, 100, 0.08);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.study-card:hover,
.study-card:focus-visible {
  border-color: rgba(29, 154, 154, 0.45);
  box-shadow: 0 22px 54px rgba(28, 54, 100, 0.13);
  outline: none;
  transform: translateY(-2px);
}

.study-card span {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.study-card strong {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.18;
}

.study-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.study-card em {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 900;
}

.contact-section {
  margin-bottom: 28px;
}

.contact-section h2 {
  max-width: 760px;
}

.contact-section p {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.contact-form {
  display: grid;
  min-width: 0;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(28, 54, 100, 0.08);
}

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

.contact-form label {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.contact-form label span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form label em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 154, 154, 0.14);
  outline: none;
}

.form-field-full,
.contact-form-actions {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.contact-status {
  min-height: 1.4em;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-status[data-state="success"] {
  color: var(--green);
}

.contact-status[data-state="error"] {
  color: #9b3d22;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-card {
  display: grid;
  align-self: stretch;
  min-width: 0;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-style: normal;
  box-shadow: 0 18px 42px rgba(28, 54, 100, 0.08);
}

.contact-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--teal);
  outline: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer a {
  color: var(--navy);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal);
  outline: none;
}

.privacy-main {
  overflow: visible;
}

.privacy-section {
  max-width: 880px;
  padding-top: clamp(56px, 7vw, 84px);
}

.privacy-section .eyebrow {
  color: var(--teal);
}

.privacy-section h1 {
  max-width: 780px;
  margin-bottom: 10px;
}

.privacy-section h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.9vw, 1.55rem);
}

.privacy-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-section a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-section .privacy-updated {
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    justify-content: space-between;
  }

  .intro-section,
  .split-section,
  .dark-band,
  .value-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-section {
    min-height: 0;
    padding-top: 42px;
  }

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

  #program {
    grid-template-rows: auto;
    row-gap: clamp(28px, 6vw, 84px);
  }

  .program-intro {
    display: grid;
    grid-template-rows: none;
    gap: 16px;
  }

  .process-list {
    grid-template-rows: none;
  }

  #program .section-heading,
  .program-summary,
  #program .process-list,
  .program-image-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .program-image-grid {
    align-self: start;
    justify-self: start;
    width: min(100%, 520px);
    height: auto;
    aspect-ratio: 1;
  }

  .program-image-grid img {
    aspect-ratio: 1;
  }

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

  .section-heading.compact {
    margin-bottom: 16px;
  }

  .contact-section {
    align-items: stretch;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  main * {
    min-width: 0;
  }

  .section,
  .intro-section,
  .impact-section,
  .contact-section,
  .trust-strip,
  .site-footer {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .site-header {
    width: 100%;
    max-width: none;
    padding: 12px 14px;
  }

  .brand img {
    width: 148px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    overflow: visible;
  }

  .nav-links a {
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    padding-inline: 4px;
    font-size: 0.76rem;
    text-align: center;
  }

  .nav-links a[href="#contact"] {
    margin-left: 0;
    box-shadow: none;
  }

  .intro-copy,
  .intro-text,
  .section-heading,
  .reporting-copy,
  .about-copy,
  .contact-section p {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7vw, 2.05rem);
    line-height: 1.14;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(1.3rem, 5.6vw, 1.65rem);
    overflow-wrap: break-word;
  }

  .intro-text,
  .section-heading p:not(.eyebrow),
  .program-summary,
  .reporting-copy p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .about-copy ul,
  .contact-section p:not(.eyebrow),
  .value-columns p,
  .process-list p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .intro-actions,
  .button {
    width: 100%;
  }

  .impact-section > .section-heading,
  .impact-section > .impact-pane {
    width: 100%;
    max-width: 100%;
  }

  .impact-controls,
  .impact-slider-row {
    grid-template-columns: 1fr;
  }

  .impact-controls {
    gap: 12px;
    padding: 18px;
  }

  .impact-slider-row output {
    text-align: left;
  }

  .intro-section {
    padding-inline: 14px;
  }

  .recovery-visual {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .supply-path,
  .metric-grid,
  .insight-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .impact-pane .metric-grid {
    grid-template-columns: 1fr;
  }

  .impact-section .metric-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
    padding: 16px 18px;
  }

  .impact-section .metric-card span {
    min-height: 0;
    margin-bottom: 8px;
  }

  .impact-section .metric-card strong {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.05;
  }

  .supply-path span {
    min-height: 54px;
  }

  .visual-stats div {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .visual-stats dd {
    width: 100%;
    overflow-wrap: anywhere;
    font-size: 1.14rem;
  }

  .visual-stats dt {
    width: 100%;
    overflow-wrap: break-word;
  }

  .metric-card {
    min-height: 168px;
  }

  .dark-band {
    padding-inline: 14px;
  }

  .contact-section {
    padding: 0;
  }

  .about-carousel {
    padding-inline: 24px;
  }

  .carousel-button {
    width: 32px;
    height: 48px;
    font-size: 1.7rem;
  }

  .study-card {
    flex-basis: 100%;
  }

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

  .contact-form {
    padding: 20px;
  }

  .contact-form-actions,
  .contact-form .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
