:root {
  --white: #ffffff;
  --paper: #f8fafc;
  --mist: #f2f6f9;
  --pale-blue: #e8f2f8;
  --hairline: #d5e0e8;
  --hairline-dark: rgba(255, 255, 255, 0.2);
  --ink: #102a43;
  --ink-deep: #071f35;
  --muted: #566d80;
  --muted-light: rgba(255, 255, 255, 0.66);
  --navy: #0f4172;
  --navy-deep: #082f56;
  --blue: #1f8bc4;
  --coral: #da4e3b;
  --focus: #74c7f0;
  --shell: 1280px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--focus);
  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;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

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

.signal-bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.025em;
  text-align: center;
}
.signal-bar a { font-weight: 700; text-underline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  min-height: 44px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
}
.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 6px;
  text-decoration: none;
  text-underline-offset: 6px;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { text-decoration: underline; }
.desktop-nav a[aria-current="page"] { font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.language-switch { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; }
.language-switch span:nth-child(2) { color: #a5b4c1; }
.language-switch a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; }
.language-switch a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  color: var(--ink);
}
.menu-toggle span { width: 20px; height: 1px; background: currentColor; transition: transform 160ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-navigation { background: var(--white); border-top: 1px solid var(--hairline); }
.mobile-navigation nav { display: grid; }
.mobile-navigation nav a { min-height: 62px; display: flex; align-items: center; padding-inline: 24px; border-bottom: 1px solid var(--hairline); font-family: var(--serif); font-size: 28px; text-decoration: none; }
.mobile-navigation nav a[aria-current="page"] { background: var(--mist); }
.mobile-nav-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; }
.mobile-nav-footer > a:first-child { min-height: 44px; display: inline-flex; align-items: center; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 10px 18px; background: var(--navy); color: var(--white); }
.button--primary { background: var(--navy); color: var(--white); }
.button--primary:hover { background: var(--navy-deep); }
.button--light { background: var(--white); color: var(--ink); }
.button--light:hover { background: var(--mist); }
.button--disabled { background: #cad5dd; color: #586a78; cursor: not-allowed; }
.button--disabled:hover { transform: none; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 34px; }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.text-link:hover { text-decoration: underline; }
.text-link--light { color: var(--white); }
.arrow { display: inline-block; transition: transform 150ms ease; }
a:hover .arrow { transform: translateX(3px); }

.eyebrow {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow:empty { visibility: hidden; }
.eyebrow--light { color: rgba(255, 255, 255, 0.62); }
.dot { width: 10px; height: 10px; display: inline-block; flex: 0 0 10px; border-radius: 50%; background: var(--navy); }
.dot--coral { background: var(--coral); }
.dot--blue { background: var(--blue); }
.dot--navy { background: var(--navy); }
.double-dot { display: inline-flex; gap: 3px; }
.initiative-label { display: flex; align-items: center; gap: 11px; margin: 0; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.pill { width: fit-content; display: inline-flex; align-items: center; gap: 10px; margin: 0 0 28px; padding: 9px 14px; border-radius: 999px; background: var(--mist); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.home-hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.home-hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(8, 47, 86, 0.76); pointer-events: none; }
.home-hero-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; filter: saturate(0.88) contrast(1.04); }
.hero-network { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; opacity: 0.74; pointer-events: none; }
.network-faint { fill: none; stroke: rgba(255, 255, 255, 0.12); stroke-width: 1; }
.network-strong { fill: none; stroke: rgba(255, 255, 255, 0.31); stroke-width: 1.2; }
.network-white { fill: rgba(255, 255, 255, 0.82); }
.network-coral { fill: var(--coral); }
.network-blue { fill: var(--blue); }
.hero-ghost { position: absolute; z-index: 2; top: -74px; left: -72px; font-family: var(--serif); font-size: clamp(130px, 16vw, 240px); letter-spacing: -0.065em; color: rgba(255, 255, 255, 0.035); pointer-events: none; }
.home-hero-grid { position: relative; z-index: 3; min-height: 810px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.home-hero-copy { grid-column: 2 / span 7; align-self: center; padding-bottom: 128px; }
.home-hero h1 { max-width: 850px; font-size: clamp(52px, 6.1vw, 82px); line-height: 0.98; letter-spacing: -0.04em; }
.hero-lead { max-width: 650px; margin: 28px 0 0; font-size: 18px; line-height: 1.68; }
.home-hero .hero-lead { color: rgba(255, 255, 255, 0.74); }
.hero-photo-credit { position: absolute; z-index: 4; right: max(56px, calc((100vw - var(--shell)) / 2)); bottom: 136px; min-height: 44px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; background: rgba(7, 31, 53, 0.7); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 4px; color: rgba(255, 255, 255, 0.8); font-size: 10px; font-weight: 700; line-height: 1.35; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hero-photo-credit:hover { color: var(--white); text-decoration: underline; }
.logo-panel { position: absolute; top: 54px; right: 0; width: 246px; padding: 17px; background: var(--white); border: 1px solid rgba(255, 255, 255, 0.35); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18); color: var(--muted); }
.logo-panel img { width: 132px; height: auto; margin-inline: auto; }
.logo-panel p { margin: 15px 0 0; padding-top: 14px; border-top: 1px solid var(--hairline); font-size: 9px; font-weight: 700; letter-spacing: 0.11em; text-align: center; text-transform: uppercase; }
.system-console { position: absolute; right: 0; bottom: 48px; left: 0; display: grid; grid-template-columns: repeat(3, 1fr) auto; overflow: hidden; background: rgba(16, 42, 67, 0.92); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 8px; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2); }
.system-cell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 20px; border-right: 1px solid rgba(255, 255, 255, 0.2); text-decoration: none; }
.system-cell strong { display: block; margin-bottom: 4px; color: rgba(255, 255, 255, 0.58); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.system-cell small { display: block; color: var(--white); font-size: 14px; }
.system-cell:hover { background: rgba(255, 255, 255, 0.06); }
.system-all { min-width: 176px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 22px; background: var(--white); color: var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }

.section { padding-block: 128px; }
.section--white { background: var(--white); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--white); }
.section--blue { background: var(--navy); color: var(--white); }
.section--photo { background: var(--navy-deep); color: var(--white); }
.section--ink .section-lead, .section--blue .section-lead, .section--photo .section-lead { color: var(--muted-light); }
.section-heading { margin-bottom: 72px; }
.section-heading h2 { max-width: 900px; margin: 0; font-size: clamp(44px, 4.5vw, 64px); line-height: 1.04; letter-spacing: -0.035em; }
.section-heading--offset { display: grid; grid-template-columns: 2fr 8fr 2fr; gap: 24px; }
.section-heading--offset > :nth-child(2) { grid-column: 2 / span 2; }
.section-heading--offset > h2 { grid-column: 2 / span 2; }
.section-heading--split { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 80px; }
.section-heading--split h2 { margin-top: 18px; }
.section-lead { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.section-lead + .section-lead { margin-top: 16px; }
.section-note { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: 14px; line-height: 1.68; }
.section-action { margin-top: 40px; }

.photo-essay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.photo-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--ink);
}
.photo-card--portrait { grid-row: 1 / span 2; }
.photo-frame { min-height: 0; overflow: hidden; background: var(--pale-blue); }
.photo-card--portrait .photo-frame { flex: 1; }
.photo-card--landscape .photo-frame { aspect-ratio: 3 / 2; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-card--portrait img { object-position: 50% 48%; }
.photo-card figcaption {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 11px 16px;
  border-top: 1px solid var(--hairline);
}
.photo-caption { font-family: var(--serif); font-size: 17px; line-height: 1.25; }
.photo-credit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.photo-credit:hover { color: var(--ink); text-decoration: underline; }
.photo-disclaimer { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.photo-disclaimer--light { color: rgba(255, 255, 255, 0.62); }
.context-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.photo-card--context .photo-frame { aspect-ratio: 4 / 3; }

.level-list { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.level-row { min-height: 154px; display: grid; grid-template-columns: 1fr 3fr 4fr 4fr; align-items: center; gap: 24px; padding-block: 30px; border-bottom: 1px solid var(--hairline); }
.level-row:last-child { border-bottom: 0; }
.level-number { font-family: var(--serif); color: #708397; font-size: 34px; }
.level-row h3 { margin: 0; font-size: 30px; line-height: 1.12; letter-spacing: -0.02em; }
.level-row > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.work-stack { display: grid; gap: 30px; }
.work-feature { min-height: 480px; display: grid; grid-template-columns: 5fr 7fr; background: var(--white); border: 1px solid var(--hairline); }
.work-feature--alphares { grid-template-columns: 7fr 5fr; }
.work-copy, .work-field { min-height: 480px; padding: 52px; }
.work-copy { display: flex; flex-direction: column; justify-content: space-between; }
.work-copy h3 { margin: 0; font-size: clamp(48px, 4.5vw, 62px); line-height: 0.98; letter-spacing: -0.04em; }
.work-copy > div > p:last-child { max-width: 440px; margin: 26px 0 0; color: var(--muted); font-size: 17px; line-height: 1.68; }
.work-field { display: flex; flex-direction: column; justify-content: flex-end; }
.work-field--dark { background: var(--ink); color: var(--white); }
.work-field--pale { background: var(--pale-blue); }
.work-field--navy { background: var(--navy); color: var(--white); }
.work-statement { max-width: 730px; margin: 0; font-family: var(--serif); font-size: clamp(32px, 3.2vw, 44px); line-height: 1.16; letter-spacing: -0.025em; }
.work-meta, .work-tags { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 18px; border-top: 1px solid currentColor; color: rgba(255, 255, 255, 0.58); font-size: 12px; }
.work-tags { display: grid; grid-template-columns: repeat(3, 1fr); color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.example-list { margin-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.example-list > div { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-block: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.example-list > div:last-child { border-bottom: 0; }
.example-list span { font-family: var(--serif); font-size: 27px; }
.example-list small { color: rgba(255, 255, 255, 0.6); text-align: right; }

.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--hairline); }
.timeline-card { min-height: 300px; padding: 32px; border-right: 1px solid var(--hairline); }
.timeline-card:last-child { border-right: 0; }
.timeline-year { margin: 0 0 40px; font-family: var(--serif); font-size: 62px; letter-spacing: -0.055em; }
.timeline-card > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.relationship-list { margin-top: 76px; border-top: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark); }
.relationship-row { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding-block: 30px; border-bottom: 1px solid var(--hairline-dark); }
.relationship-row:last-child { border-bottom: 0; }
.relationship-row small { display: block; margin-top: 10px; color: rgba(255, 255, 255, 0.6); }
.name-cloud { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; }
.name-cloud span { font-family: var(--serif); font-size: 20px; }
.name-cloud--quiet span { color: rgba(255, 255, 255, 0.72); font-family: var(--sans); font-size: 14px; }
.muted-light { max-width: 700px; margin: 0; color: var(--muted-light); line-height: 1.7; }

.closing-section { position: relative; padding-block: 122px; background: var(--navy-deep); color: var(--white); text-align: center; }
.closing-section::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 10px; background: var(--navy); }
.closing-inner { max-width: 920px; }
.closing-inner h2 { margin: 0; font-size: clamp(48px, 5.3vw, 72px); line-height: 1.03; letter-spacing: -0.04em; }
.closing-inner > p:not(.eyebrow) { max-width: 650px; margin: 26px auto 0; color: var(--muted-light); font-size: 17px; line-height: 1.7; }
.closing-inner .button { margin-top: 36px; }

.page-hero { position: relative; min-height: 590px; overflow: hidden; }
.page-hero--navy { background: var(--navy-deep); color: var(--white); }
.page-hero--coral { background: var(--ink); color: var(--white); }
.page-hero--ink { background: var(--ink); color: var(--white); }
.page-hero--light { background: var(--white); color: var(--ink); }
.page-hero-lines { position: absolute; inset: 0; opacity: 0.36; pointer-events: none; }
.page-hero-lines::before, .page-hero-lines::after { content: ""; position: absolute; background: currentColor; opacity: 0.14; }
.page-hero-lines::before { top: 0; bottom: 0; left: 66.667%; width: 1px; }
.page-hero-lines::after { top: 44%; right: 0; left: 0; height: 1px; }
.page-hero--coral .page-hero-lines::after { height: 8px; top: auto; bottom: 0; background: var(--coral); opacity: 1; }
.page-hero--light .page-hero-lines { color: var(--ink); }
.page-hero-inner { position: relative; min-height: 590px; display: grid; grid-template-columns: 8fr 4fr; align-items: center; gap: 52px; }
.page-hero-inner > div:first-child { padding-block: 90px; }
.page-hero h1 { max-width: 920px; font-size: clamp(54px, 6.3vw, 86px); line-height: 0.98; letter-spacing: -0.045em; }
.page-hero .hero-lead { color: var(--muted); }
.page-hero--navy .hero-lead, .page-hero--coral .hero-lead, .page-hero--ink .hero-lead { color: var(--muted-light); }
.page-hero-mark { position: relative; height: 310px; border: 1px solid currentColor; opacity: 0.18; }
.page-hero-mark span { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: currentColor; }
.page-hero-mark span:nth-child(1) { top: 18%; left: 20%; }
.page-hero-mark span:nth-child(2) { top: 54%; right: 18%; }
.page-hero-mark span:nth-child(3) { bottom: 15%; left: 43%; }
.page-hero--coral .page-hero-mark span:nth-child(2) { background: var(--coral); opacity: 1; }
.page-hero--light .page-hero-mark span:nth-child(2) { background: var(--blue); opacity: 1; }

.initiative-list { display: grid; gap: 28px; }
.initiative-detail { display: grid; grid-template-columns: 1fr 3fr 7fr; gap: 34px; padding: 46px; background: var(--white); border: 1px solid var(--hairline); }
.initiative-index { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; font-family: var(--serif); font-size: 38px; color: #708397; }
.initiative-main h2 { margin: 16px 0 28px; font-size: 48px; letter-spacing: -0.035em; }
.initiative-facts { margin: 0; }
.initiative-facts > div { display: grid; grid-template-columns: 130px 1fr; gap: 28px; padding-block: 18px; border-bottom: 1px solid var(--hairline); }
.initiative-facts > div:first-child { padding-top: 0; }
.initiative-facts > div:last-child { padding-bottom: 0; border-bottom: 0; }
.initiative-facts dt { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.initiative-facts dd { margin: 0; font-size: 16px; line-height: 1.65; }

.number-list { margin-top: 38px; list-style: none; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.number-list li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding-block: 24px; border-bottom: 1px solid var(--hairline); }
.number-list li:last-child { border-bottom: 0; }
.number-list span { font-family: var(--serif); color: #708397; font-size: 28px; }
.number-list p { max-width: 650px; margin: 0; font-size: 17px; line-height: 1.65; }
.evidence-note { max-width: 660px; margin: 26px 0 0; padding: 18px 20px; background: var(--white); border: 1px solid var(--hairline); color: var(--muted); font-size: 13px; line-height: 1.65; }
.record-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; }
.record-grid h2 { margin: 0 0 30px; font-size: clamp(44px, 4.5vw, 64px); line-height: 1.04; }
.record-grid ol { list-style: none; border-top: 1px solid var(--hairline-dark); }
.record-grid li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding-block: 24px; border-bottom: 1px solid var(--hairline-dark); }
.record-grid li span { font-family: var(--serif); color: rgba(255, 255, 255, 0.45); font-size: 28px; }
.record-grid li p { margin: 0; color: var(--muted-light); font-size: 16px; line-height: 1.7; }

.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; border: 1px solid rgba(255, 255, 255, 0.28); }
.approach-grid article { min-height: 350px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid rgba(255, 255, 255, 0.28); }
.approach-grid article:last-child { border-right: 0; }
.approach-grid article > span { color: rgba(255, 255, 255, 0.5); font-family: var(--serif); font-size: 32px; }
.approach-grid h2 { margin: auto 0 24px; font-size: 34px; line-height: 1.08; }
.approach-grid p { margin: 0; color: var(--muted-light); line-height: 1.68; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.product-grid article { min-height: 430px; display: flex; flex-direction: column; padding: 34px; background: var(--white); border: 1px solid var(--hairline); }
.product-mark { width: 34px; height: 34px; display: block; background: var(--navy); border-radius: 50%; box-shadow: 16px 0 0 var(--blue); }
.product-grid h2 { margin: auto 0 24px; font-size: 35px; line-height: 1.08; }
.product-grid p { margin: 0 0 24px; color: var(--muted); line-height: 1.68; }
.product-grid .text-link { margin-top: auto; }
.ecosystem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.ecosystem-grid h2 { margin: 0; font-size: clamp(48px, 5vw, 68px); }

.connection-list { margin-top: 44px; border-top: 1px solid var(--hairline); }
.connection-list article { display: grid; grid-template-columns: 90px 210px 1fr; gap: 26px; align-items: center; padding-block: 28px; border-bottom: 1px solid var(--hairline); }
.connection-number { color: #708397; font-family: var(--serif); font-size: 30px; }
.connection-list article > p:last-child { margin: 0; color: var(--muted); line-height: 1.65; }
.compact-timeline { margin-top: 38px; border-top: 1px solid var(--hairline); }
.compact-timeline article { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: baseline; padding-block: 28px; border-bottom: 1px solid var(--hairline); }
.compact-timeline span { font-family: var(--serif); font-size: 52px; }
.compact-timeline p { max-width: 720px; margin: 0; color: var(--muted); line-height: 1.65; }
.principles-list { margin-top: 45px; list-style: none; border-top: 1px solid var(--hairline-dark); }
.principles-list li { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding-block: 27px; border-bottom: 1px solid var(--hairline-dark); }
.principles-list span { color: rgba(255, 255, 255, 0.45); font-family: var(--serif); font-size: 30px; }
.principles-list p { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); line-height: 1.14; }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border: 1px solid var(--hairline); }
.step-grid li { min-height: 300px; display: flex; flex-direction: column; padding: 32px; border-right: 1px solid var(--hairline); }
.step-grid li:last-child { border-right: 0; }
.step-grid span { color: #708397; font-family: var(--serif); font-size: 38px; }
.step-grid p { margin: auto 0 0; font-family: var(--serif); font-size: 26px; line-height: 1.2; }
.pathway-list { border-top: 1px solid var(--hairline); }
.pathway-list article { display: grid; grid-template-columns: 4fr 5fr; gap: 50px; padding-block: 30px; border-bottom: 1px solid var(--hairline); }
.pathway-list h2 { margin: 0; font-size: 30px; }
.pathway-list p { margin: 0; color: var(--muted); line-height: 1.68; }
.record-intro { display: grid; grid-template-columns: 3fr 8fr 1fr; gap: 24px; margin-bottom: 58px; }
.record-intro h2 { grid-column: 2 / span 2; margin: 0; font-size: clamp(38px, 4vw, 54px); line-height: 1.1; }
.scoped-records { border-top: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark); }
.scoped-records article { display: grid; grid-template-columns: 310px 1fr; gap: 40px; padding-block: 34px; border-bottom: 1px solid var(--hairline-dark); }
.scoped-records article:last-child { border-bottom: 0; }
.scoped-records h3 { margin: 13px 0 0; color: rgba(255, 255, 255, 0.5); font-family: var(--sans); font-size: 12px; line-height: 1.5; }

.contact-route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.contact-route { min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; padding: 42px; border: 1px solid var(--hairline); }
.contact-route h2 { margin: 34px 0 18px; font-size: 44px; }
.contact-route p:not(.initiative-label) { max-width: 480px; color: var(--muted); line-height: 1.7; }
.contact-route .button { align-self: flex-start; }
.contact-pending-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-pending-grid h2 { margin: 0; font-size: clamp(42px, 4vw, 58px); line-height: 1.08; }
.disabled-form { position: relative; padding: 32px; background: var(--white); border: 1px solid var(--hairline); }
.disabled-form fieldset { margin: 0; padding: 0; border: 0; opacity: 0.62; }
.disabled-form label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--ink); font-size: 13px; font-weight: 700; }
.disabled-form input, .disabled-form textarea { width: 100%; padding: 12px; background: var(--paper); border: 1px solid var(--hairline); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-status { margin: 20px 0 0; padding: 14px; background: var(--mist); border: 1px solid var(--hairline); color: var(--muted); font-size: 13px; font-weight: 700; text-align: center; }

.not-found { min-height: 690px; display: flex; align-items: center; background: var(--navy-deep); color: var(--white); }
.not-found h1 { max-width: 800px; font-size: clamp(60px, 8vw, 108px); line-height: 0.95; letter-spacing: -0.05em; }
.not-found p:not(.eyebrow) { max-width: 580px; margin: 28px 0 0; color: var(--muted-light); font-size: 18px; line-height: 1.7; }

.site-footer { padding: 70px 0 26px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.7fr 0.7fr 0.7fr; gap: 70px; }
.footer-wordmark { margin: 0; font-family: var(--serif); font-size: 25px; line-height: 1.08; }
.footer-brand > p:last-child { max-width: 340px; margin: 24px 0 0; color: rgba(255, 255, 255, 0.6); font-size: 13px; line-height: 1.68; }
.footer-label { margin-bottom: 22px; color: rgba(255, 255, 255, 0.6); font-size: 10px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 8px; list-style: none; }
.site-footer li a { min-width: 46px; min-height: 44px; display: inline-flex; align-items: center; color: rgba(255, 255, 255, 0.9); font-size: 14px; text-decoration: none; }
.site-footer li a:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer-base { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.6); font-size: 11px; }

@media (max-width: 1100px) {
  .shell { width: min(var(--shell), calc(100% - 64px)); }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .home-hero-copy { grid-column: 1 / span 8; }
  .hero-photo-credit { right: 32px; }
  .logo-panel { width: 210px; }
  .system-console { grid-template-columns: repeat(2, 1fr); }
  .system-cell:nth-child(2) { border-right: 0; }
  .system-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .system-all { min-height: 72px; }
  .section-heading--offset { grid-template-columns: 2fr 10fr; }
  .level-row { grid-template-columns: 1fr 3fr 4fr; }
  .level-row > p:last-child { grid-column: 5 / 13; }
  .work-copy, .work-field { padding: 38px; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-card:nth-child(2) { border-right: 0; }
  .timeline-card:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .page-hero-inner { grid-template-columns: 9fr 3fr; }
  .initiative-detail { grid-template-columns: 1fr 3fr 8fr; padding: 36px; }
  .record-grid { gap: 50px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid article { min-height: 320px; }
}

@media (max-width: 780px) {
  .shell { width: min(var(--shell), calc(100% - 40px)); }
  .signal-bar a { display: none; }
  .header-inner { min-height: 70px; }
  .brand { font-size: 16px; }
  .mobile-navigation { max-height: calc(100vh - 70px); overflow-y: auto; }
  .home-hero { min-height: 920px; }
  .home-hero-grid { min-height: 920px; display: block; padding-top: 62px; }
  .home-hero-copy { padding: 0; }
  .home-hero::before { background: rgba(8, 47, 86, 0.79); }
  .home-hero-media img { object-position: 46% 50%; }
  .home-hero h1 { font-size: clamp(46px, 13vw, 64px); }
  .hero-lead { font-size: 17px; }
  .logo-panel { display: none; }
  .system-console { right: 20px; bottom: 22px; left: 20px; grid-template-columns: 1fr; }
  .hero-photo-credit { right: 20px; bottom: 326px; left: 20px; justify-content: center; text-align: center; }
  .system-cell { min-height: 62px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .system-cell:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .system-all { min-height: 58px; }
  .section { padding-block: 86px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading--offset, .section-heading--split { display: block; }
  .section-heading h2 { font-size: clamp(40px, 11vw, 54px); }
  .section-heading--split > * + * { margin-top: 28px; }
  .section-lead { font-size: 17px; }
  .photo-essay-grid, .context-photo-grid { grid-template-columns: 1fr; }
  .photo-card--portrait { grid-row: auto; }
  .photo-card--portrait .photo-frame { aspect-ratio: 2 / 3; }
  .photo-card figcaption { grid-template-columns: 1fr; gap: 0; }
  .photo-credit { justify-content: flex-start; text-align: left; }
  .level-row { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding-block: 26px; }
  .level-row .initiative-label { grid-column: 2; }
  .level-row h3 { grid-column: 1 / span 2; margin-top: 8px; }
  .level-row > p:last-child { grid-column: 1 / span 2; }
  .work-feature, .work-feature--alphares { grid-template-columns: 1fr; }
  .work-feature--alphares .work-field { order: 2; }
  .work-feature--alphares .work-copy { order: 1; }
  .work-copy, .work-field { min-height: 400px; padding: 30px; }
  .work-copy h3 { font-size: 48px; }
  .work-statement { font-size: 31px; }
  .example-list > div { display: grid; }
  .example-list small { text-align: left; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-card { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--hairline); }
  .timeline-card:nth-child(2) { border-right: 0; }
  .timeline-card:last-child { border-bottom: 0; }
  .relationship-row { grid-template-columns: 1fr; }
  .closing-section { padding-block: 90px; }
  .page-hero, .page-hero-inner { min-height: 560px; }
  .page-hero-inner { display: block; }
  .page-hero-inner > div:first-child { padding-block: 78px; }
  .page-hero h1 { font-size: clamp(50px, 14vw, 68px); }
  .page-hero-mark { display: none; }
  .initiative-detail { grid-template-columns: 64px 1fr; padding: 28px; }
  .initiative-index { grid-row: 1 / span 2; }
  .initiative-facts { grid-column: 1 / span 2; margin-top: 20px; }
  .initiative-facts > div { grid-template-columns: 1fr; gap: 8px; }
  .record-grid { grid-template-columns: 1fr; gap: 50px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid article { min-height: 280px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.28); }
  .approach-grid article:last-child { border-bottom: 0; }
  .ecosystem-grid { grid-template-columns: 1fr; gap: 40px; }
  .connection-list article { grid-template-columns: 64px 1fr; }
  .connection-list article > p:last-child { grid-column: 1 / span 2; }
  .compact-timeline article { grid-template-columns: 1fr; gap: 10px; }
  .principles-list li { grid-template-columns: 60px 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .step-grid li { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--hairline); }
  .step-grid li:last-child { border-bottom: 0; }
  .pathway-list article { grid-template-columns: 1fr; gap: 14px; }
  .record-intro { display: block; }
  .record-intro h2 { margin-top: 20px; }
  .scoped-records article { grid-template-columns: 1fr; }
  .contact-route-grid { grid-template-columns: 1fr; }
  .contact-route { min-height: 370px; padding: 30px; }
  .contact-pending-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px 30px; }
  .footer-brand { grid-column: 1 / span 2; }
}

@media (max-width: 430px) {
  .shell { width: calc(100% - 32px); }
  .signal-bar { font-size: 11px; }
  .brand { font-size: 14px; }
  .menu-toggle { width: 46px; height: 46px; }
  .home-hero { min-height: 965px; }
  .home-hero-grid { min-height: 965px; }
  .home-hero h1 { font-size: 46px; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .button-row .text-link { justify-content: center; }
  .system-console { right: 16px; left: 16px; }
  .hero-photo-credit { right: 16px; left: 16px; }
  .work-copy, .work-field { min-height: 360px; padding: 24px; }
  .work-tags { gap: 8px; }
  .example-list span { font-size: 23px; }
  .initiative-detail { display: block; }
  .initiative-index { flex-direction: row; margin-bottom: 26px; }
  .initiative-facts { margin-top: 28px; }
  .number-list li { grid-template-columns: 54px 1fr; }
  .record-grid li { grid-template-columns: 50px 1fr; }
  .product-grid article { min-height: 360px; padding: 28px; }
  .principles-list li { grid-template-columns: 48px 1fr; }
  .contact-route .button { width: 100%; }
  .disabled-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-base { flex-direction: column; }
}

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

@media print {
  .signal-bar, .site-header, .site-footer, .button-row, .closing-section { display: none !important; }
  .section, .page-hero { padding-block: 28px; background: var(--white) !important; color: var(--ink) !important; }
  .page-hero, .page-hero-inner { min-height: auto; }
  .eyebrow, .hero-lead, .section-lead { color: var(--ink) !important; }
}
