@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../assets/fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --paper: #f3f0e8;
  --paper-deep: #e5e3db;
  --white: #fbfaf6;
  --ink: #20231f;
  --ink-soft: #353a34;
  --muted: #5d625b;
  --dark: #252925;
  --dark-deep: #171a17;
  --on-dark: #f5f2e9;
  --on-dark-muted: #c5cbc2;
  --accent: #2b5d69;
  --accent-deep: #214852;
  --accent-light: #9fc1c8;
  --accent-wash: #cbdcdd;
  --rule: #c9ccc3;
  --rule-dark: rgba(245, 242, 233, 0.22);
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-height: 84px;
  --scroll-progress: 0;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main,
section,
article,
div,
figure {
  min-width: 0;
}

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

main img {
  filter: saturate(0.88) contrast(1.04);
}

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

p,
ul {
  margin-bottom: 1.35em;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

::selection {
  background: var(--accent-wash);
  color: var(--ink);
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--on-dark);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

/* Header and wordmark */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(32, 35, 31, 0.16);
  background: rgba(243, 240, 232, 0.94);
  backdrop-filter: blur(14px);
  transition: height 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(243, 240, 232, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1376px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-meta {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.nav-wrap,
.primary-nav {
  display: flex;
  align-items: center;
}

.nav-wrap {
  gap: clamp(22px, 3vw, 48px);
}

.primary-nav {
  gap: clamp(20px, 2.3vw, 36px);
}

.primary-nav a {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
}

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

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

.header-cta {
  display: inline-grid;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  background: var(--accent-deep);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
  margin: auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-active .menu-toggle span {
  background: transparent;
}

.menu-active .menu-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-active .menu-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Progress rail */
.progress-rail {
  position: fixed;
  top: 50%;
  right: 16px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 180ms ease;
}

.progress-rail.light {
  color: var(--on-dark);
}

.rail-track {
  position: relative;
  width: 1px;
  height: 92px;
  overflow: hidden;
  background: currentColor;
  opacity: 0.35;
}

.rail-fill {
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 1;
  transform: scaleY(var(--scroll-progress));
  transform-origin: top;
}

.rail-label {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Shared typography and actions */
.eyebrow,
.overline {
  display: block;
  margin-bottom: 20px;
  color: var(--accent-deep);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.display,
.section-title,
.card-title,
h2,
h3 {
  text-wrap: balance;
}

.display {
  max-width: 1000px;
  margin-bottom: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3.55rem, 7vw, 7rem);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.display em,
.section-title em {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: 380;
}

.display em {
  display: block;
}

.section-title {
  max-width: 930px;
  margin-bottom: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.section-title.small {
  max-width: 780px;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 1.02;
}

.lede {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.kicker {
  max-width: 560px;
  margin-top: 30px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-serif {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 1.17;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--accent-deep);
  border-radius: 0;
  background: var(--accent-deep);
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-light {
  border-color: var(--on-dark);
  background: var(--on-dark);
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--accent-light);
  background: var(--accent-light);
  color: var(--ink);
}

.button-outline {
  border-color: rgba(32, 35, 31, 0.55);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration-line: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-link:hover {
  color: var(--ink);
}

/* Surfaces and section rhythm */
.section {
  padding-block: clamp(84px, 9vw, 144px);
}

.section-tight {
  padding-block: clamp(68px, 7vw, 108px);
}

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

.section-ink {
  background: var(--dark);
  color: var(--on-dark);
}

.section-accent {
  background: var(--accent-wash);
  color: var(--ink);
}

.section-ink .eyebrow,
.section-ink .overline,
.site-footer .eyebrow {
  color: var(--accent-light);
}

.section-ink .lede,
.section-ink .kicker,
.section-ink p {
  color: var(--on-dark-muted);
}

.section-ink .section-title,
.section-ink h2,
.section-ink h3,
.section-ink em {
  color: var(--on-dark);
}

.section-accent .section-title,
.section-accent .section-title em,
.section-accent p {
  color: var(--ink);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: clamp(40px, 7vw, 112px);
  margin-bottom: clamp(48px, 6vw, 84px);
}

.section-heading-row > .lede,
.section-heading-row > .text-link {
  justify-self: end;
}

/* Home hero */
.page-hero {
  position: relative;
}

.home-hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(48px, 6vw, 88px);
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.73fr);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
}

.hero-copy {
  padding-block: 24px;
}

.hero-copy .lede {
  max-width: 670px;
}

.hero-media {
  margin: 0;
}

.hero-image-frame {
  height: clamp(480px, 61vh, 680px);
  overflow: hidden;
  background: var(--paper-deep);
}

.hero-image-frame img {
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: center 52%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
  will-change: transform;
}

.hero-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: var(--gutter);
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-band {
  background: var(--accent-deep);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 36px clamp(24px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.proof-item span {
  display: block;
  max-width: 350px;
  color: #d8e5e7;
  font-size: 0.81rem;
  line-height: 1.6;
}

/* Subpage heroes: common structure, page-specific composition */
.subhero {
  padding-block: clamp(76px, 8vw, 126px);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
  align-items: end;
  gap: clamp(46px, 8vw, 128px);
}

.subhero .display {
  margin-bottom: 0;
  font-size: clamp(3.8rem, 7.2vw, 7.4rem);
}

.subhero-side {
  padding-bottom: 8px;
}

.subhero-side .lede {
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.hero-meta {
  margin-top: 28px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subhero-media {
  margin-top: clamp(52px, 7vw, 96px);
  overflow: hidden;
  background: var(--paper-deep);
}

.subhero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 720px;
  padding: 0;
}

.about-hero .subhero-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 96px clamp(44px, 6vw, 92px) 96px max(var(--gutter), calc((100vw - var(--shell)) / 2));
}

.about-hero .subhero-side {
  max-width: 590px;
  margin-top: 38px;
}

.about-hero-media {
  width: auto;
  max-width: none;
  height: 100%;
  margin: 0;
}

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

.capabilities-hero {
  padding-bottom: 0;
  border-bottom: 0;
  background: var(--dark);
  color: var(--on-dark);
}

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

.capabilities-hero .lede {
  color: var(--on-dark-muted);
}

.capabilities-hero-media {
  width: 100%;
  height: clamp(330px, 36vw, 520px);
  margin-top: clamp(62px, 8vw, 112px);
}

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

.markets-hero {
  padding-bottom: 0;
  background: var(--white);
}

.markets-hero-media {
  height: clamp(300px, 36vw, 500px);
}

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

.approach-hero {
  padding-bottom: 0;
  background: var(--accent-wash);
}

.approach-hero .eyebrow,
.approach-hero .lede {
  color: var(--accent-deep);
}

.approach-hero-media {
  width: min(calc(100% - (var(--gutter) * 2)), 1080px);
  height: clamp(340px, 40vw, 560px);
  margin-right: 0;
  margin-left: auto;
}

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

.contact-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  min-height: 690px;
  padding: 0;
  background: var(--paper);
}

.contact-hero .subhero-grid {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 96px max(var(--gutter), calc((100vw - var(--shell)) / 2)) 96px clamp(48px, 7vw, 108px);
}

.contact-hero .subhero-side {
  max-width: 580px;
  margin-top: 38px;
}

.contact-hero-media {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  max-width: none;
  height: 100%;
  margin: 0;
}

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

.privacy-hero {
  background: var(--paper-deep);
}

.privacy-hero .subhero-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: start;
}

.privacy-hero .display {
  max-width: 920px;
  font-size: clamp(3.35rem, 6.2vw, 6.3rem);
}

/* Editorial content systems */
.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 10vw, 156px);
}

.thesis-sticky {
  position: sticky;
  top: 116px;
  align-self: start;
}

.thesis-item {
  padding-block: 30px 34px;
  border-top: 1px solid var(--rule);
  transition: opacity 320ms ease, transform 420ms ease;
}

.thesis-item:last-child {
  border-bottom: 1px solid var(--rule);
}

.js-ready .thesis-item:not(.in-view) {
  opacity: 0.55;
  transform: translateY(12px);
}

.thesis-item h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 660;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.thesis-item p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

/* Capability card scroller */
.scroller-wrap {
  overflow: hidden;
}

.scroller-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
}

.scroller-viewport::-webkit-scrollbar {
  display: none;
}

.scroller-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.drag-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-inline: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  padding-bottom: 10px;
}

.feature-card,
.market-card {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease, background-color 220ms ease;
}

.feature-card {
  width: clamp(310px, 31vw, 430px);
  background: var(--paper);
  color: var(--ink);
}

.feature-image {
  height: clamp(220px, 23vw, 300px);
  overflow: hidden;
  background: var(--paper-deep);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-card:hover .feature-image img {
  transform: scale(1.025);
}

.feature-body {
  padding: 26px 26px 32px;
}

.card-title,
.feature-body h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.feature-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

.glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.2), transparent 42%);
  opacity: var(--glare-opacity, 0);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.scroller-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.scroller-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(245, 242, 233, 0.6);
  border-radius: 0;
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

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

.scroller-button.on-light {
  border-color: var(--ink);
  color: var(--ink);
}

.scroller-button.on-light:hover {
  background: var(--ink);
  color: var(--white);
}

.scroller-button svg {
  width: 20px;
  height: 20px;
}

/* Home markets and corridor */
.market-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  min-height: 680px;
}

.market-preview-copy {
  display: flex;
  align-items: center;
  padding: clamp(84px, 9vw, 140px) clamp(48px, 6vw, 100px) clamp(84px, 9vw, 140px) max(var(--gutter), calc((100vw - var(--shell)) / 2));
}

.market-preview-copy > div {
  width: min(100%, 660px);
}

.market-preview-copy .lede {
  margin-top: 30px;
}

.market-list {
  display: grid;
  margin-block: 34px;
  border-top: 1px solid var(--rule);
}

.market-list span {
  padding-block: 11px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.market-preview-media {
  min-height: 560px;
  overflow: hidden;
}

.market-preview-media img {
  width: 100%;
  height: calc(100% + 70px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.03);
}

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(56px, 8vw, 128px);
}

.route-grid .lede {
  margin-top: 28px;
  margin-bottom: 24px;
}

.section-ink .text-link {
  color: var(--accent-light);
}

.section-ink .text-link:hover {
  color: var(--white);
}

.route-photo {
  height: clamp(390px, 43vw, 600px);
  overflow: hidden;
  background: var(--dark-deep);
}

.route-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coordination-feature .route-photo img {
  object-position: center 42%;
}

.quote-band {
  background: var(--accent-wash);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.quote-text {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.25rem, 4.7vw, 4.75rem);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.section-ink .quote-text {
  color: var(--on-dark);
}

.quote-caption {
  margin-bottom: 0;
  color: var(--accent-deep);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-ink .quote-caption {
  color: var(--accent-light);
}

.cta-section {
  padding-block: clamp(62px, 7vw, 96px);
  border-top: 1px solid var(--rule-dark);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(220px, 0.35fr);
  align-items: end;
  justify-content: space-between;
  gap: clamp(42px, 8vw, 128px);
}

.cta-grid .button {
  width: 100%;
  min-height: 58px;
}

/* About */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(58px, 9vw, 140px);
}

.story-media figure {
  margin: 0;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.story-copy {
  padding-top: clamp(18px, 3vw, 48px);
}

.story-copy > p:not(.lead-serif) {
  max-width: 700px;
  color: var(--muted);
}

.story-copy .text-link {
  margin-top: 14px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}

.principle-card {
  position: relative;
  overflow: hidden;
  padding-top: 26px;
  border-top: 2px solid var(--accent-light);
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 220ms ease;
}

.principle-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 670;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--on-dark-muted);
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(48px, 6vw, 82px);
}

.clarity-card {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--rule);
  background: var(--paper);
}

