:root {
  --ink: #0a1620;
  --ink-soft: #142b39;
  --ink-muted: #36505e;
  --paper: #f5f3ee;
  --cloud: #e8eef0;
  --mist: #cedbe0;
  --sky: #86a8c2;
  --sky-light: #adc2d0;
  --brick: #9a514e;
  --line: rgba(10, 22, 32, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --shell: 78rem;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --display: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

::selection {
  color: var(--paper);
  background: var(--brick);
}

.shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.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: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

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

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

.eyebrow,
.kicker,
.document-index {
  margin-bottom: 1.25rem;
  color: var(--brick);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--sky-light);
}

.kicker {
  color: var(--brick);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.45rem, 5.2vw, 5rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.large-copy {
  max-width: 45rem;
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
  line-height: 1.5;
}

.button,
.text-link,
.print-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 750;
  text-decoration: none;
}

.button {
  min-height: 3.35rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

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

.button-primary {
  color: var(--paper);
  background: var(--brick);
}

.button-primary:hover {
  color: var(--ink);
  background: var(--sky-light);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--paper);
}

.text-link {
  position: relative;
  width: fit-content;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.89rem;
}

.text-link span[aria-hidden="true"],
.button span[aria-hidden="true"],
.print-link span[aria-hidden="true"] {
  transition: transform 180ms var(--ease);
}

.text-link:hover span[aria-hidden="true"],
.button:hover span[aria-hidden="true"],
.print-link:hover span[aria-hidden="true"] {
  transform: translate(0.18rem, -0.18rem);
}

.text-link-light {
  color: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(7, 18, 26, 0.93);
  box-shadow: 0 0.5rem 2rem rgba(2, 10, 16, 0.16);
  backdrop-filter: blur(12px);
}

.site-header-solid {
  border-bottom-color: var(--line);
  color: var(--ink);
  background: rgba(245, 243, 238, 0.96);
  backdrop-filter: blur(12px);
}

.site-header-solid.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 243, 238, 0.96);
  box-shadow: 0 0.5rem 2rem rgba(10, 22, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.45rem;
  gap: 1.25rem;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: clamp(8.7rem, 13vw, 10.65rem);
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
}

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

.primary-nav > a:not(.nav-contact):hover::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 0.75rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: color 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease);
}

.nav-contact:hover {
  border-color: var(--brick);
  color: var(--paper);
  background: var(--brick);
}

.site-header-solid .nav-contact {
  border-color: var(--ink);
}

.site-header-solid .nav-contact:hover {
  border-color: var(--brick);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms var(--ease), top 180ms var(--ease);
}

.menu-toggle span:nth-child(2) {
  top: calc(50% - 0.18rem);
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(3) {
  top: calc(50% + 0.18rem);
  transform: translateX(-50%);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: max(45rem, 100svh);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-scale 14s var(--ease) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 12, 18, 0.93) 0%, rgba(4, 12, 18, 0.76) 39%, rgba(4, 12, 18, 0.23) 72%, rgba(4, 12, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 12, 18, 0.66) 0%, transparent 42%);
}

.hero-wire {
  position: absolute;
  z-index: -1;
  top: 13rem;
  left: -8vw;
  width: min(47rem, 66vw);
  border-top: 1px solid rgba(173, 194, 208, 0.55);
  transform: rotate(-15deg);
  transform-origin: left center;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  min-height: inherit;
  padding-top: 10rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  gap: 2rem;
}

.hero-copy {
  max-width: 44rem;
  animation: hero-copy-in 900ms 120ms var(--ease) both;
}

.hero-eyebrow {
  color: var(--sky-light);
}

.hero h1 {
  max-width: 47rem;
  font-size: clamp(3.8rem, 7.2vw, 8.25rem);
  letter-spacing: -0.075em;
}

.hero h1 em,
.documents-hero h1 em {
  color: var(--sky-light);
  font-style: normal;
}

.hero-lede {
  max-width: 35rem;
  margin-top: 1.65rem;
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.55rem;
  margin-top: 2.35rem;
}

.hero-caption {
  max-width: 14rem;
  margin-bottom: 0.3rem;
  color: rgba(245, 243, 238, 0.86);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.signal-band {
  color: var(--ink);
  background: var(--sky-light);
}

.signal-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.65rem;
  gap: clamp(0.85rem, 3vw, 2.3rem);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.signal-band-inner span {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--brick);
}

.section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(10rem, 0.6fr) minmax(0, 1.75fr);
  gap: clamp(2rem, 7vw, 9rem);
}

.section-label {
  padding-top: 0.55rem;
}

.section-main h2 {
  max-width: 53rem;
}

.section-main .large-copy {
  margin-top: 2.1rem;
}

.section-main .text-link {
  margin-top: 2.25rem;
}

