:root {
  --ink: #11110f;
  --paper: #eeece4;
  --paper-deep: #d7d3c8;
  --white: #f8f6ef;
  --signal: #ff4a00;
  --signal-dark: #b8320d;
  --blue: #2743dd;
  --muted: #67655e;
  --line-dark: rgba(17, 17, 15, 0.18);
  --line-light: rgba(248, 246, 239, 0.22);
  --container: 1480px;
  --gutter: clamp(20px, 3vw, 48px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button,
select {
  cursor: pointer;
}

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

::selection {
  color: var(--white);
  background: var(--blue);
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
}

.site-header.is-fixed {
  position: fixed;
  color: var(--ink);
  background: rgba(238, 236, 228, 0.96);
  border-bottom-color: var(--line-dark);
  animation: header-in 0.35s var(--ease) both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  min-height: 76px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  min-height: 44px;
  width: max-content;
}

.brand-logo-shell {
  display: grid;
  place-items: center;
  width: 64px;
  height: 38px;
  flex: none;
  background: transparent;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.83rem;
}

.brand-copy small {
  margin-top: 4px;
  opacity: 0.68;
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.desktop-nav {
  display: flex;
  gap: clamp(20px, 2.6vw, 42px);
}

.desktop-nav a,
.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.76rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

.header-cta {
  justify-self: end;
  padding: 10px 2px;
  border-bottom: 1px solid currentColor;
}

.header-cta span {
  display: inline-block;
  margin-left: 8px;
  color: var(--signal);
  transition: transform 0.3s var(--ease);
}

.header-cta:hover span {
  transform: translate(3px, -3px);
}

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

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 110px var(--gutter) 34px;
  color: var(--white);
  background: var(--ink);
}

.mobile-menu-meta {
  color: #8d8a80;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(2.3rem, 10vw, 5.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.mobile-menu nav a span {
  color: var(--signal);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  letter-spacing: 0;
}

.mobile-menu > p {
  margin: 0;
  color: #a8a59c;
  font-size: 0.78rem;
}

.hero {
  min-height: 100svh;
  padding: 118px 0 44px;
  color: var(--white);
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgba(248, 246, 239, 0.08) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(248, 246, 239, 0.08) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), rgba(248, 246, 239, 0.08) 75%, transparent calc(75% + 1px)),
    var(--ink);
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  column-gap: 20px;
  min-height: calc(100svh - 162px);
}

.hero-index {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 26px;
  color: #99968d;
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / 10;
  align-self: center;
  padding: clamp(30px, 5vh, 70px) 0;
}

.eyebrow,
.section-label {
  margin: 0 0 24px;
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bbb8af;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 7px;
  background: var(--signal);
}

.hero h1 {
  max-width: 1250px;
  margin: 0;
  font-size: clamp(4.4rem, 8.55vw, 9.4rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  gap: 36px;
  align-items: end;
  margin-top: clamp(32px, 5vh, 62px);
  padding-left: calc((100% + 20px) / 12 * 3);
}

.hero-intro > p {
  margin: 0;
  color: #c3c0b8;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 800;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

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

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

.button-solid:hover {
  background: #ff7957;
  border-color: #ff7957;
}

.button-line {
  color: var(--white);
  border-color: rgba(248, 246, 239, 0.42);
  background: transparent;
}

.button-line:hover {
  border-color: var(--white);
}

.portrait {
  position: relative;
  z-index: 1;
  grid-column: 10 / 13;
  grid-row: 2;
  align-self: end;
  margin: 0 0 -1px;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 0.77;
  background: #272620;
  overflow: hidden;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(248, 246, 239, 0.24);
  pointer-events: none;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.78) contrast(1.04);
}

.portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  color: #aaa79f;
  font-family: "Courier New", monospace;
  font-size: 0.61rem;
  text-transform: uppercase;
}

.hero-facts {
  grid-column: 1 / 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.hero-facts > div {
  padding: 14px 20px 0 0;
}

.hero-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line-light);
}

