:root {
  --navy: #0b2f4f;
  --navy-deep: #061f35;
  --navy-soft: #174866;
  --gold: #d19a2f;
  --gold-deep: #a87316;
  --ivory: #f7f2ea;
  --paper: #fffdf9;
  --ink: #102d43;
  --muted: #62717c;
  --line: rgba(11, 47, 79, 0.18);
  --white-line: rgba(255, 255, 255, 0.18);
  --success: #176b4d;
  --danger: #a33a32;
  --shadow: 0 24px 70px rgba(6, 31, 53, 0.17);
  --shell: min(1280px, calc(100% - 48px));
  --z-base: 0;
  --z-card: 10;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Be Vietnam Pro", "Avenir Next", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #efb644;
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 4.8vw, 5.4rem);
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(96px, 11vw, 168px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--navy);
  font-weight: 700;
  transition: transform 200ms var(--ease);
}

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

.eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.ink {
  color: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 var(--paper);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), color 240ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 -58px 0 0 var(--paper), 0 14px 34px rgba(0, 0, 0, 0.14);
}

.button:active {
  transform: scale(0.98);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.85rem;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--paper);
}

.button-outline:hover {
  color: var(--navy-deep);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--paper);
  font-weight: 700;
  transition: border-color 220ms var(--ease), color 220ms var(--ease);
}

.text-link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 220ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(5px);
}

