:root {
  --ink: #11110f;
  --ink-soft: #1a1a17;
  --paper: #f3f0e9;
  --paper-bright: #fbfaf6;
  --paper-muted: #e7e3da;
  --line: rgba(17, 17, 15, 0.18);
  --line-dark: rgba(255, 255, 255, 0.17);
  --muted: #66645e;
  --muted-dark: #aaa79f;
  --signal: #e94f2b;
  --signal-deep: #b73218;
  --header-height: 76px;
  --shell: min(1440px, calc(100vw - 56px));
  --display: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow: 0 36px 90px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--signal); color: var(--ink); }

section { scroll-margin-top: calc(var(--header-height) + 18px); }
.shell { width: var(--shell); margin-inline: auto; }
.page-top { position: absolute; inset: 0 auto auto 0; width: 1px; height: 1px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 18px;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: white;
  transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(17, 17, 15, .97);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  width: max-content;
}
.brand strong {
  font-size: 18px;
  letter-spacing: -0.05em;
  line-height: 1;
}
.brand span {
  font-size: 10px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .68;
}
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: .04em;
  opacity: .68;
  transition: opacity 160ms ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 220ms var(--ease-out);
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="location"] { opacity: 1; }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="location"]::after { right: 0; }
.header-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .04em;
}
.header-link svg { width: 18px; height: 18px; transition: transform 180ms var(--ease-out); }
.header-link:hover svg { transform: translateX(4px); }
.menu-button { display: none; }