.clarity-card h3 {
  margin-bottom: 24px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 680;
  letter-spacing: -0.035em;
}

.clarity-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clarity-list li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
}

.clarity-list li::before {
  position: absolute;
  top: 1.55em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.corridor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(56px, 9vw, 140px);
}

.corridor-image {
  height: clamp(440px, 52vw, 680px);
  overflow: hidden;
}

.corridor-figure {
  margin: 0;
}

.corridor-figure figcaption {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.corridor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corridor-copy p {
  color: var(--muted);
}

.corridor-tags {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}

.corridor-tags span {
  padding-block: 12px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.025em;
}

/* Capabilities and market introductions */
.markets-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 156px);
}

.markets-intro-copy {
  padding-top: 6px;
}

.markets-intro-copy > p:not(.lead-serif) {
  max-width: 710px;
  color: var(--muted);
}

.service-list {
  border-top: 1px solid var(--rule);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(56px, 9vw, 132px);
  padding-block: clamp(70px, 8vw, 118px);
  border-bottom: 1px solid var(--rule);
}

.service-row:nth-child(even) .service-copy {
  order: 2;
}

.service-row:nth-child(even) .service-visual {
  order: 1;
}

.service-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.service-copy p {
  color: var(--muted);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--rule);
}

.service-points span {
  padding: 12px 12px 0 0;
  color: var(--accent-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-visual {
  height: clamp(380px, 43vw, 590px);
  overflow: hidden;
  background: var(--paper-deep);
}

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

.service-row:nth-child(1) .service-visual img {
  object-position: center;
}

.service-row:nth-child(2) .service-visual img {
  object-position: center 45%;
}

.service-row:nth-child(3) .service-visual img {
  object-position: center 58%;
}

.service-row:nth-child(4) .service-visual img {
  object-position: 58% center;
}

.scope-note {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: end;
  gap: clamp(52px, 9vw, 140px);
}

.scope-note-copy {
  padding-left: 28px;
  border-left: 2px solid var(--accent-light);
}

.scope-note-copy p {
  margin: 0;
}

/* Market cards and buyers */
.market-card {
  display: flex;
  width: clamp(280px, 25vw, 350px);
  min-height: 300px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
}

.market-card > div {
  align-self: flex-start;
}

.market-card h3 {
  min-height: 2.35em;
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.market-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.market-card:hover {
  background: var(--accent-wash);
}

.buyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}

.buyer-card {
  padding-top: 26px;
  border-top: 2px solid var(--accent-light);
}

.buyer-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 670;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.buyer-card p {
  margin: 0;
  color: var(--on-dark-muted);
}

/* Approach */
.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.45fr);
  align-items: end;
  gap: clamp(54px, 9vw, 140px);
  margin-bottom: clamp(58px, 7vw, 96px);
}