.hero-facts dt {
  color: #85827a;
  font-family: "Courier New", monospace;
  font-size: 0.61rem;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-intro {
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 20px;
  align-items: start;
  padding: clamp(88px, 10vw, 150px) 0 clamp(56px, 7vw, 100px);
}

.section-label {
  color: var(--muted);
}

.section-label span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 16px;
  margin-right: 8px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.58rem;
}

.section-intro h2,
.about-heading h2,
.contact-heading h2,
.faq-layout header h2,
.capabilities-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 6.25vw, 7.7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.section-intro > p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-intro-light {
  color: var(--white);
}

.section-intro-light .section-label,
.section-intro-light > p:last-child {
  color: #99968d;
}

.section-intro-light .section-label span {
  color: var(--ink);
  background: var(--signal);
}

.work-section {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

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

.project {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(380px, 5fr);
  min-height: 640px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.project-plate {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 595px;
  padding: clamp(20px, 3vw, 44px);
  overflow: hidden;
}

.project-plate::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42%;
  width: 1px;
  background: currentColor;
  opacity: 0.18;
}

.plate-top,
.plate-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plate-display {
  position: relative;
  z-index: 1;
  max-width: 860px;
  font-size: clamp(4.2rem, 8vw, 9.3rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.09em;
}

.plate-display i {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.project-fitforge .project-plate {
  color: #11120e;
  background: #c9ff47;
}

.project-brule .project-plate {
  color: #f7efe0;
  background: #743621;
}

.project-brule .plate-display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.project-arctic .project-plate {
  color: #08101a;
  background: #75baff;
}

.project-body {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 62px);
  border-left: 1px solid var(--line-light);
}

.project-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.project-heading p,
.concept-label {
  margin: 0;
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.project-heading p {
  color: #98958c;
}

.project-heading p span {
  margin-right: 12px;
  color: var(--signal);
}

.concept-label {
  padding: 4px 7px;
  color: var(--signal);
  border: 1px solid currentColor;
}

.project h3 {
  margin: clamp(40px, 7vw, 100px) 0 24px;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.8;
  letter-spacing: -0.085em;
}

.project-lead {
  max-width: 610px;
  margin: 0;
  color: #aaa79f;
  font-size: 1rem;
}

.project-spec {
  margin: auto 0 30px;
  border-top: 1px solid var(--line-light);
}

.project-spec div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
}

.project-spec dt {
  color: #85827a;
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.project-spec dd {
  margin: 0;
  font-size: 0.79rem;
}

.project-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 13px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.project-actions span {
  color: var(--signal);
  transition: transform 0.25s var(--ease);
}

.project-actions a:hover span {
  transform: translate(4px, -4px);
}

.concept-note {
  max-width: 780px;
  margin: 0 0 0 auto;
  padding: 34px 0 90px;
  color: #8d8a82;
  font-size: 0.76rem;
}

.concept-note strong {
  color: var(--white);
}

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

.service-list {
  padding-bottom: clamp(90px, 12vw, 180px);
  border-top: 2px solid var(--ink);
}

.service {
  display: grid;
  grid-template-columns: 1fr 7fr 3fr;
  gap: 20px;
  padding: clamp(30px, 4.5vw, 62px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-number {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 700;
}

.service-situation {
  margin: 0 0 16px;
  color: var(--signal-dark);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service h3 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.service > div > p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
}

.service ul {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.service li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.capabilities-section {
  padding: clamp(92px, 12vw, 180px) 0;
  color: var(--white);
  background: var(--blue);
}

.capabilities-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 8vw, 130px);
}

.capabilities-copy .section-label {
  color: rgba(248, 246, 239, 0.7);
}

.capabilities-copy .section-label span {
  color: var(--blue);
  background: var(--white);
}

.capabilities-copy > p:last-child {
  max-width: 600px;
  margin: 36px 0 0;
  color: rgba(248, 246, 239, 0.76);
}

.capability-stages {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(248, 246, 239, 0.4);
}

.capability-stages li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(248, 246, 239, 0.4);
}

.capability-stages span,
.capability-stages p {
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
}

.capability-stages span {
  color: #c5ccff;
  text-transform: uppercase;
}

.capability-stages h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.capability-stages p {
  grid-column: 2;
  margin: 10px 0 0;
  color: #c5ccff;
  line-height: 1.7;
}

.process-section {
  padding-bottom: clamp(90px, 12vw, 170px);
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), var(--line-dark) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(50% - 1px), var(--line-dark) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), var(--line-dark) 75%, transparent calc(75% + 1px)),
    var(--paper);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.process-list li {
  display: grid;
  grid-template-columns: 1fr 3fr 5fr 3fr;
  gap: 20px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-number,
.process-output {
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.process-number {
  color: var(--signal-dark);
  font-weight: 700;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.process-list li > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.process-list li > p strong {
  color: var(--ink);
}

.process-list .process-output {
  color: var(--ink);
}

.about-section {
  padding: clamp(88px, 10vw, 150px) 0;
  color: var(--white);
  background: var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 145px);
  align-items: start;
}

.about-heading {
  position: sticky;
  top: 118px;
}

.about-heading .section-label {
  color: #88857d;
}

.about-heading .section-label span {
  color: var(--ink);
  background: var(--signal);
}

.about-lead {
  padding-bottom: 58px;
}

.about-lead p {
  margin: 0 0 28px;
  font-size: clamp(1.45rem, 2.65vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.about-lead p:last-child {
  color: #96938b;
}

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

.experience article {
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--line-light);
}

.experience article > p:first-child {
  margin: 0 0 26px;
  color: #96938b;
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.experience article > p:first-child span {
  display: inline-block;
  min-width: 150px;
  color: var(--signal);
}

.experience h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.experience article > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #96938b;
  font-size: 0.86rem;
}

.faq-section {
  padding: clamp(84px, 10vw, 145px) 0;
  background: var(--paper-deep);
}

.faq-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(55px, 9vw, 145px);
  align-items: start;
}

.faq-layout header {
  position: sticky;
  top: 118px;
}

.faq-layout header h2 {
  font-size: clamp(3rem, 5.2vw, 6.5rem);
}

.accordion {
  border-top: 2px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 27px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.faq-item button i {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--signal-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%);
}

.faq-answer p {
  max-width: 800px;
  margin: -2px 45px 28px 0;
  color: #5d5b54;
}

.contact-section {
  padding: clamp(88px, 10vw, 150px) 0 72px;
  color: var(--white);
  background: var(--ink);
}

.contact-heading {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 20px;
  padding-bottom: clamp(60px, 9vw, 120px);
}

.contact-heading .section-label {
  color: #88857d;
}

.contact-heading .section-label span {
  color: var(--ink);
  background: var(--signal);
}

.contact-heading h2 {
  max-width: 1250px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
  border-top: 1px solid var(--line-light);
  padding-top: 30px;
}

.contact-direct {
  position: sticky;
  top: 118px;
}

.contact-direct > p {
  max-width: 390px;
  margin: 0 0 38px;
  color: #99968d;
}

.contact-direct address {
  font-style: normal;
  border-top: 1px solid var(--line-light);
}

.contact-direct address > a,
.contact-direct address > div {
  display: grid;
  grid-template-columns: 84px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-direct address > a {
  min-height: 52px;
}

.contact-direct address span {
  color: #85827a;
  font-family: "Courier New", monospace;
  font-size: 0.61rem;
  text-transform: uppercase;
}

.contact-direct address strong {
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.contact-direct address i {
  color: var(--signal);
  font-style: normal;
}

.contact-form {
  border-top: 2px solid var(--white);
}

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

.field {
  position: relative;
  padding: 25px 0 18px;
  border-bottom: 1px solid var(--line-light);
}

.field label {
  display: block;
  margin-bottom: 10px;
  color: #97948c;
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field label span {
  color: var(--signal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  font-size: 1rem;
}

.field input,
.field select {
  min-height: 44px;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--signal) 50%),
    linear-gradient(135deg, var(--signal) 50%, transparent 50%);
  background-position:
    calc(100% - 13px) 50%,
    calc(100% - 8px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field select option {
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 160px;
  padding: 10px 0;
  resize: vertical;
}

.field textarea::placeholder {
  color: #66645e;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
}

.field:focus-within {
  border-bottom-color: var(--signal);
}

.field:focus-within label {
  color: var(--white);
}

.field .is-invalid {
  color: #ffaaa0;
}

.field:has(.is-invalid) {
  border-bottom-color: #ff7162;
}

.field-help,
.field-error {
  display: block;
  min-height: 16px;
  margin-top: 7px;
  font-size: 0.67rem;
}

.field-help {
  color: #85827a;
}

.field-error {
  color: #ff8d81;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding-top: 24px;
}

.form-footer p {
  max-width: 450px;
  margin: 0;
  color: #85827a;
  font-size: 0.68rem;
}

.form-footer .button {
  min-width: 220px;
}

.form-footer .button i {
  font-style: normal;
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  padding: 0;
  font-size: 0.78rem;
}

.form-status.is-success,
.form-status.is-error {
  padding: 12px 14px;
  border-left: 3px solid;
}

.form-status.is-success {
  color: #b8f6bf;
  border-color: #77d782;
  background: rgba(119, 215, 130, 0.09);
}

.form-status.is-error {
  color: #ffb0a7;
  border-color: #ff7162;
  background: rgba(255, 113, 98, 0.09);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(35px, 7vw, 110px);
  align-items: start;
  padding: 48px 0;
}

.footer-main > div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  max-width: 460px;
}

.brand-logo-shell-footer {
  width: 76px;
  height: 44px;
}

.footer-main p {
  margin: 0;
  color: #96938b;
  font-size: 0.76rem;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 9px 30px;
  font-size: 0.75rem;
}

.footer-main nav a,
.back-to-top {
  min-height: 44px;
}

.footer-main nav a {
  display: inline-flex;
  align-items: center;
}

.footer-main a:hover {
  color: var(--signal);
}

.back-to-top {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
}

.back-to-top span {
  color: var(--signal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 17px 0 24px;
  color: #85827a;
  border-top: 1px solid var(--line-light);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

@media (max-width: 1180px) {
  .hero-copy {
    grid-column: 1 / 11;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 9.6vw, 8.5rem);
  }

  .hero-intro {
    padding-left: 0;
  }

  .portrait {
    grid-column: 10 / 13;
  }

  .project {
    grid-template-columns: 7fr 5fr;
  }

  .project h3 {
    margin-top: 52px;
  }

  .service {
    grid-template-columns: 60px 1fr 260px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-layout {
    grid-template-rows: auto;
    min-height: 0;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .portrait {
    grid-column: 8 / 13;
    grid-row: auto;
    margin-top: 30px;
  }

  .hero-facts {
    grid-column: 1 / 8;
    align-self: end;
  }

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

  .hero-facts > div {
    padding: 11px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-facts > div + div {
    padding-left: 0;
    border-left: 0;
  }

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

  .section-intro h2 {
    max-width: 850px;
  }

  .section-intro > p:last-child {
    max-width: 650px;
  }

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

  .project-plate {
    min-height: min(70vw, 610px);
  }

  .project-body {
    min-height: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

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

  .service ul {
    grid-column: 2;
    margin-top: 22px;
  }

  .capabilities-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-heading,
  .faq-layout header,
  .contact-direct {
    position: static;
  }

  .process-list li {
    grid-template-columns: 55px 1.4fr 3fr;
  }

  .process-output {
    grid-column: 3;
  }

  .contact-heading {
    grid-template-columns: 1fr;
  }

  .contact-direct {
    max-width: 650px;
  }

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

  .footer-main nav {
    grid-column: 1;
    grid-row: 2;
  }

  .back-to-top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 16px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .brand-copy {
    display: none;
  }

  .brand-logo-shell {
    width: 60px;
    height: 36px;
  }

  .hero {
    padding: 88px 0 22px;
    background:
      linear-gradient(90deg, transparent calc(50% - 1px), rgba(248, 246, 239, 0.08) 50%, transparent calc(50% + 1px)),
      var(--ink);
  }

  .hero-index {
    padding-bottom: 20px;
  }

  .hero-index span:last-child {
    display: none;
  }

  .hero-copy {
    padding: 28px 0 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.6rem);
    line-height: 0.84;
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 32px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-column: 1 / 7;
    padding-top: 26px;
  }

  .portrait {
    grid-column: 7 / 13;
    margin-top: 48px;
  }

  .portrait figcaption {
    display: grid;
    gap: 2px;
  }

  .section-intro {
    padding: 76px 0 48px;
  }

  .section-intro h2,
  .about-heading h2,
  .contact-heading h2,
  .faq-layout header h2,
  .capabilities-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.7rem);
  }

  .project {
    padding: 14px 0;
  }

  .project-plate {
    min-height: clamp(330px, 112vw, 430px);
  }

  .plate-display {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }

  .plate-top,
  .plate-bottom {
    display: grid;
    gap: 3px;
  }

  .plate-top span:last-child,
  .plate-bottom span:last-child {
    text-align: right;
  }

  .project-body {
    min-height: 0;
    padding: 28px 4px 16px;
  }

  .project-heading {
    align-items: flex-start;
  }

  .project h3 {
    margin-top: 58px;
    font-size: 4.2rem;
  }

  .project-spec {
    margin-top: auto;
  }

  .concept-note {
    padding-bottom: 75px;
  }

  .service {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .service h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .service ul {
    grid-column: 2;
  }

  .capabilities-section,
  .about-section,
  .faq-section,
  .contact-section {
    padding: 80px 0;
  }

  .capability-stages li {
    grid-template-columns: 1fr;
  }

  .capability-stages p {
    grid-column: 1;
  }

  .process-list li {
    grid-template-columns: 34px 1fr;
    gap: 13px;
    padding: 25px 0;
  }

  .process-list li > p,
  .process-output {
    grid-column: 2;
  }

  .about-lead p {
    font-size: 1.42rem;
  }

  .experience article > p:first-child span {
    display: block;
    min-width: 0;
    margin-bottom: 5px;
  }

  .faq-layout {
    gap: 45px;
  }

  .faq-answer p {
    margin-right: 0;
  }

  .contact-heading {
    padding-bottom: 60px;
  }

  .contact-layout {
    gap: 60px;
  }

  .contact-direct address > a,
  .contact-direct address > div {
    grid-template-columns: 70px 1fr 14px;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    min-width: 0;
  }

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

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

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

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(2.8rem, 15.2vw, 3.45rem);
  }

  .hero-facts {
    grid-column: 1 / -1;
  }

  .portrait {
    grid-column: 5 / 13;
    margin-top: 30px;
  }

  .project h3 {
    font-size: 3.5rem;
  }

  .contact-direct address > a,
  .contact-direct address > div {
    grid-template-columns: 62px minmax(0, 1fr) 12px;
    gap: 8px;
  }
}

@media (max-height: 520px) and (max-width: 920px) {
  .mobile-menu {
    justify-content: flex-start;
    gap: 20px;
    padding-top: 82px;
    overflow-y: auto;
  }

  .mobile-menu nav a {
    min-height: 44px;
    padding: 5px 0;
    font-size: clamp(1.65rem, 7.5vh, 2.4rem);
  }

  .mobile-menu > p {
    margin-top: auto;
  }
}

@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;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .brand-logo-shell,
  .section-label span,
  .eyebrow::before {
    border: 1px solid currentColor;
  }
}

.error-page {
  min-height: 100svh;
  color: var(--white);
  background: var(--ink);
}

.error-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

.error-code {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  font-size: clamp(8rem, 25vw, 28rem);
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: -0.12em;
  overflow: hidden;
}

.error-copy {
  align-self: center;
  max-width: 690px;
  padding: var(--gutter);
}

.error-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
}

.error-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 34px 0;
  color: #aaa79f;
}

@media (max-width: 760px) {
  .error-shell {
    grid-template-columns: 1fr;
  }

  .error-code {
    min-height: 42svh;
  }

  .error-copy {
    padding-block: 60px;
  }
}