.menu-dialog {
  width: min(100%, 620px);
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  color: var(--paper-bright);
  background: var(--ink);
}
.menu-dialog::backdrop { background: rgba(0,0,0,.66); }
.menu-dialog[open] { display: grid; grid-template-rows: auto 1fr auto; }
.menu-dialog__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-dark);
}
.menu-dialog__bar p { margin: 0; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted-dark); }
.menu-dialog__close { border: 0; background: none; padding: 8px 0; cursor: pointer; font-size: 13px; }
.menu-dialog__nav { display: grid; align-content: center; padding: 40px 28px; }
.menu-dialog__nav a {
  display: flex;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(32px, 7vw, 56px);
  letter-spacing: -.045em;
  line-height: 1;
}
.menu-dialog__footer { display: grid; gap: 18px; padding: 26px 28px 32px; border-top: 1px solid var(--line-dark); }
.menu-dialog__footer p { max-width: 44ch; margin: 0; color: var(--muted-dark); font-size: 14px; }
.menu-dialog__footer a { width: max-content; font-size: 14px; border-bottom: 1px solid currentColor; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  color: white;
  background: var(--ink);
  padding-top: var(--header-height);
}
.hero__media {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 auto;
  width: min(72vw, 1380px);
  overflow: hidden;
}
.hero__media picture,
.hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: 50% 52%; filter: contrast(1.04); }
.hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #11110f 0%, #11110f 28%, rgba(17,17,15,.92) 42%, rgba(17,17,15,.32) 72%, rgba(17,17,15,.18) 100%),
    linear-gradient(0deg, rgba(17,17,15,.76) 0%, transparent 38%);
}
.hero__inner {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: clamp(90px, 12vh, 160px) clamp(250px, 26vh, 340px);
}
.hero__copy { width: min(1100px, 80vw); }
.kicker {
  margin: 0 0 28px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.64);
}
.kicker--dark { color: var(--muted); }
.hero__title {
  margin: 0;
  max-width: none;
  font-size: clamp(58px, 6.4vw, 100px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.072em;
}
.hero__title span { display: block; }
@media (min-width: 881px) { .hero__title span { white-space: nowrap; } }
.hero__title span:last-child { color: #c9c6bf; }
.hero__summary {
  max-width: 48ch;
  margin: 34px 0 0;
  color: rgba(255,255,255,.75);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
}
.hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .02em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}
.button svg { width: 18px; height: 18px; transition: transform 180ms var(--ease-out); }
.button:hover svg { transform: translateX(4px); }
.button--signal { min-width: 220px; color: var(--ink); background: var(--signal); }
.button--signal:hover { background: var(--signal-deep); }
.button--dark { color: white; background: var(--ink); min-width: 200px; }
.button--dark:hover { background: #2a2925; }
.quiet-link { font-size: 13px; color: rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 3px; }
.quiet-link:hover { color: white; border-color: white; }

.operating-brief-wrap {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  transform: translateY(48%);
}
.operating-brief {
  position: relative;
  min-height: 250px;
  display: grid;
  grid-template-columns: .75fr 1.6fr 1.2fr 92px;
  background: var(--paper-bright);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.operating-brief > * { padding: 34px; }
.operating-brief__label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}
.operating-brief__label span,
.company__principle span,
.contact-sheet__direct span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.operating-brief__label p { margin: 0; max-width: 15ch; font-size: 14px; line-height: 1.35; }
.operating-brief__statement { display: flex; align-items: center; }
.operating-brief__statement p {
  margin: 0;
  max-width: 16ch;
  font-family: var(--serif);
  font-size: clamp(33px, 3vw, 50px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.operating-brief__steps {
  list-style: none;
  margin: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  border-left: 1px solid var(--line);
}
.operating-brief__steps li { display: grid; gap: 2px; }
.operating-brief__steps span { font-size: 13px; font-weight: 600; }
.operating-brief__steps small { color: var(--muted); font-size: 12px; }
.operating-brief__link {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--signal);
  transition: background-color 180ms ease;
}
.operating-brief__link:hover { background: var(--signal-deep); }
.operating-brief__link svg { width: 28px; height: 28px; transition: transform 220ms var(--ease-out); }
.operating-brief__link:hover svg { transform: translateX(5px); }

.company {
  padding: clamp(260px, 26vw, 390px) 0 clamp(110px, 12vw, 180px);
  background: var(--paper-bright);
}
.company__layout {
  display: grid;
  grid-template-columns: 1.5fr .72fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}
.section-intro h2,
.capabilities__intro h2,
.work__header h2,
.process__header h2,
.contact-sheet__intro h2 {
  margin: 0;
  font-size: clamp(44px, 5.1vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 500;
}
.company__copy { padding-top: 40px; }
.company__copy > p { max-width: 52ch; margin: 0; color: var(--muted); }
.company__copy .lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.25;
}
.company__principle {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.company__principle p { margin: 0; max-width: 30ch; font-size: 14px; }

.capabilities { padding: clamp(110px, 12vw, 180px) 0 clamp(120px, 14vw, 210px); background: var(--paper); }
.capabilities__layout { display: grid; grid-template-columns: .72fr 1.55fr; gap: clamp(44px, 6.4vw, 110px); align-items: start; }
.capabilities__intro { position: sticky; top: calc(var(--header-height) + 56px); }
.capabilities__intro h2 { max-width: 10ch; font-size: clamp(40px, 4.5vw, 68px); }
.capabilities__intro > p:not(.kicker) { max-width: 40ch; margin: 28px 0 0; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 32px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 13px; }
.text-link svg { width: 18px; height: 18px; transition: transform 180ms var(--ease-out); }
.text-link:hover svg { transform: translateX(4px); }
.capability-stack { position: relative; display: grid; gap: 0; padding-top: 10px; }
.capability-card {
  --card-top: calc(var(--header-height) + 28px + (var(--stack-index) * 12px));
  position: sticky;
  top: var(--card-top);
  z-index: calc(10 + var(--stack-index));
  min-height: min(600px, 70vh);
  margin-top: -68px;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(17,17,15,.18);
  box-shadow: 0 24px 64px rgba(17,17,15,.11);
  container-type: inline-size;
}
.capability-card:first-child { margin-top: 0; }
.capability-card__content { padding: clamp(34px, 5vw, 72px); }
.capability-card__discipline {
  margin: 0 0 30px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: currentColor;
  opacity: .6;
}
.capability-card h3 { margin: 0; max-width: 11ch; font-size: clamp(38px, 4.2vw, 66px); line-height: .98; letter-spacing: -.055em; font-weight: 500; }
.capability-card__content > p:not(.capability-card__discipline) { max-width: 48ch; margin: 24px 0 0; color: currentColor; opacity: .7; }
.capability-card ul { list-style: none; padding: 0; margin: 38px 0 0; display: grid; gap: 12px; }
.capability-card li { position: relative; padding-left: 18px; font-size: 13px; }
.capability-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: currentColor; }
.capability-card--event { grid-template-columns: 1.05fr .95fr; color: white; background: var(--ink); }
.capability-card--event .capability-card__media { margin: 0; height: 100%; }
.capability-card--event .capability-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 50%; filter: grayscale(1) contrast(1.12); transition: transform 900ms var(--ease-out); }
.capability-card--event:hover img { transform: scale(1.035); }
.capability-card--procurement { grid-template-columns: .95fr 1.05fr; background: var(--paper-bright); }
.procurement-path { display: grid; align-content: center; gap: 0; padding: 48px; background: var(--signal); color: white; }
.procurement-path div { padding: 26px 0; border-bottom: 1px solid rgba(17,17,15,.28); }
.procurement-path div:last-child { border-bottom: 0; }
.procurement-path span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 600; }
.procurement-path p { margin: 0; max-width: 34ch; font-size: 13px; color: rgba(17,17,15,.72); }
.capability-card--trade { grid-template-columns: 1.12fr .88fr; background: var(--ink); color: white; }
.capability-card__full-media { margin: 0; min-height: 600px; }
.capability-card__full-media img { width: 100%; height: 100%; object-fit: cover; }
.capability-card__floating-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(34px, 5vw, 72px); }
.capability-card__floating-copy h3 { max-width: 9ch; }
.capability-card__floating-copy > p:last-child { margin: 26px 0 0; color: rgba(255,255,255,.68); }
.capability-card--digital { grid-template-columns: 1fr 1fr; color: white; background: #20211f; }
.systems-map { position: relative; min-height: 540px; margin: 42px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); }
.systems-map__axis { position: absolute; background: rgba(255,255,255,.18); }
.systems-map__axis--x { left: 0; right: 0; top: 50%; height: 1px; }
.systems-map__axis--y { top: 0; bottom: 0; left: 50%; width: 1px; }
.systems-map__item { position: absolute; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.systems-map__item::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border: 1px solid var(--signal); }
.systems-map__item--a { left: 8%; top: 12%; }
.systems-map__item--b { right: 8%; top: 28%; }
.systems-map__item--c { left: 12%; bottom: 28%; }
.systems-map__item--d { right: 12%; bottom: 14%; }
.systems-map__item--e { left: 54%; top: 56%; }
.systems-map strong { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); max-width: 7ch; font-family: var(--serif); font-size: clamp(34px, 4cqi, 58px); line-height: .98; font-weight: 400; text-align: center; }
.capability-card--social { grid-template-columns: .9fr 1.1fr; background: var(--paper-bright); }
.capability-card__media--portrait { margin: 0; height: 100%; min-height: 580px; }
.capability-card__media--portrait img { width: 100%; height: 100%; object-fit: cover; }

