:root {
  --ink: #07182b;
  --ink-deep: #04111f;
  --ink-mid: #0d2947;
  --blue: #1265b0;
  --blue-soft: #77b8ed;
  --gold: #d8a84a;
  --gold-light: #f2d18e;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --muted: #657383;
  --line: rgba(7, 24, 43, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 90px rgba(3, 17, 31, 0.18);
  --serif: Iowan Old Style, Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1240px;
  --header-height: 112px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink-deep);
  background: var(--white);
  border-radius: 3px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(251, 250, 246, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(3, 17, 31, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 36px;
}

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

.brand-logo {
  width: 144px;
  height: auto;
  object-fit: contain;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  color: rgba(7, 24, 43, 0.74);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(7, 24, 43, 0.3);
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 0;
  color: var(--white);
  background: var(--ink-deep);
  overflow: hidden;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  pointer-events: none;
}

.hero-copy-inner {
  width: min(calc(100% - 80px), 1600px);
  margin-inline: auto;
  padding-top: clamp(42px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.approach-section .eyebrow,
.contact-section .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  margin-bottom: 30px;
  font-size: clamp(3.35rem, 5.2vw, 6.3rem);
  letter-spacing: -0.045em;
}

.hero h1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.28em;
  max-width: none;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 3.7vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.hero-identity {
  display: inline;
  color: var(--gold-light);
  font-size: 1em;
}

.hero-statement {
  display: inline;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 4.5vw, 5.2rem);
  letter-spacing: -0.038em;
}

h3 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.79rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-light {
  color: var(--ink-deep);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-media {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 21, 0.82) 0%, rgba(2, 11, 21, 0.54) 28%, rgba(2, 11, 21, 0.08) 64%, rgba(2, 11, 21, 0.18) 100%),
    linear-gradient(90deg, rgba(2, 11, 21, 0.38), transparent 72%);
  content: "";
  pointer-events: none;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
}

.hero-media img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 58%;
}

.section {
  padding-block: clamp(100px, 11vw, 168px);
}

.purpose-section {
  background: var(--paper);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 160px);
}

.split-copy h2 {
  max-width: 10ch;
}

.prose {
  color: #314052;
  font-size: 1.03rem;
}

.prose-large {
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

.prose p {
  margin: 0 0 24px;
}

.prose strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18em;
  font-weight: 600;
}

.prose .statement {
  margin: 32px 0 0;
  padding-left: 24px;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.15em;
  line-height: 1.35;
}

.prose .statement + .statement {
  margin-top: 12px;
}

.solutions-section {
  background: #ece8de;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  column-gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 11ch;
  margin: 0;
}

.section-heading > p:last-child {
  max-width: 50ch;
  margin: 0 0 10px;
  color: #4f5b67;
  font-size: 1.08rem;
}

.feature-image-frame {
  position: relative;
  margin-bottom: 0;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feature-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-image-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 420px;
  padding: 22px 30px;
  color: var(--white);
  background: rgba(4, 17, 31, 0.92);
  font-family: var(--serif);
  font-size: 1.06rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-card {
  min-height: 330px;
  padding: clamp(34px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.54);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-card h3 {
  max-width: 20ch;
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.solution-card p:last-child {
  max-width: 56ch;
  margin: 0;
  color: #4e5b68;
}

.card-number,
.approach-number {
  display: block;
  margin: 0 0 54px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.approach-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(18, 101, 176, 0.2), transparent 36%),
    var(--ink-deep);
  overflow: hidden;
}

.approach-section::before {
  position: absolute;
  top: -20%;
  right: -12%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(216, 168, 74, 0.12);
  border-radius: 50%;
  content: "";
}

.section-heading-light {
  position: relative;
  z-index: 1;
  display: block;
}

.section-heading-light h2 {
  max-width: 12ch;
}

.approach-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.approach-list li {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: baseline;
  padding-block: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.approach-list .approach-number {
  margin: 0;
  color: var(--gold);
}

.approach-list h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
}

.approach-list p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.stewardship-section {
  padding-top: 0;
  background: var(--paper);
}

.editorial-split {
  display: block;
}

.editorial-image {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.editorial-image picture,
.editorial-image img {
  display: block;
  width: 100%;
}

.editorial-image img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
}

.editorial-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  column-gap: clamp(60px, 10vw, 150px);
  margin-top: clamp(72px, 8vw, 120px);
}

.editorial-copy > .eyebrow {
  grid-column: 1 / -1;
}

.editorial-copy > h2 {
  grid-column: 1;
  grid-row: 2 / span 2;
}

.editorial-copy > .prose {
  grid-column: 2;
  grid-row: 2;
}

.editorial-copy > .three-lines {
  grid-column: 2;
  grid-row: 3;
}

.editorial-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 4.2vw, 4.7rem);
}