.process-list {
  border-top: 1px solid var(--rule);
}

.process-step {
  display: grid;
  grid-template-columns: 62px minmax(210px, 0.48fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 64px);
  padding-block: clamp(30px, 4vw, 50px);
  border-bottom: 1px solid var(--rule);
  transition: opacity 300ms ease, transform 420ms ease;
}

.js-ready .process-step:not(.in-view) {
  opacity: 0.5;
  transform: translateY(12px);
}

.step-index {
  padding-top: 5px;
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  font-weight: 670;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.step-detail p {
  margin-bottom: 16px;
  color: var(--muted);
}

.step-output {
  color: var(--accent-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.working-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 68px);
  margin-top: clamp(48px, 6vw, 80px);
}

.working-note {
  padding-top: 24px;
  border-top: 2px solid var(--accent-light);
}

.working-note .overline {
  margin-bottom: 18px;
}

.working-note h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 670;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.working-note p {
  margin: 0;
  color: var(--on-dark-muted);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 10vw, 156px);
}

.contact-details {
  position: sticky;
  top: 116px;
}

.contact-details dl {
  margin-block: 42px 0;
}

.contact-block {
  padding-block: 20px;
  border-top: 1px solid var(--rule);
}

.contact-block:last-child {
  border-bottom: 1px solid var(--rule);
}