.work { padding: clamp(110px, 12vw, 180px) 0 clamp(120px, 14vw, 210px); color: white; background: var(--ink); }
.work__header { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; }
.work__header h2 { font-size: clamp(52px, 6vw, 94px); }
.work__header > p { margin: 0 0 7px; max-width: 38ch; color: var(--muted-dark); }
.featured-case { position: relative; margin-top: clamp(64px, 8vw, 110px); min-height: 720px; }
.featured-case__media { width: 77%; margin: 0; overflow: hidden; }
.featured-case__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: grayscale(1) contrast(1.12); transition: transform 900ms var(--ease-out); }
.featured-case:hover .featured-case__media img { transform: scale(1.025); }
.featured-case__panel {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(470px, 38vw);
  padding: clamp(38px, 5vw, 68px);
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
}
.case-type { margin: 0 0 26px; font-family: var(--mono); font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .11em; color: inherit; opacity: .58; }
.featured-case__panel h3,
.case h3 { margin: 0; font-size: clamp(34px, 3.6vw, 56px); line-height: .98; letter-spacing: -.052em; font-weight: 500; }
.featured-case__panel > p:not(.case-type) { margin: 24px 0 0; color: var(--muted); }
.featured-case__panel dl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 42px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.featured-case__panel dl div { display: grid; gap: 5px; }
.featured-case__panel dt { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.featured-case__panel dd { margin: 0; font-size: 12px; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-top: clamp(80px, 10vw, 150px); align-items: start; }
.case { position: relative; }
.case--systems { grid-column: 1 / span 7; min-height: 520px; padding: clamp(44px, 5vw, 72px); color: var(--ink); background: var(--signal); }
.case--systems h3 { max-width: 9ch; }
.case--systems > p:not(.case-type) { max-width: 48ch; margin: 28px 0 0; color: rgba(17,17,15,.72); }
.case--systems ul { list-style: none; margin: 56px 0 0; padding: 0; display: grid; gap: 11px; }
.case--systems li { font-size: 13px; }
.case--systems li::before { content: "+"; margin-right: 10px; }
.case--social { grid-column: 8 / -1; margin-top: -70px; color: var(--ink); background: var(--paper-bright); }
.case--social figure { margin: 0; height: 470px; overflow: hidden; }
.case--social figure img { width: 100%; height: 100%; object-fit: cover; }
.case--social > div { padding: 34px; }
.case--social h3 { font-size: clamp(30px, 3vw, 44px); }
.case--social > div > p:last-child { margin: 18px 0 0; color: var(--muted); }
.case--trade { grid-column: 3 / -1; display: grid; grid-template-columns: 1.18fr .82fr; margin-top: 56px; background: #222320; }
.case--trade figure { margin: 0; height: 600px; overflow: hidden; }
.case--trade figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 56%; }
.case--trade__copy { align-self: end; padding: clamp(40px, 5vw, 70px); }
.case--trade h3 { max-width: 9ch; }
.case--trade__copy > p:last-child { margin: 24px 0 0; color: var(--muted-dark); }
.work__note { margin-top: 58px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.work__note p { margin: 0; max-width: 68ch; color: var(--muted-dark); font-size: 12px; }

.process { padding: clamp(110px, 12vw, 180px) 0 clamp(120px, 14vw, 200px); background: var(--paper-bright); }
.process__layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(60px, 8vw, 140px); }
.process__header { position: sticky; top: calc(var(--header-height) + 56px); align-self: start; }
.process__header h2 { max-width: 11ch; }
.process__header > p:last-child { max-width: 38ch; margin: 28px 0 0; color: var(--muted); }
.process__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.process__steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  min-height: 180px;
  padding: 32px;
  background: var(--paper);
}
.process__steps li:nth-child(2) { margin-left: 6%; }
.process__steps li:nth-child(3) { margin-left: 12%; }
.process__steps li:nth-child(4) { margin-left: 18%; background: var(--ink); color: white; }
.process__steps > li > span { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--signal); }
.process__steps h3 { margin: 0; font-size: clamp(26px, 2.4vw, 38px); line-height: 1.05; letter-spacing: -.04em; font-weight: 500; }
.process__steps p { max-width: 44ch; margin: 16px 0 0; color: var(--muted); }
.process__steps li:nth-child(4) p { color: var(--muted-dark); }