.three-lines {
  display: flex;
  flex-direction: column;
  margin-top: 46px;
  padding-top: 28px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
}

.three-lines span:last-child {
  color: #8a641e;
}

.responsibility-block {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
  margin-top: clamp(100px, 12vw, 180px);
  padding: clamp(70px, 9vw, 120px);
  color: var(--white);
  background: var(--ink);
}

.responsibility-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 3.3vw, 3.7rem);
}

.responsibility-heading > p:last-child {
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.67);
}

.responsibility-block .eyebrow {
  color: var(--gold-light);
}

.commitment-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.commitment-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding-block: 25px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.commitment-list span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-section {
  padding-block: clamp(110px, 13vw, 190px);
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 101, 176, 0.28), transparent 48%),
    var(--ink);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-inner h2 {
  max-width: 16ch;
}

.contact-questions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 54px;
  margin: 0 0 34px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.contact-questions p {
  margin: 0;
}

.contact-copy {
  max-width: 62ch;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding-block: 74px 30px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 60px;
}

.footer-grid p {
  max-width: 32ch;
  margin: 18px 0 0;
  font-size: 0.88rem;
}

.footer-brand {
  width: fit-content;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.footer-brand-logo {
  width: 204px;
  height: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 4px;
}

.footer-contact p {
  margin-top: 0;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  :root {
    --header-height: 96px;
  }

  .brand-logo {
    width: 120px;
  }

  .primary-nav ul {
    gap: 20px;
  }

  .hero-copy-inner {
    width: calc(100% - 40px);
    padding-top: 34px;
  }

  .hero-media img,
  .editorial-image img {
    aspect-ratio: 3 / 2;
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .editorial-image img {
    object-position: 62% 50%;
  }

  .editorial-copy {
    width: min(calc(100% - 40px), 760px);
    grid-template-columns: 1fr;
  }

  .editorial-copy > .eyebrow,
  .editorial-copy > h2,
  .editorial-copy > .prose,
  .editorial-copy > .three-lines {
    grid-column: 1;
    grid-row: auto;
  }

  .responsibility-block {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .hero h1 {
    display: block;
    max-width: min(92%, 19ch);
    margin-inline: auto;
    font-size: clamp(1.55rem, 5.4vw, 2.35rem);
    white-space: normal;
    text-wrap: balance;
  }

  .hero-identity {
    display: block;
    margin-bottom: 0.22em;
  }

  .hero-statement {
    display: block;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(2, 11, 21, 0.92) 0%, rgba(2, 11, 21, 0.82) 22%, rgba(2, 11, 21, 0.56) 45%, rgba(2, 11, 21, 0.12) 70%, transparent 82%);
  }

  .js .nav-toggle {
    display: block;
  }

  .js .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    height: calc(100svh - var(--header-height));
    padding: 36px 20px;
    background: rgba(4, 17, 31, 0.99);
    overflow-y: auto;
  }

  .js .site-header[data-nav-open="true"] .primary-nav {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .primary-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .primary-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.84);
    padding-block: 21px;
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    color: var(--white);
  }

  .site-header[data-nav-open="true"] .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header[data-nav-open="true"] .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-nav-open="true"] .nav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .split-copy,
  .section-heading,
  .responsibility-block,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 30px;
  }

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

  .approach-list li {
    grid-template-columns: 48px 1fr;
  }

  .approach-list p {
    grid-column: 2;
  }

  .footer-grid {
    gap: 42px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 80px;
  }

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

  .brand-logo {
    width: 96px;
  }

  .footer-brand-logo {
    width: 184px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero-copy-inner {
    width: calc(100% - 32px);
    padding-top: 18px;
  }

  .hero h1 {
    max-width: 17ch;
    font-size: clamp(1.65rem, 6.8vw, 2.1rem);
  }

  .editorial-copy {
    width: calc(100% - 32px);
  }

  .section {
    padding-block: 88px;
  }

  .stewardship-section {
    padding-top: 0;
  }

  .feature-image-frame {
    width: 100%;
  }

  .feature-image-frame figcaption {
    position: static;
    max-width: none;
  }

  .solution-grid {
    width: 100%;
  }

  .solution-card {
    min-height: 0;
    padding: 44px 24px;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .approach-list li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 28px;
  }

  .approach-list p {
    grid-column: 1;
  }

  .responsibility-block {
    width: 100%;
    padding: 70px 24px;
  }

  .commitment-list li {
    grid-template-columns: 38px 1fr;
  }

  .contact-questions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 48px;
  }
}

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

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

@media (prefers-contrast: more) {
  .hero h1 {
    width: fit-content;
    padding: 0.22em 0.3em;
    background: rgba(4, 17, 31, 0.94);
    text-shadow: none;
  }

  .approach-list p,
  .responsibility-heading > p:last-child,
  .contact-copy,
  .site-footer {
    color: var(--white);
  }
}