.contact-block dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-block dd,
.contact-block address {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-style: normal;
}

.contact-block a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent-deep);
  font-weight: 700;
}

.contact-aside {
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  background: var(--paper-deep);
}

.contact-aside strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.contact-form-wrap {
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--rule);
  background: var(--white);
}

.contact-form-wrap > h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  font-weight: 660;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.form-note {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #aeb3aa;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.94rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 164px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(43, 93, 105, 0.15);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.82rem;
}

.form-submit {
  justify-self: start;
  min-width: 190px;
}

.form-note-final {
  margin-top: 24px;
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.form-note-final a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent-deep);
  font-weight: 700;
}

/* Privacy */
.privacy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 790px);
  justify-content: space-between;
  gap: clamp(60px, 11vw, 168px);
}

.privacy-nav {
  position: sticky;
  top: 112px;
  display: grid;
  align-self: start;
  border-top: 1px solid var(--rule);
}

.privacy-nav a {
  display: grid;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.privacy-nav a:hover {
  color: var(--accent-deep);
}

.prose > section {
  padding-block: 48px;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 100px;
}

.prose > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.prose h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent-deep);
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding-top: clamp(68px, 8vw, 112px);
  background: var(--dark-deep);
  color: var(--on-dark);
}

.site-footer .brand {
  color: var(--on-dark);
}