.text-link.dark {
  border-color: var(--line);
  color: var(--navy);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-sticky);
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: rgba(247, 242, 234, 0.94);
  box-shadow: 0 12px 32px rgba(6, 31, 53, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  min-height: 88px;
  grid-template-columns: 238px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: max-content;
  min-height: 52px;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand-name {
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-name small {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.site-header.is-scrolled .brand-name,
.site-header.menu-open .brand-name {
  color: var(--navy);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 36px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-header.is-scrolled .site-nav a,
.site-header.menu-open .site-nav a {
  color: var(--navy);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.035), transparent 45%),
    radial-gradient(circle at 70% 28%, rgba(209, 154, 47, 0.13), transparent 36%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100dvh - 142px);
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  align-items: center;
  padding-top: 110px;
  padding-bottom: 80px;
}

.hero-copy-inner {
  max-width: 760px;
  padding-right: clamp(24px, 7vw, 112px);
}

.hero h1 {
  margin-bottom: 30px;
  color: var(--paper);
  font-size: clamp(3.2rem, 6.8vw, 7.6rem);
  line-height: 0.93;
  letter-spacing: -0.062em;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255, 253, 249, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 47%;
  height: calc(100% - 114px);
  background: #dce5ea;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 8% 63%, 0 45%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 31, 53, 0.28), transparent 30%, rgba(6, 31, 53, 0.06));
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 64px);
  bottom: 58px;
  display: grid;
  width: 146px;
  aspect-ratio: 1;
  place-content: center;
  transform: rotate(-4deg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(6, 31, 53, 0.84);
  color: var(--paper);
  text-align: center;
  text-transform: uppercase;
}

.hero-stamp span,
.hero-stamp strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.hero-stamp strong {
  color: var(--gold);
  font-size: 1.3rem;
}

.cmyk-strip {
  position: absolute;
  z-index: 2;
  top: 124px;
  right: 34px;
  display: grid;
  gap: 8px;
}

.cmyk-strip i {
  width: 7px;
  height: 34px;
  background: #17a9c4;
}

.cmyk-strip i:nth-child(2) { background: #c22578; }
.cmyk-strip i:nth-child(3) { background: #e7c51c; }
.cmyk-strip i:nth-child(4) { background: #152a38; }

.hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 114px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  border-top: 1px solid var(--white-line);
  background: var(--navy);
}

.hero-facts div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-right: 1px solid var(--white-line);
  padding-inline: clamp(14px, 3vw, 42px);
}

.hero-facts div:first-child {
  padding-left: 0;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.82rem;
}

.services {
  overflow: hidden;
  background: var(--ivory);
}

.services::after {
  content: "TP";
  position: absolute;
  right: -0.06em;
  bottom: -0.26em;
  color: rgba(11, 47, 79, 0.035);
  font-size: min(36vw, 520px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.section-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
}

.section-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.section-intro h2 {
  font-size: clamp(2.6rem, 4.6vw, 5rem);
}

.section-intro > p:last-child {
  max-width: 510px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-item {
  display: grid;
  min-height: 164px;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 28px;
}

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

.service-no,
.service-mark {
  color: var(--gold-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.service-item h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
}

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

.service-mark {
  writing-mode: vertical-rl;
  opacity: 0.48;
}

.work {
  background: var(--navy-deep);
  color: var(--paper);
}

.work::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 24vw;
  height: 11vw;
  min-height: 80px;
  clip-path: polygon(36% 0, 100% 0, 100% 100%);
  background: var(--gold);
}

.work-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 56px;
}

.work-head h2 {
  margin-bottom: 0;
  color: var(--paper);
}

.work-head > p {
  margin-bottom: 10px;
  color: rgba(255, 253, 249, 0.68);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--white-line);
  padding-bottom: 16px;
}

.filter-button {
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 15px;
  background: transparent;
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 86px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  grid-column: span 3;
  grid-row: span 4;
  min-width: 0;
  overflow: hidden;
  background: #d9d6d0;
}

.product-card:nth-child(5n + 2) {
  grid-row: span 5;
}

.product-card.product-wide {
  grid-column: span 6;
}

.product-card.product-tall {
  grid-column: span 3;
  grid-row: span 6;
}

.product-card[hidden] {
  display: none;
}

.product-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.product-open::after {
  content: "+";
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(-8px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(6, 31, 53, 0.82);
  color: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.25rem;
  opacity: 0;
  transition: transform 260ms var(--ease), opacity 220ms var(--ease);
}

.product-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 440ms var(--ease), filter 280ms var(--ease);
}

.product-info {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 56px 18px 18px;
  background: linear-gradient(transparent, rgba(6, 31, 53, 0.82));
  color: var(--paper);
  transition: padding-bottom 260ms var(--ease);
}

.product-info b {
  font-size: 0.98rem;
  line-height: 1.35;
}

.product-info small {
  flex: 0 0 auto;
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.68rem;
}

.product-open:hover img,
.product-open:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.product-open:hover::after,
.product-open:focus-visible::after {
  transform: translateY(0);
  opacity: 1;
}

.product-open:hover .product-info {
  padding-bottom: 24px;
}

.capabilities {
  background: var(--paper);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.capability-copy {
  grid-column: 1 / span 5;
  align-self: center;
  padding: 40px 7vw 40px 0;
}

.capability-copy h2 {
  font-size: clamp(2.6rem, 5.1vw, 5.8rem);
}

.capability-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-block: 18px;
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list span {
  color: var(--gold-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.capability-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dbe4e9;
}

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

.capability-image figcaption,
.people-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  background: rgba(6, 31, 53, 0.86);
  color: rgba(255, 255, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
}

.capability-image-main {
  grid-column: 6 / span 4;
  min-height: 760px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}

.capability-image-detail {
  grid-column: 10 / span 3;
  min-height: 500px;
  align-self: end;
}

.material-panel {
  grid-column: 8 / span 5;
  margin-top: -190px;
  padding: 42px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.paper-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.paper-list span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--navy);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
}

.paper-list span:nth-child(6) { background: #f4e5ce; }
.paper-list span:nth-child(7) { background: #d8c8b7; }
.paper-list span:nth-child(8) { background: #aa7840; color: var(--paper); }
.paper-list span:nth-child(9) { background: #f2f0ec; }
.paper-list span:nth-child(10) { background: #e9e2d8; }

.finish-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.72rem;
}

.finish-row span::before {
  content: "•";
  margin-right: 7px;
  color: var(--gold-deep);
}

.people {
  overflow: hidden;
  background: var(--gold);
  padding-block: 0;
}

.people-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.people-image {
  position: relative;
  margin-left: calc((100vw - var(--shell)) / -2);
  min-width: calc(100% + (100vw - var(--shell)) / 2);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.people-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 31, 53, 0.1), transparent 60%);
}

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

.people-image span {
  z-index: 2;
  right: 12%;
}

.people-copy {
  display: flex;
  max-width: 560px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 0 80px clamp(30px, 6vw, 100px);
}

.people-copy h2 {
  color: var(--navy-deep);
  font-size: clamp(2.5rem, 4.6vw, 5.2rem);
}

.people-copy > p:not(.eyebrow) {
  color: rgba(6, 31, 53, 0.73);
}

.process {
  background: var(--ivory);
}

.process-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.process-head h2 {
  margin-bottom: 0;
}

.process-head > p {
  color: var(--muted);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 126px;
  grid-template-columns: 110px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list b {
  color: var(--gold-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
}

.process-list span {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 40px;
}

.process-list strong {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  letter-spacing: -0.035em;
}

.process-list small {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--navy);
  color: var(--paper);
}

.quote::after {
  content: "";
  position: absolute;
  right: -4vw;
  bottom: -7vw;
  width: 32vw;
  aspect-ratio: 1.4;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--gold);
  opacity: 0.12;
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(70px, 9vw, 140px);
}

.quote-copy h2 {
  color: var(--paper);
  font-size: clamp(2.7rem, 5vw, 5.7rem);
}

.quote-copy > p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.68);
}

.contact-direct {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--white-line);
}

.contact-direct a {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--white-line);
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}

.contact-direct a:hover {
  transform: translateX(8px);
  color: var(--gold);
}

.contact-direct small {
  color: rgba(255, 253, 249, 0.55);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.quote-form {
  padding: clamp(28px, 4vw, 54px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

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

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(11, 47, 79, 0.28);
  border-radius: 0;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-deep);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(209, 154, 47, 0.17);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #89949b;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.form-result {
  display: none;
  margin-top: 18px;
  border-left: 3px solid var(--success);
  padding: 14px 16px;
  background: rgba(23, 107, 77, 0.08);
  color: #12533d;
  font-size: 0.83rem;
}

.form-result.is-visible {
  display: block;
}

.form-result a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding-top: 74px;
  background: var(--navy-deep);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.9fr;
  gap: 52px;
  padding-bottom: 66px;
}

.footer-brand img {
  width: 210px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.site-footer address {
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.82rem;
  font-style: normal;
}

.footer-label {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a:not(.button) {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.86rem;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--white-line);
  padding-block: 20px;
  color: rgba(255, 253, 249, 0.45);
  font-size: 0.7rem;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(1120px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 0;
  border: 0;
  padding: 0;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
  color: var(--ink);
}

.lightbox[open] {
  display: grid;
}

.lightbox::backdrop {
  background: rgba(3, 17, 29, 0.78);
  backdrop-filter: blur(7px);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(6, 31, 53, 0.85);
  color: var(--paper);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-media {
  min-height: 600px;
  background: #d7d5d0;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 40px);
  object-fit: cover;
}

.lightbox-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 58px 42px;
}

.lightbox-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.lightbox-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.js .reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 440ms var(--ease), opacity 360ms var(--ease);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 36px, 980px);
  }

  .header-inner {
    grid-template-columns: 210px 1fr auto;
    gap: 20px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .product-card,
  .product-card.product-tall {
    grid-column: span 4;
  }

  .product-card.product-wide {
    grid-column: span 8;
  }

  .capability-copy {
    grid-column: 1 / span 6;
  }

  .capability-image-main {
    grid-column: 7 / span 6;
  }

  .capability-image-detail {
    grid-column: 1 / span 5;
    grid-row: 2;
    min-height: 400px;
  }

  .material-panel {
    grid-column: 5 / span 8;
    grid-row: 2;
    margin-top: 80px;
  }

  .quote-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
    gap: 50px;
  }

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

  .footer-action {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

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

  .section {
    padding-block: 90px;
  }

  .site-header {
    background: rgba(247, 242, 234, 0.95);
    backdrop-filter: blur(12px);
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-height: 48px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    color: var(--navy);
    font-size: 0.94rem;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: transform 220ms var(--ease);
  }

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

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

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    transform: translateY(-12px);
    border-top: 1px solid var(--line);
    padding: 18px 16px 28px;
    background: var(--ivory);
    box-shadow: 0 22px 40px rgba(6, 31, 53, 0.14);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 180ms var(--ease);
  }

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

  .site-nav a,
  .site-header .site-nav a {
    min-height: 50px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 0.92rem;
  }

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

  .hero::before {
    width: 100%;
  }

  .hero-copy {
    display: block;
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .hero-copy-inner {
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 6.2rem);
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: min(690px, 118vw);
    clip-path: polygon(0 8%, 84% 0, 100% 13%, 100% 100%, 0 100%);
  }

  .hero-stamp {
    right: 20px;
    bottom: 30px;
    width: 122px;
  }

  .cmyk-strip {
    top: 70px;
    right: 18px;
  }

  .hero-facts {
    position: relative;
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .hero-facts div,
  .hero-facts div:first-child {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
    padding-inline: 0;
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .section-grid,
  .work-head,
  .process-head,
  .quote-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .quote-grid {
    gap: 64px;
  }

  .section-intro {
    position: static;
  }

  .work-head {
    gap: 28px;
  }

  .portfolio-grid {
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card,
  .product-card.product-tall,
  .product-card.product-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 0.84;
  }

  .product-card.product-wide {
    grid-column: span 2;
    aspect-ratio: 1.65;
  }

  .product-info {
    display: block;
  }

  .product-info small {
    display: block;
    margin-top: 4px;
  }

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

  .capability-copy,
  .capability-image-main,
  .capability-image-detail,
  .material-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .capability-copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .capability-image-main,
  .capability-image-detail {
    min-height: 520px;
  }

  .material-panel {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .people-grid {
    min-height: auto;
  }

  .people-image {
    min-width: calc(100% + 32px);
    min-height: 520px;
    margin-inline: -16px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 12% 100%, 0 92%);
  }

  .people-image span {
    right: 12px;
    bottom: 10%;
  }

  .people-copy {
    padding: 64px 0 80px;
  }

  .process-head {
    gap: 20px;
  }

  .quote-grid {
    min-width: 0;
  }

  .lightbox[open] {
    display: block;
  }

  .lightbox-media {
    min-height: 46dvh;
  }

  .lightbox-media img {
    max-height: 54dvh;
  }

  .lightbox-copy {
    padding: 34px 28px;
  }

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

  .footer-action {
    grid-column: auto;
  }

  .mobile-actions {
    position: fixed;
    z-index: var(--z-sticky);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(64px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--navy-deep);
    box-shadow: 0 -10px 30px rgba(6, 31, 53, 0.18);
  }

  .mobile-actions a {
    display: grid;
    min-height: 64px;
    place-items: center;
    border-right: 1px solid var(--white-line);
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .mobile-actions a:last-child {
    border-right: 0;
    background: var(--gold);
    color: var(--navy-deep);
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .service-item {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .service-mark {
    display: none;
  }

  .work::before {
    width: 42vw;
    height: 22vw;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-button {
    text-align: left;
  }

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

  .product-card,
  .product-card.product-tall,
  .product-card.product-wide {
    grid-column: auto;
    aspect-ratio: 0.94;
  }

  .capability-grid {
    display: block;
  }

  .capability-copy,
  .capability-image,
  .material-panel {
    margin-bottom: 18px;
  }

  .capability-image-main,
  .capability-image-detail {
    min-height: 480px;
  }

  .material-panel {
    padding: 28px 20px;
  }

  .paper-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    grid-template-columns: 54px 1fr;
    padding-block: 24px;
  }

  .process-list span {
    display: block;
  }

  .process-list small {
    display: block;
    margin-top: 6px;
  }

  .quote-form {
    padding: 28px 18px;
  }

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

  .contact-direct a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 18px);
  }

  .lightbox-media {
    min-height: 42dvh;
  }

  .lightbox-copy {
    padding: 28px 20px;
  }
}

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

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

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