.contact { padding: clamp(100px, 10vw, 150px) 0 0; background: var(--signal); }
.contact-sheet {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 7vw, 110px);
  padding: clamp(42px, 6vw, 90px);
  background: var(--paper-bright);
  box-shadow: 0 36px 100px rgba(53,11,2,.24);
  transform: translateY(76px);
}
.contact-sheet__intro h2 { max-width: 10ch; font-size: clamp(44px, 5.4vw, 76px); }
.contact-sheet__intro > p:not(.kicker) { max-width: 48ch; margin: 28px 0 0; color: var(--muted); }
.contact-sheet__direct { display: grid; gap: 0; margin-top: 48px; border-top: 1px solid var(--line); }
.contact-sheet__direct a { display: grid; grid-template-columns: 90px 1fr; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-sheet__direct strong { font-size: 13px; font-weight: 500; overflow-wrap: anywhere; }
.inquiry-form { display: grid; align-content: start; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field > span { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17,17,15,.35);
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--signal); box-shadow: 0 1px 0 var(--signal); }
.field textarea::placeholder { color: #96938b; }
.field small { min-height: 16px; color: #9d2410; font-size: 11px; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #9d2410; }
.inquiry-form__footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 8px; }
.inquiry-form__footer p { margin: 0; min-height: 20px; color: var(--muted); font-size: 12px; }

.site-footer { padding: 150px 0 38px; color: white; background: var(--ink); }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: end; }
.brand--footer { color: white; }
.site-footer p { margin: 0; color: var(--muted-dark); font-size: 11px; }
.site-footer p:nth-of-type(2) { justify-self: end; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@container (max-width: 720px) {
  .capability-card { grid-template-columns: 1fr; }
  .capability-card__media,
  .capability-card__full-media,
  .capability-card__media--portrait { min-height: 340px; height: 340px; }
  .procurement-path { padding: 24px 36px 42px; }
  .systems-map { min-height: 360px; }
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 1120px); }
  .desktop-nav { gap: 18px; }
  .hero__copy { width: min(980px, 84vw); }
  .operating-brief { grid-template-columns: .72fr 1.45fr 1.1fr 78px; }
  .operating-brief > * { padding: 26px; }
  .capabilities__layout { grid-template-columns: .62fr 1.38fr; gap: 44px; }
  .capability-card { min-height: 560px; }
  .systems-map { margin: 28px; }
  .featured-case { min-height: 640px; }
  .case--social figure { height: 390px; }
}