.site-footer .brand-meta {
  color: var(--on-dark-muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(70px, 11vw, 180px);
  padding-bottom: clamp(60px, 7vw, 96px);
}

.footer-brand > p {
  max-width: 490px;
  margin-top: 26px;
  color: var(--on-dark-muted);
  font-size: 0.9rem;
}

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

.footer-heading {
  margin-bottom: 20px;
  color: var(--accent-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
}

.footer-nav a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--on-dark);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent-light);
}

.footer-contact address {
  margin-bottom: 14px;
  color: var(--on-dark-muted);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid var(--rule-dark);
  color: var(--on-dark-muted);
  font-size: 0.7rem;
}

.footer-bottom a {
  min-height: 24px;
  color: var(--on-dark);
}

/* Motion: transforms only, never a persistent clipping container */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word-inner {
  display: inline-block;
}

.js-ready .hero-word .word-inner {
  animation: hero-word-in 720ms cubic-bezier(0.2, 0.72, 0.22, 1) both;
  animation-delay: calc(80ms + (var(--word-index) * 42ms));
}

.js-ready [data-split]:not(.hero-word) .word-inner {
  transform: translateY(112%);
  transition: transform 620ms cubic-bezier(0.2, 0.72, 0.22, 1);
  transition-delay: calc(var(--word-index) * 28ms);
}