.section-curriculum {
  position: relative;
  overflow: hidden;
  background: var(--cloud);
}

.section-curriculum::after {
  position: absolute;
  right: -12vw;
  bottom: 9%;
  width: min(47vw, 42rem);
  aspect-ratio: 1;
  border: 1px solid rgba(54, 80, 94, 0.12);
  border-radius: 50%;
  content: "";
}

.curriculum-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(14rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.curriculum-header h2 {
  max-width: 48rem;
}

.curriculum-header > p {
  max-width: 20rem;
  padding-bottom: 0.55rem;
  color: var(--ink-muted);
}

.curriculum-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 8vw, 6.25rem);
  border-top: 1px solid var(--line);
  list-style: none;
}

.curriculum-list li {
  display: grid;
  grid-template-columns: 2.9rem minmax(0, 1fr);
  gap: 1rem;
  min-height: 11.25rem;
  padding: 1.55rem 1.25rem 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.curriculum-list li:nth-child(odd) {
  padding-right: clamp(1.5rem, 5vw, 4rem);
  border-right: 1px solid var(--line);
}

.curriculum-list li:nth-child(even) {
  padding-left: clamp(1.5rem, 5vw, 4rem);
}

.curriculum-list span,
.service-item > span {
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.curriculum-list h3 {
  margin-bottom: 0.7rem;
}

.curriculum-list p {
  max-width: 21rem;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.section-services {
  color: var(--paper);
  background: var(--ink);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(14rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
}

.services-intro h2 {
  max-width: 42rem;
}

.services-intro > p:last-child {
  max-width: 21rem;
  padding-bottom: 0.55rem;
  color: rgba(245, 243, 238, 0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 6.25rem);
  border-top: 1px solid var(--line-light);
}

.service-item {
  min-height: 15rem;
  padding: 1.75rem 0 2.6rem;
  border-bottom: 1px solid var(--line-light);
}

.service-item:nth-child(odd) {
  padding-right: clamp(1.5rem, 6vw, 5.5rem);
  border-right: 1px solid var(--line-light);
}

.service-item:nth-child(even) {
  padding-left: clamp(1.5rem, 6vw, 5.5rem);
}

.service-item h3 {
  max-width: 20rem;
  margin-top: 2.8rem;
}

.service-item p {
  max-width: 23rem;
  margin-top: 1rem;
  color: rgba(245, 243, 238, 0.7);
  font-size: 0.94rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.84fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
}

.portrait-wrap {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  background: linear-gradient(135deg, #b8cad5, #789ab3);
}

.portrait-wrap::after {
  position: absolute;
  right: -5rem;
  bottom: -6.5rem;
  width: 17rem;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 22, 32, 0.28);
  border-radius: 50%;
  content: "";
}

.portrait-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
}

.portrait-wrap figcaption {
  position: absolute;
  z-index: 1;
  right: 1.3rem;
  bottom: 1.25rem;
  left: 1.3rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.portrait-wrap figcaption span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(10, 22, 32, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 40rem;
}

.about-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 1.5rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.about-copy .text-link {
  margin-top: 2.3rem;
}

.section-testimonials {
  background: var(--cloud);
}

.testimonials-header h2 {
  max-width: 44rem;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: clamp(3.5rem, 6vw, 5rem);
}

.quote {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 1.5rem;
  border-left: 2px solid var(--brick);
}

.quote blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.84rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.quote figcaption {
  margin-top: 2.2rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.quote figcaption span {
  display: block;
  margin-top: 0.28rem;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.document-prompt {
  color: var(--ink);
  background: var(--sky);
}

.document-prompt-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.62fr);
  align-items: end;
  gap: clamp(2.5rem, 7vw, 8rem);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.document-prompt h2 {
  max-width: 43rem;
}

.document-prompt-inner > div:last-child > p {
  max-width: 25rem;
  margin-bottom: 1.5rem;
}

.section-contact {
  color: var(--paper);
  background: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(19rem, 0.92fr);
  gap: clamp(3rem, 10vw, 11rem);
}

.contact-copy h2 {
  max-width: 38rem;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin-top: 1.6rem;
  color: rgba(245, 243, 238, 0.76);
  font-size: 1.03rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 3rem;
}

.contact-direct a {
  font-size: clamp(1.1rem, 1.75vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-direct a:last-child {
  color: var(--sky-light);
  font-size: clamp(0.94rem, 1.25vw, 1.08rem);
  font-weight: 650;
  letter-spacing: 0;
}

.contact-form {
  padding-top: 0.45rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.35rem;
}

.field label {
  margin-bottom: 0.52rem;
  color: rgba(245, 243, 238, 0.75);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.6rem 0;
  border: 0;
  border-bottom: 1px solid rgba(245, 243, 238, 0.5);
  border-radius: 0;
  outline: none;
  color: var(--paper);
  background: transparent;
  font-size: max(1rem, 16px);
  line-height: 1.4;
  transition: border-color 180ms var(--ease);
}

.field textarea {
  min-height: 7.25rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 243, 238, 0.42);
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--sky-light);
}

.contact-form .button {
  margin-top: 0.65rem;
}

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

.form-note {
  max-width: 30rem;
  margin-top: 1.1rem;
  color: rgba(245, 243, 238, 0.57);
  font-size: 0.76rem;
}

.site-footer {
  color: rgba(245, 243, 238, 0.7);
  background: #060f16;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
  min-height: 7.8rem;
  font-size: 0.71rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.footer-brand {
  color: var(--paper);
  font-size: 0.89rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-brand span {
  color: var(--sky-light);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.footer-inner > div {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-inner a:not(.footer-brand) {
  text-decoration: none;
}

.footer-inner a:not(.footer-brand):hover {
  color: var(--sky-light);
}

/* Support documents */
.documents-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.status-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.status-page-inner {
  padding-block: 8rem 4rem;
}

.status-page h1 {
  max-width: 58rem;
  font-size: clamp(4rem, 10vw, 9rem);
}

.status-page-copy {
  margin-top: 1.75rem;
}

.status-page-copy-compact {
  max-width: 34rem;
}

.status-page-copy-wide {
  max-width: 39rem;
}

.documents-hero::after {
  position: absolute;
  top: 8rem;
  right: -9rem;
  width: min(40vw, 34rem);
  aspect-ratio: 1;
  border: 1px solid rgba(134, 168, 194, 0.55);
  border-radius: 50%;
  content: "";
}

.documents-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
  align-items: end;
  min-height: 34rem;
  padding-top: 10.5rem;
  padding-bottom: clamp(3rem, 7vw, 5.8rem);
  gap: clamp(2rem, 8vw, 10rem);
}

.documents-hero h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.08em;
}

.document-index {
  color: var(--ink-muted);
}

.documents-hero-aside {
  max-width: 22rem;
  padding-bottom: 0.85rem;
}

.documents-hero-aside p {
  color: var(--ink-muted);
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 1.65rem;
}

.document-actions .button {
  min-height: 3.05rem;
  padding-inline: 0.9rem;
  font-size: 0.69rem;
}

.print-link {
  padding: 0 0 0.15rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font-size: 0.79rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.document-file-note {
  margin-top: 0.8rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.document-nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 4rem;
  gap: 0.75rem 2rem;
}

.document-nav a {
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.document-nav a:hover {
  color: var(--brick);
}

.document-section {
  padding-block: clamp(5.5rem, 10vw, 9.5rem);
  background: var(--paper);
}

.document-section-tint {
  background: var(--cloud);
}

.document-grid {
  display: grid;
  grid-template-columns: minmax(8rem, 0.34fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 8vw, 9rem);
}

.document-marker {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 0.4rem;
  color: var(--brick);
}

.document-marker span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.document-marker p {
  color: var(--ink-muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.document-copy h2 {
  max-width: 55rem;
}

.document-copy > p:not(.kicker) {
  max-width: 45rem;
  margin-top: 1.4rem;
  color: var(--ink-muted);
  font-size: 1.04rem;
}

.document-copy .large-copy {
  color: var(--ink);
}

.document-callout {
  max-width: 44rem;
  margin-top: 2.45rem;
  padding: 1.4rem 0 1.4rem 1.45rem;
  border-left: 2px solid var(--brick);
}

.document-callout p {
  font-family: var(--display);
  font-size: clamp(1.32rem, 2vw, 1.76rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3.35rem;
  border-top: 1px solid var(--line);
}

.topic-list > div {
  min-height: 10.5rem;
  padding: 1.4rem 1.2rem 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.topic-list > div:nth-child(odd) {
  padding-right: clamp(1.2rem, 5vw, 4rem);
  border-right: 1px solid var(--line);
}

.topic-list > div:nth-child(even) {
  padding-left: clamp(1.2rem, 5vw, 4rem);
}

.topic-list dt,
.document-services-list h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.topic-list dd {
  margin-top: 0.75rem;
  color: var(--ink-muted);
  font-size: 0.91rem;
}

.document-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3.35rem;
  border-top: 1px solid var(--line);
}

.document-services-list > div {
  min-height: 12.25rem;
  padding: 1.45rem 1.2rem 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.document-services-list > div:nth-child(odd) {
  padding-right: clamp(1.2rem, 5vw, 4rem);
  border-right: 1px solid var(--line);
}

.document-services-list > div:nth-child(even) {
  padding-left: clamp(1.2rem, 5vw, 4rem);
}

.document-services-list p {
  max-width: 21rem;
  margin-top: 0.85rem;
  color: var(--ink-muted);
  font-size: 0.91rem;
}

.document-section-profile {
  color: var(--paper);
  background: var(--ink-soft);
}

.document-section-profile .document-marker {
  color: var(--sky-light);
}

.document-section-profile .document-marker p,
.document-section-profile .kicker {
  color: var(--sky-light);
}

.profile-content {
  display: grid;
  grid-template-columns: minmax(10rem, 0.46fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.profile-content figure {
  overflow: hidden;
  background: var(--sky);
}

.profile-content img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
}

.document-section-profile .document-copy > p:not(.kicker) {
  color: rgba(245, 243, 238, 0.72);
}

.document-section-references {
  background: var(--sky-light);
}

.reference-lines {
  display: grid;
  gap: 0;
  margin-top: 3.4rem;
  border-top: 1px solid var(--line);
}

.reference-lines p {
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.27rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.reference-lines span {
  display: block;
  margin-top: 0.68rem;
  color: var(--ink-muted);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.documents-contact {
  color: var(--paper);
  background: var(--ink);
}

.documents-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.65fr);
  align-items: end;
  gap: clamp(2.5rem, 8vw, 10rem);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.documents-contact h2 {
  max-width: 48rem;
}

.documents-contact-inner > div:last-child > p {
  max-width: 25rem;
  color: rgba(245, 243, 238, 0.7);
}

.documents-contact .action-row {
  margin-top: 1.8rem;
}

/* Intentional entrance and scroll motion */
html.js .reveal {
  opacity: 0;
  transform: translateY(1.35rem);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scale {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@media (max-width: 65rem) {
  .primary-nav {
    gap: 1rem;
  }

  .primary-nav a:not(.nav-contact) {
    display: none;
  }

  .split-layout,
  .document-grid {
    gap: 3.2rem;
  }

  .about-grid {
    gap: 4rem;
  }

  .contact-grid {
    gap: 4rem;
  }
}

@media (max-width: 49rem) {
  html {
    scroll-padding-top: 5.15rem;
  }

  .header-inner {
    min-height: 4.9rem;
  }

  .brand {
    width: 8.85rem;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.6rem var(--gutter) 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--paper);
    background: rgba(7, 18, 26, 0.98);
    box-shadow: 0 1rem 1.8rem rgba(0, 0, 0, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.65rem);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .site-header-solid .primary-nav {
    color: var(--paper);
    background: var(--ink);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a:not(.nav-contact) {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .primary-nav > a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    width: fit-content;
    margin-top: 1rem;
  }

  .hero {
    min-height: max(41rem, 100svh);
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 12, 18, 0.87), rgba(4, 12, 18, 0.54)),
      linear-gradient(0deg, rgba(4, 12, 18, 0.88) 0%, rgba(4, 12, 18, 0.12) 65%);
  }

  .hero-wire {
    top: 11rem;
    width: 84vw;
  }

  .hero-inner {
    display: block;
    padding-top: 9rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 5.6rem);
  }

  .hero-lede {
    max-width: 30rem;
    margin-top: 1.3rem;
  }

  .hero-caption {
    margin-top: 4rem;
    margin-left: auto;
  }

  .signal-band-inner {
    min-height: 3.75rem;
    gap: 0.65rem;
    font-size: 0.61rem;
    letter-spacing: 0.07em;
  }

  .signal-band-inner span {
    width: 0.23rem;
    height: 0.23rem;
  }

  .split-layout,
  .curriculum-header,
  .services-intro,
  .about-grid,
  .contact-grid,
  .document-prompt-inner,
  .documents-hero-inner,
  .document-grid,
  .documents-contact-inner {
    grid-template-columns: 1fr;
  }

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

  .curriculum-header > p,
  .services-intro > p:last-child {
    max-width: 30rem;
    padding-bottom: 0;
  }

  .curriculum-list,
  .services-grid,
  .quotes-grid,
  .topic-list,
  .document-services-list {
    grid-template-columns: 1fr;
  }

  .curriculum-list li,
  .curriculum-list li:nth-child(odd),
  .curriculum-list li:nth-child(even),
  .service-item,
  .service-item:nth-child(odd),
  .service-item:nth-child(even),
  .topic-list > div,
  .topic-list > div:nth-child(odd),
  .topic-list > div:nth-child(even),
  .document-services-list > div,
  .document-services-list > div:nth-child(odd),
  .document-services-list > div:nth-child(even) {
    min-height: 0;
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .curriculum-list li,
  .topic-list > div,
  .document-services-list > div {
    padding-block: 1.35rem 1.5rem;
  }

  .service-item {
    padding-block: 1.5rem 2.25rem;
  }

  .service-item h3 {
    margin-top: 2.05rem;
  }

  .portrait-wrap {
    min-height: 27rem;
  }

  .quote {
    min-height: 0;
    padding-bottom: 0.4rem;
  }

  .quote figcaption {
    margin-top: 1.75rem;
  }

  .document-prompt-inner > div:last-child > p,
  .documents-contact-inner > div:last-child > p {
    max-width: 30rem;
  }

  .contact-form {
    max-width: 38rem;
  }

  .documents-hero::after {
    top: 9rem;
    right: -8rem;
    width: 22rem;
  }

  .documents-hero-inner {
    min-height: 32rem;
    padding-top: 8.25rem;
    padding-bottom: 3.4rem;
  }

  .documents-hero h1 {
    font-size: clamp(3.6rem, 17vw, 6rem);
  }

  .documents-hero-aside {
    max-width: 32rem;
  }

  .document-nav-inner {
    align-items: flex-start;
    min-height: 0;
    padding-block: 1rem;
    gap: 0.9rem 1.25rem;
  }

  .document-marker {
    padding-top: 0;
  }

  .profile-content {
    grid-template-columns: minmax(9rem, 0.43fr) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .profile-content .document-copy h2 {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }

  .profile-content .document-copy > p:not(.kicker) {
    font-size: 0.95rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 1.7rem;
  }

  .footer-inner > div {
    justify-content: flex-start;
  }
}

@media (max-width: 32rem) {
  .form-row,
  .profile-content {
    grid-template-columns: 1fr;
  }

  .profile-content figure {
    max-width: 15rem;
  }

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

  .signal-band-inner p:last-child,
  .signal-band-inner span:nth-of-type(2) {
    display: none;
  }
}

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

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

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  @page {
    margin: 0.65in;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 10pt;
  }

  .site-header,
  .document-nav,
  .documents-contact,
  .site-footer,
  .print-link,
  .skip-link {
    display: none !important;
  }

  .documents-hero {
    min-height: 0;
    padding-top: 0;
  }

  .documents-hero::after {
    display: none;
  }

  .documents-hero-inner {
    display: block;
    min-height: 0;
    padding: 0 0 1.5rem;
  }

  .documents-hero h1 {
    font-size: 42pt;
  }

  .documents-hero-aside {
    margin-top: 1rem;
  }

  .document-section {
    break-inside: avoid;
    padding-block: 1.4rem;
  }

  .document-grid {
    gap: 1rem;
  }

  .document-section-profile {
    color: #000;
    background: #fff;
  }

  .document-section-profile .document-copy > p:not(.kicker),
  .document-section-profile .document-marker p {
    color: #333;
  }

  .topic-list > div,
  .document-services-list > div,
  .reference-lines p {
    break-inside: avoid;
  }
}

/* Premium corporate editorial pass */
.hero-premium {
  min-height: max(43rem, 100svh);
  background: #07131c;
}

.hero-premium .hero-media img {
  object-position: center center;
  filter: saturate(0.76) contrast(1.04) brightness(0.88);
}

.hero-premium .hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 16, 24, 0.94) 0%, rgba(5, 16, 24, 0.81) 34%, rgba(5, 16, 24, 0.38) 63%, rgba(5, 16, 24, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 13, 20, 0.78) 0%, rgba(4, 13, 20, 0.05) 56%);
}

.hero-gridline {
  top: 18.5%;
  width: min(54rem, 70vw);
  border-top-color: rgba(188, 208, 219, 0.48);
  transform: rotate(-10deg);
}

.hero-copy {
  max-width: 47rem;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: #c4d6df;
}

.hero-eyebrow span {
  color: var(--brick);
}

.hero h1 {
  max-width: 51rem;
  font-size: clamp(4.1rem, 7.7vw, 8.8rem);
}

.hero h1 em {
  color: #b7ceda;
}

.hero-caption {
  display: grid;
  grid-template-columns: minmax(2rem, 5rem) minmax(8rem, 13rem);
  align-items: center;
  gap: 1rem;
  max-width: 20rem;
  margin-bottom: 0.45rem;
  text-align: left;
}

.hero-caption-line {
  height: 1px;
  background: rgba(220, 232, 238, 0.68);
}

.hero-caption p {
  color: rgba(245, 243, 238, 0.88);
}

.proof-strip {
  background: #d7e1e5;
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 7.25rem;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding-block: 1.3rem;
}

.proof-strip-inner > p {
  display: grid;
  align-content: center;
  gap: 0.38rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.42;
  text-align: left;
  text-transform: none;
}

.proof-strip-inner > p strong {
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* The original signal-band dot rule also targets spans inside each proof item.
   Restore those spans as normal text so the supporting lines retain their intended measure. */
.proof-strip-inner > p > span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.proof-divider {
  display: none;
}

.training-editorial {
  padding-block: clamp(6rem, 11vw, 11.5rem);
}

.training-layout {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.24fr) minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: start;
  gap: clamp(2rem, 4.5vw, 5rem);
}

.training-copy {
  padding-top: clamp(0rem, 3vw, 2rem);
}

.training-image,
.curriculum-image,
.services-image,
.documents-hero-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #bdcdd5;
}

.training-image {
  align-self: start;
  aspect-ratio: 5 / 4;
  min-height: 0;
  margin-top: clamp(0rem, 1.8vw, 1.5rem);
}

.training-image img,
.curriculum-image img,
.services-image img,
.documents-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms var(--ease);
}

.training-image img {
  position: absolute;
  inset: 0;
  object-position: center;
}

.training-image figcaption,
.services-image figcaption,
.curriculum-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #f7f8f5;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.training-image::after,
.services-image::after,
.curriculum-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(2, 10, 15, 0.63), transparent);
  content: "";
  pointer-events: none;
}

[data-media-reveal] img {
  transform: scale(1.075);
}

[data-media-reveal].is-visible img {
  transform: scale(1);
}

[data-media-reveal]:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.curriculum-editorial {
  padding-block: clamp(6rem, 11vw, 10.5rem);
  background: #e2eaed;
}

.curriculum-header {
  grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.5fr);
}

.curriculum-stage {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 8rem);
  margin-top: clamp(3.75rem, 7vw, 6.5rem);
}

.curriculum-image {
  position: sticky;
  top: 7.2rem;
  min-height: 37rem;
}

.curriculum-image img {
  position: absolute;
  inset: 0;
  object-position: center top;
}

.curriculum-image figcaption {
  justify-content: flex-start;
  max-width: 15rem;
}

.curriculum-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  border-top-color: rgba(10, 22, 32, 0.2);
}

.curriculum-list li {
  min-height: 12rem;
  padding-top: 1.9rem;
  padding-bottom: 2rem;
}

.curriculum-list h3 {
  margin-bottom: 0.85rem;
}

.services-editorial {
  padding-block: clamp(6.25rem, 11vw, 11rem);
}

.services-intro {
  grid-template-columns: minmax(7.5rem, 0.32fr) minmax(0, 1.2fr) minmax(15rem, 0.5fr);
  gap: clamp(2rem, 5vw, 6rem);
}

.services-intro > p:last-child {
  padding-bottom: 0.4rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 0.7fr);
  align-items: start;
  gap: clamp(2.75rem, 8vw, 10rem);
  margin-top: clamp(3.75rem, 8vw, 6.5rem);
}

.services-rail {
  border-top: 1px solid var(--line-light);
}

.service-item,
.service-item:nth-child(odd),
.service-item:nth-child(even) {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  min-height: 0;
  padding: 1.65rem 0 1.85rem;
  border-right: 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left 220ms var(--ease), color 220ms var(--ease), background-color 220ms var(--ease);
}

.service-item:hover {
  padding-left: 0.9rem;
  color: #cbdde5;
  background: rgba(255, 255, 255, 0.035);
}

.service-item h3 {
  max-width: none;
  margin-top: 0;
}

.service-item p {
  max-width: 30rem;
  margin-top: 0.7rem;
}

.services-image {
  position: sticky;
  top: 7.2rem;
  min-height: 38rem;
}

.services-image img {
  position: absolute;
  inset: 0;
  object-position: 20% center;
}

.about-editorial {
  padding-block: clamp(6rem, 11vw, 10.75rem);
}

.portrait-wrap {
  min-height: 39rem;
  background: linear-gradient(135deg, #d6e1e5, #7f9eb1);
}

.portrait-wrap::before {
  position: absolute;
  z-index: 1;
  top: 1.1rem;
  left: 1.1rem;
  width: 2.7rem;
  height: 2.7rem;
  border-top: 1px solid rgba(10, 22, 32, 0.52);
  border-left: 1px solid rgba(10, 22, 32, 0.52);
  content: "";
}

.portrait-wrap figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  line-height: 1.25;
}

.portrait-wrap figcaption strong {
  font-size: 0.92rem;
}

.section-testimonials {
  padding-block: clamp(6rem, 11vw, 10rem);
  background: #e4ecef;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  margin-top: clamp(3.5rem, 7vw, 5.75rem);
}

.quote {
  min-height: 0;
  padding-left: 0;
  border-left: 0;
}

.quote-featured {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 29rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--paper);
  background: var(--ink);
}

.quote-mark {
  position: absolute;
  top: 1.25rem;
  right: clamp(1.5rem, 4vw, 3.3rem);
  color: var(--sky-light);
  font-family: Georgia, serif;
  font-size: clamp(6rem, 10vw, 11rem);
  line-height: 0.62;
}

.quote-featured blockquote {
  position: relative;
  z-index: 1;
  max-width: 41rem;
  font-size: clamp(2rem, 3.25vw, 3.6rem);
  line-height: 1.05;
}

.quote-featured figcaption,
.quote-supporting figcaption {
  display: grid;
  gap: 0.35rem;
  font-size: 0.72rem;
}

.quote-featured figcaption span {
  color: var(--sky-light);
}

.quotes-supporting {
  display: grid;
  align-content: space-between;
  gap: 2rem;
}

.quote-supporting {
  padding: 0 0 1.85rem;
  border-bottom: 1px solid var(--line);
}

.quote-supporting blockquote {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.quote-supporting figcaption {
  margin-top: 1.45rem;
}

.testimonials-link {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: -1.4rem;
}

.document-prompt-editorial {
  color: var(--paper);
  background: #57778a;
}

.document-prompt-editorial .eyebrow {
  color: #d3e5ee;
}

.document-prompt-editorial .button-dark {
  color: var(--ink);
  background: var(--paper);
}

.document-prompt-editorial .button-dark:hover {
  color: var(--paper);
  border-color: var(--paper);
  background: transparent;
}

.contact-editorial {
  padding-block: clamp(6rem, 11vw, 10rem);
  background: #102b39;
}

.contact-grid {
  gap: clamp(3rem, 9vw, 10rem);
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(203, 222, 229, 0.25);
  background: rgba(5, 18, 27, 0.24);
}

/* Support documents cover and navigation */
.documents-hero-cover {
  background: #eef2f1;
}

.documents-hero-cover::after {
  display: none;
}

.documents-hero-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.78fr);
  align-items: stretch;
  min-height: 40rem;
  padding-top: 8.8rem;
  padding-bottom: clamp(3.5rem, 6vw, 5.75rem);
  gap: clamp(3rem, 8vw, 10rem);
}

.documents-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0.6rem;
}

.documents-hero h1 {
  max-width: 37rem;
  font-size: clamp(4.3rem, 8.4vw, 8.7rem);
}

.documents-hero-aside {
  display: flex;
  max-width: none;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0.6rem;
}

.documents-hero-visual {
  min-height: 18rem;
  aspect-ratio: 1.3;
}

.documents-hero-visual img {
  position: absolute;
  inset: 0;
  filter: saturate(0.72) contrast(1.04);
}

.documents-hero-summary {
  max-width: 29rem;
  margin-top: 1.3rem;
}

.documents-hero-summary p {
  color: var(--ink-muted);
}

.document-file-bar {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(12rem, 1fr);
  align-items: end;
  gap: 1.5rem;
  margin-top: 1.8rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.document-file-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.document-file-meta dt {
  color: var(--ink-muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-file-meta dd {
  margin: 0.22rem 0 0;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.document-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.document-download {
  min-height: 2.95rem;
}

.document-print {
  white-space: nowrap;
}

.document-nav {
  position: sticky;
  z-index: 55;
  top: 5.45rem;
  border-top: 0;
  background: rgba(245, 243, 238, 0.96);
  box-shadow: 0 0.8rem 1.7rem rgba(10, 22, 32, 0.05);
  backdrop-filter: blur(12px);
}

.document-nav-inner {
  justify-content: space-between;
}

.document-nav a {
  position: relative;
  padding-block: 1.38rem 1.28rem;
  transition: color 180ms var(--ease);
}

.document-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brick);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.document-nav a:hover,
.document-nav a[aria-current="location"] {
  color: var(--ink);
}

.document-nav a:hover::after,
.document-nav a[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.document-section {
  scroll-margin-top: 10rem;
}

@media (max-width: 70rem) {
  .training-layout {
    grid-template-columns: minmax(6.5rem, 0.2fr) minmax(0, 1fr) minmax(16rem, 0.78fr);
    gap: 2.5rem;
  }

  .training-image {
    min-height: 0;
  }

  .curriculum-stage,
  .services-layout {
    gap: 3rem;
  }

  .curriculum-image,
  .services-image {
    min-height: 31rem;
  }

  .documents-hero-inner {
    gap: 3.5rem;
  }

  .document-file-bar {
    grid-template-columns: 1fr;
  }

  .document-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 49rem) {
  .curriculum-header,
  .curriculum-list {
    grid-template-columns: 1fr;
  }

  .portrait-wrap figcaption {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.85rem 1.3rem 0.95rem;
    background: rgba(245, 243, 238, 0.94);
  }

  .footer-inner a:not(.footer-brand) {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
  }

  .hero-premium {
    min-height: max(42rem, 100svh);
  }

  .hero-premium .hero-media img {
    object-position: 58% center;
  }

  .hero-premium .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 16, 24, 0.9), rgba(5, 16, 24, 0.55)),
      linear-gradient(0deg, rgba(4, 13, 20, 0.9) 0%, rgba(4, 13, 20, 0.12) 67%);
  }

  .hero h1 {
    font-size: clamp(3.55rem, 15.5vw, 5.6rem);
  }

  .hero-caption {
    grid-template-columns: minmax(2rem, 4rem) minmax(8rem, 12rem);
    margin-top: 3.4rem;
  }

  .proof-strip-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 0.8rem;
  }

  .proof-strip-inner > p {
    padding-block: 0.8rem;
    border-bottom: 1px solid rgba(10, 22, 32, 0.14);
  }

  .proof-strip-inner > p:last-of-type {
    border-bottom: 0;
  }

  .training-layout,
  .curriculum-stage,
  .services-layout,
  .testimonial-layout,
  .documents-hero-inner {
    grid-template-columns: 1fr;
  }

  .training-layout {
    gap: 1.75rem;
  }

  .training-copy {
    padding-top: 0;
  }

  .training-image,
  .curriculum-image,
  .services-image {
    position: relative;
    top: auto;
    min-height: 25rem;
  }

  .training-image {
    aspect-ratio: 5 / 4;
    min-height: 0;
    margin-top: 0;
  }

  .curriculum-image {
    order: 2;
  }

  .curriculum-list {
    order: 1;
  }

  .curriculum-list li {
    min-height: 0;
  }

  .services-intro {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-intro > p:last-child {
    max-width: 32rem;
  }

  .services-layout {
    margin-top: 3.5rem;
  }

  .services-image {
    order: -1;
  }

  .service-item,
  .service-item:nth-child(odd),
  .service-item:nth-child(even) {
    grid-template-columns: 2.45rem minmax(0, 1fr);
    padding-block: 1.35rem 1.55rem;
  }

  .service-item:hover {
    padding-left: 0;
    background: transparent;
  }

  .portrait-wrap {
    min-height: 31rem;
  }

  .quote-featured {
    min-height: 22rem;
  }

  .quote-featured blockquote {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .quotes-supporting {
    gap: 1.75rem;
  }

  .testimonials-link {
    margin-top: 0.5rem;
  }

  .documents-hero-inner {
    min-height: 0;
    padding-top: 7.7rem;
    gap: 2.5rem;
  }

  .documents-hero-copy {
    padding-bottom: 0;
  }

  .documents-hero-aside {
    padding-bottom: 0;
  }

  .documents-hero-visual {
    min-height: 15.5rem;
  }

  .document-file-bar {
    gap: 1.2rem;
  }

  .document-actions {
    align-items: flex-start;
  }

  .document-nav {
    top: 4.9rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .document-nav::-webkit-scrollbar {
    display: none;
  }

  .document-nav-inner {
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .document-nav a {
    padding-block: 1.05rem 1rem;
    font-size: 0.63rem;
  }
}

@media (max-width: 32rem) {
  .hero-eyebrow {
    gap: 0.35rem;
    font-size: 0.62rem;
  }

  .training-image,
  .curriculum-image,
  .services-image {
    min-height: 21.5rem;
  }

  .training-image {
    min-height: 0;
  }

  .document-file-meta {
    gap: 0.55rem;
  }

  .document-actions .button {
    width: 100%;
  }
}

@media print {
  .documents-hero-visual,
  .document-file-bar,
  .document-prompt-editorial {
    display: none !important;
  }

  .documents-hero-inner {
    padding: 0 0 1.5rem;
  }

  .documents-hero-copy,
  .documents-hero-aside {
    display: block;
  }
}

/* Interaction and accessibility safeguards */
@media (min-width: 49.0625rem) and (max-width: 65rem) {
  .primary-nav a:not(.nav-contact) {
    display: inline;
  }
}

@media (max-width: 49rem) {
  html:not(.js) .site-header {
    position: static;
    color: var(--ink);
    background: var(--paper);
  }

  html:not(.js) .primary-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    padding: 0.15rem var(--gutter) 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    background: var(--paper);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  html:not(.js) .primary-nav a:not(.nav-contact) {
    display: block;
    padding: 0.65rem 0.8rem 0.65rem 0;
    border-bottom: 0;
  }

  html:not(.js) .primary-nav .nav-contact {
    margin-top: 0;
    border-color: var(--ink);
  }

  html:not(.js) .menu-toggle {
    display: none;
  }

  html.js .menu-toggle {
    display: block;
  }
}

.contact-editorial :focus-visible {
  outline-color: #d7e8ee;
}

.contact-editorial .field input:focus-visible,
.contact-editorial .field textarea:focus-visible {
  outline: 2px solid #d7e8ee;
  outline-offset: 4px;
  border-bottom-color: #d7e8ee;
}

@media print {
  html.js .reveal,
  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