@media (max-width: 880px) {
  :root { --header-height: 68px; --shell: calc(100vw - 32px); }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .desktop-nav,
  .header-link { display: none; }
  .menu-button {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    cursor: pointer;
  }
  .menu-button span { width: 18px; height: 1px; background: currentColor; }
  .hero { min-height: auto; }
  .hero__media { width: 100%; inset: 0; opacity: .68; }
  .hero__media img { object-position: 56% 50%; }
  .hero__veil { background: linear-gradient(0deg, rgba(17,17,15,.98) 0%, rgba(17,17,15,.84) 42%, rgba(17,17,15,.22) 100%); }
  .hero__inner { min-height: 920px; align-items: end; padding-block: 120px 330px; }
  .hero__copy { width: 100%; }
  .hero__title { max-width: 11ch; font-size: clamp(52px, 12vw, 86px); }
  .hero__summary { max-width: 42ch; }
  .operating-brief-wrap { transform: translateY(54%); }
  .operating-brief { min-height: 0; grid-template-columns: 1fr 1.4fr 64px; }
  .operating-brief__label { display: none; }
  .operating-brief__statement p { font-size: clamp(28px, 5vw, 42px); }
  .operating-brief__steps { padding: 24px; }
  .operating-brief__link { grid-column: 3; grid-row: 1; }
  .company { padding-top: 300px; }
  .company__layout,
  .capabilities__layout,
  .process__layout,
  .contact-sheet { grid-template-columns: 1fr; }
  .company__copy { padding-top: 0; }
  .capabilities__intro,
  .process__header { position: static; }
  .capabilities__intro { padding-bottom: 70px; }
  .capability-card {
    position: relative;
    top: auto;
    min-height: 0;
    margin-top: -28px;
  }
  .capability-card:first-child { margin-top: 0; }
  .work__header { grid-template-columns: 1fr; align-items: start; }
  .work__header > p { margin-top: 16px; }
  .featured-case { min-height: 0; display: grid; }
  .featured-case__media { width: 92%; }
  .featured-case__panel { position: relative; width: 78%; margin: -90px 0 0 auto; }
  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .case--systems { grid-column: 1 / -2; }
  .case--social { grid-column: 3 / -1; margin-top: -40px; }
  .case--trade { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .process__steps li:nth-child(n) { margin-left: 0; }
  .contact-sheet { transform: translateY(58px); }
  .site-footer { padding-top: 130px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 24px); }
  .brand span { display: none; }
  .hero__inner { min-height: 820px; padding: 100px 0 360px; align-items: end; }
  .hero__title { font-size: clamp(46px, 14.5vw, 66px); line-height: .91; }
  .hero__summary { margin-top: 24px; font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }
  .button--signal { min-width: 100%; }
  .operating-brief-wrap { transform: translateY(60%); }
  .operating-brief { grid-template-columns: 1fr 56px; }
  .operating-brief__statement { grid-column: 1; padding: 28px; }
  .operating-brief__statement p { max-width: 12ch; font-size: 30px; }
  .operating-brief__steps { grid-column: 1 / -1; grid-row: 2; grid-template-columns: 1fr 1fr 1fr; border-left: 0; border-top: 1px solid var(--line); padding: 20px 24px; gap: 10px; }
  .operating-brief__steps small { display: none; }
  .operating-brief__link { grid-column: 2; grid-row: 1; }
  .company { padding-top: 330px; }
  .company__layout { gap: 42px; }
  .section-intro h2,
  .capabilities__intro h2,
  .work__header h2,
  .process__header h2,
  .contact-sheet__intro h2 { font-size: clamp(40px, 12vw, 58px); }
  .company__copy .lead { font-size: 25px; }
  .company__principle { grid-template-columns: 1fr; gap: 10px; }
  .capabilities { padding-top: 92px; }
  .capability-card { margin-top: -12px; box-shadow: 0 18px 48px rgba(17,17,15,.12); }
  .capability-card__content,
  .capability-card__floating-copy { padding: 30px 24px; }
  .capability-card h3 { font-size: 40px; }
  .capability-card__full-media,
  .capability-card__media--portrait,
  .capability-card__media { height: 300px; min-height: 300px; }
  .procurement-path { padding: 12px 24px 24px; }
  .systems-map { margin: 0 24px 24px; min-height: 320px; }
  .featured-case__media { width: 100%; }
  .featured-case__panel { width: calc(100% - 24px); margin-top: -48px; padding: 30px 24px; }
  .featured-case__panel h3,
  .case h3 { font-size: 38px; }
  .work-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 80px; }
  .case--systems,
  .case--social,
  .case--trade { grid-column: auto; margin-top: 0; }
  .case--systems { min-height: 0; padding: 34px 24px 48px; }
  .case--social figure { height: 360px; }
  .case--trade { grid-template-columns: 1fr; }
  .case--trade figure { height: 440px; }
  .case--trade__copy { padding: 34px 24px 44px; }
  .process__steps li { grid-template-columns: 46px 1fr; gap: 12px; min-height: 0; padding: 26px 22px; }
  .process__steps h3 { font-size: 28px; }
  .contact { padding-top: 72px; }
  .contact-sheet { width: 100%; padding: 36px 24px 40px; transform: translateY(48px); }
  .field-row { grid-template-columns: 1fr; }
  .inquiry-form__footer { align-items: stretch; flex-direction: column; }
  .button--dark { width: 100%; }
  .site-footer { padding-top: 110px; }
  .site-footer__inner { grid-template-columns: 1fr auto; }
  .site-footer__inner > p:first-of-type { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