.js-ready [data-split]:not(.hero-word).in-view .word-inner {
  transform: translateY(0);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 760ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.js-ready [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

.js-ready body {
  animation: page-enter 420ms ease both;
}

@keyframes hero-word-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Tablet */
@media (max-width: 1180px) {
  .progress-rail {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 50px;
  }

  .display {
    font-size: clamp(3.7rem, 7.5vw, 6.2rem);
  }

  .subhero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 54px;
  }

  .section-heading-row {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
    gap: 52px;
  }

  .thesis-grid,
  .story-grid,
  .markets-intro-grid,
  .corridor-grid,
  .route-grid,
  .contact-layout {
    gap: 64px;
  }

  .service-row {
    gap: 62px;
  }

  .footer-main {
    gap: 72px;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 74px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .header-inner {
    width: min(calc(100% - 32px), 960px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: fixed;
    inset: var(--header-height) 0 auto;
    z-index: 95;
    display: grid;
    align-content: start;
    gap: 30px;
    height: calc(100svh - var(--header-height));
    padding: 34px 20px 40px;
    border-top: 1px solid var(--rule);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .menu-active .nav-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav {
    display: grid;
    gap: 0;
  }

  .primary-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
  }

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

  .header-cta {
    min-height: 54px;
    justify-content: center;
  }

  .home-hero {
    min-height: auto;
    padding-block: 70px 82px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .hero-image-frame {
    height: min(72vw, 650px);
  }

  .scroll-cue {
    display: none;
  }

  .subhero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
  }

  .subhero-side {
    max-width: 680px;
  }

  .about-hero,
  .contact-hero {
    grid-template-columns: 1fr 0.85fr;
    min-height: 640px;
  }

  .about-hero .subhero-grid,
  .contact-hero .subhero-grid {
    padding: 70px 44px 70px var(--gutter);
  }

  .contact-hero .subhero-grid {
    grid-column: 2;
  }

  .contact-hero-media {
    grid-column: 1;
  }

  .section-heading-row,
  .process-intro,
  .scope-note {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .section-heading-row > .lede,
  .section-heading-row > .text-link {
    justify-self: start;
  }

  .thesis-grid,
  .story-grid,
  .markets-intro-grid,
  .corridor-grid,
  .route-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .thesis-sticky,
  .contact-details {
    position: static;
  }

  .story-media {
    width: min(78%, 620px);
  }

  .principles-grid,
  .buyers-grid,
  .working-notes {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .market-preview {
    grid-template-columns: 1fr;
  }

  .market-preview-copy {
    padding: 86px var(--gutter);
  }

  .market-preview-copy > div {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .market-preview-media {
    min-height: 560px;
  }

  .route-photo {
    width: min(82%, 700px);
    justify-self: end;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-copy,
  .service-row:nth-child(even) .service-visual {
    order: initial;
  }

  .service-copy {
    max-width: 760px;
  }

  .service-visual {
    height: min(70vw, 590px);
  }

  .scope-note-copy {
    max-width: 760px;
  }

  .process-step {
    grid-template-columns: 52px minmax(190px, 0.42fr) minmax(0, 1fr);
    gap: 24px;
  }

  .contact-layout {
    gap: 60px;
  }

  .contact-details {
    max-width: 680px;
  }

  .privacy-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 54px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .footer-brand > p {
    max-width: 620px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  .brand-name {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .brand-meta {
    display: none;
  }

  .display {
    font-size: clamp(3rem, 14vw, 4.6rem);
    letter-spacing: -0.06em;
  }

  .section-title,
  .section-title.small {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .eyebrow,
  .overline {
    margin-bottom: 15px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .proof-item,
  .proof-item:first-child {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .hero-image-frame {
    height: 118vw;
    max-height: 610px;
  }

  .hero-caption {
    font-size: 0.59rem;
  }

  .subhero {
    padding-block: 62px 70px;
  }

  .subhero .display {
    font-size: clamp(3.05rem, 14vw, 4.55rem);
  }

  .subhero-media {
    height: 76vw;
    max-height: 450px;
    margin-top: 48px;
  }

  .about-hero,
  .contact-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .about-hero .subhero-grid,
  .contact-hero .subhero-grid {
    display: block;
    order: 1;
    width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
    margin-inline: auto;
    padding: 64px 0 54px;
  }

  .about-hero .subhero-side,
  .contact-hero .subhero-side {
    margin-top: 30px;
  }

  .about-hero-media,
  .contact-hero-media {
    order: 2;
    width: 100%;
    height: 92vw;
    max-height: 520px;
    margin: 0;
  }

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

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

  .capabilities-hero-media {
    height: 72vw;
  }

  .approach-hero-media {
    width: calc(100% - var(--gutter));
    height: 78vw;
  }

  .privacy-hero .subhero-grid {
    grid-template-columns: 1fr;
  }

  .privacy-hero .display {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .section-heading-row,
  .process-intro {
    margin-bottom: 48px;
  }

  .thesis-grid {
    gap: 46px;
  }

  .story-media,
  .route-photo {
    width: 100%;
  }

  .story-grid,
  .corridor-grid,
  .route-grid,
  .markets-intro-grid,
  .contact-layout {
    gap: 50px;
  }

  .story-media img {
    aspect-ratio: 4 / 5;
  }

  .story-media figcaption {
    display: grid;
    gap: 4px;
  }

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

  .clarity-card {
    padding: 28px 22px;
  }

  .corridor-image {
    height: 112vw;
    max-height: 600px;
  }

  .feature-card {
    width: min(82vw, 340px);
  }

  .feature-image {
    height: 58vw;
    max-height: 250px;
  }

  .market-preview-media {
    min-height: 84vw;
  }

  .route-photo {
    height: 106vw;
    max-height: 560px;
  }

  .quote-text {
    font-size: clamp(2.1rem, 10.5vw, 3.4rem);
  }

  .cta-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .cta-grid .button {
    width: 100%;
  }

  .service-row {
    gap: 38px;
  }

  .service-visual {
    height: 112vw;
    max-height: 560px;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .service-points span {
    padding-block: 10px;
    border-bottom: 1px solid var(--rule);
  }

  .scope-note-copy {
    padding: 20px 0 0;
    border-top: 2px solid var(--accent-light);
    border-left: 0;
  }

  .market-card {
    width: min(82vw, 330px);
    min-height: 0;
  }

  .market-card h3 {
    min-height: 0;
  }

  .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px 18px;
  }

  .process-step h3 {
    grid-column: 2;
  }

  .step-detail {
    grid-column: 2;
  }

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

  .contact-form-wrap {
    padding: 26px 20px;
  }

  .form-submit {
    width: 100%;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .privacy-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

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

  .footer-nav a,
  .footer-contact a {
    min-height: 44px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .display {
    font-size: 2.9rem;
  }

  .subhero .display,
  .privacy-hero .display {
    font-size: 2.8rem;
  }

  .section-title,
  .section-title.small {
    font-size: 2.25rem;
  }

  .feature-card,
  .market-card {
    width: 84vw;
  }
}

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

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

  .word-inner,
  .js-ready [data-split]:not(.hero-word) .word-inner,
  .js-ready [data-reveal],
  .js-ready [data-reveal].in-view,
  .js-ready [data-observe]:not(.in-view),
  .feature-card,
  .market-card,
  .principle-card,
  [data-parallax] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  :root {
    --paper: #ffffff;
    --white: #ffffff;
    --ink: #000000;
    --muted: #333333;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body {
    overflow: visible;
    background: #ffffff;
    color: #000000;
  }

  .site-header,
  .progress-rail,
  .menu-toggle,
  .scroller-controls,
  .scroll-cue,
  .button-row,
  .cta-section .button {
    display: none !important;
  }

  .word,
  .word-inner,
  .js-ready [data-split] .word-inner,
  .js-ready [data-reveal],
  .js-ready [data-observe],
  [data-parallax] {
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .page-hero,
  .section,
  .section-ink,
  .section-accent,
  .site-footer {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .section-ink p,
  .section-ink h2,
  .section-ink h3,
  .section-ink em,
  .section-ink .lede,
  .section-ink .eyebrow,
  .site-footer,
  .site-footer a,
  .site-footer p,
  .site-footer address {
    color: #000000 !important;
  }

  .scroller-viewport {
    overflow: visible;
  }

  .drag-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
    padding: 0;
  }

  .feature-card,
  .market-card {
    width: auto;
    break-inside: avoid;
  }

  .section,
  .service-row,
  .process-step,
  .prose > section {
    break-inside: avoid;
  }
}
