:root {
  --paper: #eee9db;
  --ink: #102a44;
  --blue: #123f72;
  --blue-dark: #092b50;
  --red: #c93427;
  --yellow: #f2c230;
  --cream: #f6f1e6;
  --line: rgba(16, 42, 68, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-archivo), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
img { display: block; width: 100%; }
::selection { background: var(--yellow); color: var(--blue-dark); }

.skip-link {
  background: var(--yellow);
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -6rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.site-header {
  align-items: center;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 72px;
  padding: 0 clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 20;
}
.brand-mark {
  align-items: center;
  display: flex;
  font-family: var(--font-display), sans-serif;
  font-size: 1.05rem;
  gap: .7rem;
  letter-spacing: .04em;
}
.brand-dot {
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  height: 13px;
  width: 13px;
}
.site-header nav { display: flex; gap: clamp(1rem, 2.4vw, 2.6rem); }
.site-header nav a {
  font-family: var(--font-mono), monospace;
  font-size: .71rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--red); }
.header-code {
  font-family: var(--font-mono), monospace;
  font-size: .7rem;
  justify-self: end;
  letter-spacing: .12em;
}

.hero {
  background: var(--blue);
  color: var(--cream);
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding: clamp(1.2rem, 2.5vw, 2.5rem) clamp(1rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  position: relative;
}
.hero::before {
  background: var(--red);
  content: "";
  height: 28%;
  left: 0;
  position: absolute;
  top: 25%;
  width: 1.2vw;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  height: 100%;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  position: absolute;
}
.hero-grid i { border-right: 1px solid rgba(246, 241, 230, .25); }
.hero-kicker {
  display: flex;
  font-family: var(--font-mono), monospace;
  font-size: clamp(.68rem, 1vw, .84rem);
  justify-content: space-between;
  letter-spacing: .08em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.hero-title-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100svh - 245px);
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: var(--cream);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(5rem, 16.2vw, 17rem);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .75;
  margin: 0;
  transform: scaleX(.94);
  transform-origin: center;
}
.mobile-break { display: none; }
.hero-seal {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--blue-dark);
  display: flex;
  flex-direction: column;
  height: clamp(115px, 12vw, 178px);
  justify-content: center;
  position: absolute;
  right: 4.5%;
  top: 11%;
  transform: rotate(7deg);
  width: clamp(115px, 12vw, 178px);
}
.hero-seal span { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-seal strong { font-family: var(--font-display); font-size: clamp(2.6rem, 4.6vw, 4.7rem); font-weight: 400; line-height: .9; }
.hero-seal small { font-family: var(--font-mono); }
.hero-bottom { align-items: flex-end; display: flex; justify-content: space-between; position: relative; z-index: 1; }
.hero-bottom p { font-size: clamp(1.2rem, 2vw, 2.1rem); font-weight: 600; line-height: 1.05; margin: 0; }
.round-link {
  align-items: center;
  border: 2px solid var(--cream);
  border-radius: 50%;
  display: flex;
  font-size: 1.7rem;
  height: 58px;
  justify-content: center;
  transition: .2s ease;
  width: 58px;
}
.round-link:hover { background: var(--cream); color: var(--blue); transform: translateY(4px); }

.status-strip {
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
  display: grid;
  font-family: var(--font-mono), monospace;
  font-size: .68rem;
  grid-template-columns: repeat(4, 1fr);
  letter-spacing: .08em;
  padding: .75rem clamp(1rem, 3vw, 3rem);
  text-transform: uppercase;
}
.status-strip span { border-right: 1px solid rgba(16, 42, 68, .35); padding-left: 1rem; }
.status-strip span:first-child { padding-left: 0; }
.status-strip span:last-child { border: 0; }
.status-light, .terminal-light { background: #309641; border-radius: 50%; display: inline-block; height: 8px; margin-right: .6rem; width: 8px; }

.section-pad { padding: clamp(5rem, 9vw, 10rem) clamp(1rem, 4.7vw, 5rem); }
.section-label { display: flex; gap: .75rem; }
.section-label > span {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: .72rem;
  height: 36px;
  justify-content: center;
  width: 36px;
}
.section-label p {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}
.section-label.light { color: var(--cream); }
.eyebrow {
  font-family: var(--font-mono), monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.manifesto {
  border-bottom: 2px solid var(--ink);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1.15fr 4fr 1.25fr;
}
.manifesto-main h2, .section-head h2, .cyber-copy h2, .process h2, .contact h2 {
  font-family: var(--font-display), sans-serif;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}
.manifesto-main h2 { font-size: clamp(3.5rem, 7vw, 7.2rem); margin: 1rem 0 4rem; max-width: 1100px; }
.two-columns { display: grid; gap: clamp(2rem, 5vw, 5rem); grid-template-columns: 1fr 1fr; max-width: 980px; }
.two-columns p { font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.55; margin: 0; }
.manifesto-note { align-self: end; background: var(--red); color: white; padding: 1.4rem; }
.manifesto-note span { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; }
.manifesto-note p { font-size: 1.25rem; font-weight: 650; line-height: 1.2; margin: 1.5rem 0 0; }

.program { background: var(--blue-dark); color: var(--cream); }
.section-head {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1.15fr 2.3fr 1.55fr;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.section-head h2 { font-size: clamp(3.3rem, 6vw, 6.5rem); margin: 0; }
.section-intro { align-self: end; font-size: clamp(1rem, 1.35vw, 1.3rem); line-height: 1.5; margin: 0; }
.product-list { border-top: 1px solid rgba(246, 241, 230, .45); }
.product {
  align-items: start;
  border-bottom: 1px solid rgba(246, 241, 230, .45);
  display: grid;
  gap: 2rem;
  grid-template-columns: 80px 1fr 80px;
  padding: 2rem .5rem;
  transition: background .2s, color .2s, padding .2s;
}
.product:hover { background: var(--yellow); color: var(--blue-dark); padding-left: 1.5rem; padding-right: 1.5rem; }
.product-number, .product-code { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; }
.product-code { justify-self: end; }
.product h3 { font-size: clamp(1.5rem, 2.4vw, 2.6rem); font-weight: 700; line-height: 1; margin: 0 0 .7rem; }
.product p { font-size: 1rem; margin: 0; max-width: 650px; opacity: .82; }

.production-photo { background: var(--red); display: grid; grid-template-columns: minmax(0, 2.1fr) minmax(260px, .9fr); min-height: 760px; position: relative; }
.production-photo > img { height: 100%; object-fit: cover; }
.photo-caption { align-self: end; color: white; padding: clamp(2rem, 5vw, 5rem); }
.photo-caption span { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; }
.photo-caption p { font-size: clamp(1.7rem, 3vw, 3.5rem); font-weight: 650; letter-spacing: -.035em; line-height: 1.02; margin: 2rem 0 0; }
.photo-stamp {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--blue-dark);
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: .7rem;
  height: 130px;
  justify-content: center;
  left: calc(67.7% - 65px);
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 10%;
  transform: rotate(-7deg);
  width: 130px;
}
.photo-stamp b { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }

.numbers { border-bottom: 2px solid var(--ink); display: grid; gap: 4rem; grid-template-columns: 1fr 5fr; }
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.number-item { border: 2px solid var(--ink); border-left: 0; display: flex; flex-direction: column; min-height: 280px; padding: clamp(1.5rem, 3vw, 3rem); }
.number-item:first-child { border-left: 2px solid var(--ink); }
.number-item strong { font-family: var(--font-display); font-size: clamp(5rem, 10vw, 10rem); font-weight: 400; letter-spacing: -.07em; line-height: .8; }
.number-item span { font-family: var(--font-mono); font-size: .72rem; line-height: 1.4; margin-top: auto; text-transform: uppercase; }
.number-item.yellow { background: var(--yellow); }
.number-item.wide { background: var(--blue); color: var(--cream); grid-column: 1 / -1; min-height: 300px; }
.number-item.wide strong { font-size: clamp(4.5rem, 12vw, 13rem); }
.numbers-foot { display: flex; font-family: var(--font-mono); font-size: .63rem; grid-column: 2; justify-content: space-between; letter-spacing: .05em; text-transform: uppercase; }

.cybernetics { background: var(--blue); color: var(--cream); display: grid; grid-template-columns: 1.05fr .95fr; min-height: 920px; }
.cyber-image { min-height: 680px; overflow: hidden; position: relative; }
.cyber-image img { height: 100%; object-fit: cover; }
.vertical-type { background: var(--yellow); bottom: 0; color: var(--blue-dark); font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; padding: 1rem .8rem; position: absolute; right: 0; text-transform: uppercase; writing-mode: vertical-rl; }
.cyber-copy { padding: clamp(4rem, 7vw, 8rem); }
.cyber-copy .eyebrow { color: var(--yellow); margin-top: clamp(4rem, 7vw, 8rem); }
.cyber-copy h2 { font-size: clamp(3.2rem, 5.2vw, 6rem); margin: 1.2rem 0 2.5rem; }
.large-copy { font-size: clamp(1.05rem, 1.35vw, 1.3rem); line-height: 1.6; max-width: 720px; }
.terminal { border-bottom: 1px solid rgba(246, 241, 230, .5); border-top: 1px solid rgba(246, 241, 230, .5); margin-top: 3.5rem; }
.terminal summary { cursor: pointer; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; list-style: none; padding: 1.3rem 0; text-transform: uppercase; }
.terminal summary::-webkit-details-marker { display: none; }
.terminal summary b { float: right; font-size: 1.3rem; transition: transform .2s; }
.terminal[open] summary b { transform: rotate(45deg); }
.terminal-body { background: #051d35; font-family: var(--font-mono); font-size: .72rem; padding: 1.2rem 1.5rem; }
.terminal-body p { border-bottom: 1px solid rgba(246, 241, 230, .15); display: grid; gap: 1rem; grid-template-columns: 120px 1fr; margin: 0; padding: .8rem 0; }
.terminal-body p:last-child { border: 0; }
.terminal-body span { color: var(--yellow); }
.forecast { border-left: 5px solid var(--red); font-size: .9rem; font-weight: 650; margin: 2.5rem 0 0; padding-left: 1.4rem; }

.projects { background: var(--cream); }
.project-table { border-top: 2px solid var(--ink); }
.table-row { border-bottom: 1px solid var(--ink); display: grid; gap: 2.5rem; grid-template-columns: 1fr 2.4fr 1.5fr; padding: 1.7rem 0; }
.table-row > span { display: flex; flex-direction: column; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .07em; text-transform: uppercase; }
.table-row > span b { font-size: 1rem; margin-bottom: .2rem; }
.table-row h3 { font-size: clamp(1.3rem, 2vw, 2rem); font-weight: 650; letter-spacing: -.025em; line-height: 1.15; margin: 0; }
.table-row p { margin: 0; }
.table-head { font-family: var(--font-mono); font-size: .63rem; letter-spacing: .08em; padding: .8rem 0; text-transform: uppercase; }

.testimonials { display: grid; grid-template-columns: 1fr 1fr; }
.quote { min-height: 580px; padding: clamp(3rem, 7vw, 7rem); position: relative; }
.quote-red { background: var(--red); color: white; }
.quote-yellow { background: var(--yellow); }
.quote-mark { font-family: Georgia, serif; font-size: 10rem; left: 8%; line-height: 1; opacity: .25; position: absolute; top: 5%; }
.quote blockquote { font-size: clamp(2.2rem, 4vw, 4.5rem); font-weight: 650; letter-spacing: -.045em; line-height: 1.05; margin: 0; position: relative; }
.quote cite { bottom: 4rem; font-family: var(--font-mono); font-size: .65rem; font-style: normal; letter-spacing: .07em; position: absolute; text-transform: uppercase; }

.collective { background: var(--paper); }
.collective-image { margin: 0 0 3rem; position: relative; }
.collective-image img { aspect-ratio: 16 / 9; object-fit: cover; }
.collective-image figcaption { background: var(--blue); bottom: 0; color: white; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .07em; padding: 1rem 1.5rem; position: absolute; right: 0; text-transform: uppercase; }
.collective-list { border-top: 2px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.collective-list article { border-right: 1px solid var(--ink); min-height: 220px; padding: 1.5rem; }
.collective-list article:first-child { border-left: 1px solid var(--ink); }
.collective-list article > span { font-family: var(--font-mono); font-size: .65rem; }
.collective-list h3 { font-size: clamp(1.5rem, 2.2vw, 2.4rem); line-height: 1; margin: 2.5rem 0 .4rem; }
.collective-list p { font-weight: 650; margin: 0; }
.collective-list small { display: block; font-family: var(--font-mono); font-size: .64rem; margin-top: .35rem; text-transform: uppercase; }

.perspective-file { background: var(--blue); color: var(--cream); display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.5fr); margin-top: clamp(4rem, 8vw, 8rem); min-height: 760px; overflow: hidden; }
.perspective-photo { background: var(--yellow); min-height: 640px; position: relative; }
.perspective-photo img { filter: grayscale(.18) contrast(1.08) saturate(.82); height: 100%; object-fit: cover; object-position: 50% 23%; }
.perspective-photo > span { background: var(--yellow); bottom: 0; color: var(--blue-dark); font-family: var(--font-mono); font-size: .63rem; letter-spacing: .08em; padding: 1rem 1.4rem; position: absolute; right: 0; text-transform: uppercase; }
.perspective-copy { padding: clamp(2rem, 5vw, 5.5rem); position: relative; }
.perspective-topline { border-bottom: 1px solid rgba(246, 241, 230, .45); display: flex; font-family: var(--font-mono); font-size: .6rem; justify-content: space-between; letter-spacing: .08em; padding-bottom: 1rem; text-transform: uppercase; }
.perspective-copy > .eyebrow { color: var(--yellow); margin-top: clamp(3rem, 6vw, 6rem); }
.perspective-copy h3 { font-family: var(--font-display); font-size: clamp(4.5rem, 8vw, 8.7rem); font-weight: 400; letter-spacing: -.055em; line-height: .78; margin: 1.2rem 0 2.5rem; }
.perspective-role { font-size: clamp(1.2rem, 1.8vw, 1.7rem); line-height: 1.2; margin: 0 0 3rem; }
.perspective-role b { color: var(--yellow); font-weight: 650; }
.perspective-data { border-top: 1px solid rgba(246, 241, 230, .45); display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.perspective-data > div { border-bottom: 1px solid rgba(246, 241, 230, .28); display: grid; gap: .8rem; grid-template-columns: 100px 1fr; padding: 1rem 1rem 1rem 0; }
.perspective-data > div:nth-child(odd) { border-right: 1px solid rgba(246, 241, 230, .28); }
.perspective-data > div:nth-child(even) { padding-left: 1rem; }
.perspective-data dt { color: var(--yellow); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .07em; text-transform: uppercase; }
.perspective-data dd { font-family: var(--font-mono); font-size: .68rem; margin: 0; text-transform: uppercase; }
.perspective-copy blockquote { border-left: 5px solid var(--red); font-size: clamp(1.05rem, 1.35vw, 1.3rem); font-weight: 600; line-height: 1.4; margin: 2.5rem 0; max-width: 780px; padding-left: 1.3rem; }
.perspective-link { border-bottom: 1px solid var(--yellow); color: var(--yellow); display: inline-block; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .07em; padding-bottom: .25rem; text-transform: uppercase; }
.perspective-stamp { align-items: center; border: 3px solid var(--red); border-radius: 50%; bottom: 2.5rem; color: var(--red); display: flex; flex-direction: column; height: 125px; justify-content: center; opacity: .92; position: absolute; right: 2.5rem; text-transform: uppercase; transform: rotate(-8deg); width: 125px; }
.perspective-stamp span, .perspective-stamp small { font-family: var(--font-mono); font-size: .54rem; letter-spacing: .08em; }
.perspective-stamp b { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; line-height: 1; }

.process { background: var(--yellow); border-bottom: 2px solid var(--ink); border-top: 2px solid var(--ink); display: grid; grid-template-columns: 1.2fr 2.8fr; padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4.7vw, 5rem); }
.process h2 { font-size: clamp(3.2rem, 6vw, 6.5rem); margin: 1rem 0 0; }
.process ol { align-self: end; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; margin: 0; padding: 0; }
.process li { border-left: 1px solid var(--ink); min-height: 160px; padding: 1rem; position: relative; }
.process li::after { background: var(--red); border-radius: 50%; bottom: 0; content: ""; height: 12px; position: absolute; right: -6px; width: 12px; z-index: 2; }
.process li b { font-family: var(--font-mono); font-size: .7rem; }
.process li span { bottom: 0; font-size: clamp(.9rem, 1.25vw, 1.15rem); font-weight: 650; left: 1rem; line-height: 1.15; position: absolute; }

.contact { background: var(--blue-dark); color: var(--cream); display: grid; gap: clamp(3rem, 8vw, 9rem); grid-template-columns: .9fr 1.5fr; }
.contact-intro h2 { font-size: clamp(3.8rem, 7vw, 7.5rem); margin: 1.2rem 0 2rem; }
.contact-intro > p:not(.form-number) { font-size: 1.15rem; max-width: 480px; }
.form-number { color: var(--yellow); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; margin-top: 5rem; text-transform: uppercase; }
.office-hours { border-top: 1px solid rgba(246, 241, 230, .4); display: flex; flex-direction: column; margin-top: 5rem; max-width: 480px; padding-top: 1.2rem; }
.office-hours span, .office-hours small { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .07em; text-transform: uppercase; }
.office-hours b { color: var(--yellow); font-size: 1.3rem; margin: .6rem 0 .2rem; }
.request-form { align-self: start; background: var(--paper); color: var(--ink); padding: clamp(1.5rem, 4vw, 4rem); }
.request-form label { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.5rem; }
.request-form label > span { font-family: var(--font-mono); font-size: .64rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.field-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
.request-form input, .request-form select, .request-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: .65rem .15rem;
  width: 100%;
}
.request-form textarea { border: 2px solid var(--ink); min-height: 150px; padding: 1rem; resize: vertical; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--red); box-shadow: 0 2px 0 var(--red); }
.request-form textarea:focus { box-shadow: inset 0 0 0 1px var(--red); }
.request-form .check { align-items: flex-start; flex-direction: row; gap: .75rem; }
.request-form .check input { accent-color: var(--red); min-height: 18px; width: 18px; }
.submit-button { align-items: center; background: var(--red); border: 0; color: white; cursor: pointer; display: flex; font-family: var(--font-mono); font-size: .72rem; justify-content: space-between; letter-spacing: .07em; min-height: 72px; padding: 1rem 1.5rem; text-transform: uppercase; transition: background .2s, color .2s; width: 100%; }
.submit-button b { font-size: 1.7rem; }
.submit-button:hover, .submit-button:focus-visible { background: var(--yellow); color: var(--blue-dark); }
.form-note { font-family: var(--font-mono); font-size: .58rem; margin: 1rem 0 0; opacity: .65; text-transform: uppercase; }
.success { align-self: start; background: var(--yellow); color: var(--blue-dark); min-height: 580px; padding: clamp(2.5rem, 6vw, 6rem); }
.success-icon { align-items: center; border: 3px solid var(--blue-dark); border-radius: 50%; display: flex; font-size: 2rem; height: 64px; justify-content: center; margin-bottom: 4rem; width: 64px; }
.success h3 { font-size: clamp(2.5rem, 4vw, 4.5rem); letter-spacing: -.04em; line-height: 1; margin: 1.2rem 0 2rem; }
.success > p:last-of-type { font-size: 1.15rem; max-width: 600px; }
.success button { background: transparent; border: 2px solid var(--blue-dark); color: var(--blue-dark); cursor: pointer; font-family: var(--font-mono); font-size: .67rem; letter-spacing: .07em; margin-top: 3rem; padding: 1rem; text-transform: uppercase; }

footer { background: #071c31; color: var(--cream); display: grid; gap: 3rem; grid-template-columns: 1.4fr .8fr .8fr 1.4fr; padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4.7vw, 5rem) 2rem; }
.footer-brand { display: grid; grid-template-columns: 18px 1fr; }
.footer-brand .brand-dot { margin-top: .45rem; }
.footer-brand strong { font-family: var(--font-display); font-size: 2rem; letter-spacing: -.02em; }
.footer-brand p { font-family: var(--font-mono); font-size: .63rem; grid-column: 2; margin: .3rem 0; text-transform: uppercase; }
.footer-block > span, .footer-legal summary { color: var(--yellow); font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-block p, .footer-block a { font-size: .9rem; line-height: 1.7; }
.footer-block { align-items: start; display: flex; flex-direction: column; }
.footer-block .real-site { border-bottom: 1px solid var(--yellow); color: var(--yellow); font-family: var(--font-mono); font-size: .66rem; margin-top: .7rem; text-transform: uppercase; }
.footer-legal details { border-bottom: 1px solid rgba(246, 241, 230, .3); }
.footer-legal summary { cursor: pointer; list-style: none; padding-bottom: 1rem; }
.footer-legal summary::-webkit-details-marker { display: none; }
.footer-legal p { font-size: .78rem; line-height: 1.6; }
.footer-legal p a { color: var(--yellow); text-decoration: underline; text-underline-offset: .2em; }
.copyright { border-top: 1px solid rgba(246, 241, 230, .25); font-family: var(--font-mono); font-size: .58rem; grid-column: 1 / -1; letter-spacing: .08em; margin: 2rem 0 0; padding-top: 1.5rem; text-transform: uppercase; }

@media (max-width: 1050px) {
  .manifesto, .section-head { grid-template-columns: 1fr 3fr; }
  .manifesto-note, .section-intro { grid-column: 2; }
  .manifesto-note { max-width: 320px; }
  .production-photo { grid-template-columns: 1.5fr 1fr; min-height: 680px; }
  .photo-stamp { left: calc(60% - 60px); }
  .numbers { grid-template-columns: 1fr; }
  .numbers-foot { grid-column: 1; }
  .cybernetics { grid-template-columns: 1fr; }
  .cyber-image { height: 70vw; max-height: 760px; }
  .process { gap: 4rem; grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; height: 62px; }
  .site-header nav { display: none; }
  .header-code { display: block; }
  .hero { min-height: calc(100svh - 62px); }
  .hero-title-wrap { justify-content: flex-start; min-height: calc(100svh - 225px); }
  .hero h1 { font-size: clamp(5.2rem, 31vw, 9rem); line-height: .72; margin-left: -.04em; }
  .mobile-break { display: block; }
  .hero-seal { height: 100px; right: 1%; top: 13%; width: 100px; }
  .hero-seal strong { font-size: 2.6rem; }
  .hero-bottom p { font-size: 1.25rem; }
  .status-strip { grid-template-columns: 1fr 1fr; row-gap: .7rem; }
  .status-strip span { border: 0; padding: 0; }
  .status-strip span:nth-child(3), .status-strip span:nth-child(4) { display: none; }
  .manifesto, .section-head { grid-template-columns: 1fr; }
  .manifesto-main h2 { font-size: clamp(3.1rem, 15vw, 5.2rem); margin-bottom: 2.5rem; }
  .manifesto-note, .section-intro { grid-column: 1; }
  .two-columns { grid-template-columns: 1fr; }
  .section-head { gap: 2.2rem; }
  .section-head h2 { font-size: clamp(3.2rem, 14vw, 5.5rem); }
  .product { gap: 1rem; grid-template-columns: 42px 1fr; }
  .product-code { display: none; }
  .product h3 { font-size: 1.55rem; }
  .production-photo { display: block; min-height: 0; }
  .production-photo > img { aspect-ratio: 4 / 5; }
  .photo-caption { min-height: 340px; }
  .photo-stamp { height: 105px; left: auto; right: 1rem; top: calc(56% - 52px); width: 105px; }
  .numbers { gap: 2rem; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-item { min-height: 210px; }
  .number-item:nth-child(3) { border-left: 2px solid var(--ink); }
  .number-item.wide { min-height: 220px; }
  .number-item.wide strong { font-size: clamp(3.2rem, 15vw, 6rem); }
  .numbers-foot { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .cyber-image { height: 82vw; min-height: 430px; }
  .cyber-copy { padding: 4rem 1rem; }
  .cyber-copy h2 { font-size: clamp(3.3rem, 14vw, 5.5rem); }
  .terminal-body p { grid-template-columns: 1fr; }
  .table-head { display: none; }
  .table-row { gap: .8rem; grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .quote { min-height: 480px; }
  .quote blockquote { font-size: clamp(2.2rem, 10vw, 3.8rem); }
  .collective-image img { aspect-ratio: 4 / 3; }
  .collective-image figcaption { position: static; }
  .collective-list { grid-template-columns: 1fr 1fr; }
  .collective-list article { border-bottom: 1px solid var(--ink); }
  .collective-list article:nth-child(odd) { border-left: 1px solid var(--ink); }
  .perspective-file { grid-template-columns: 1fr; }
  .perspective-photo { max-height: 720px; min-height: 540px; }
  .perspective-copy { padding: 3.5rem 1.25rem 9rem; }
  .perspective-topline { align-items: flex-start; flex-direction: column; gap: .45rem; }
  .perspective-copy h3 { font-size: clamp(4.5rem, 22vw, 7rem); }
  .perspective-data { grid-template-columns: 1fr; }
  .perspective-data > div, .perspective-data > div:nth-child(odd), .perspective-data > div:nth-child(even) { border-right: 0; padding-left: 0; }
  .perspective-stamp { bottom: 1.6rem; right: 1.5rem; }
  .process ol { grid-template-columns: 1fr; }
  .process li { border-left: 0; border-top: 1px solid var(--ink); display: grid; grid-template-columns: 50px 1fr; min-height: auto; padding: 1rem 0; }
  .process li::after { bottom: -6px; }
  .process li span { position: static; }
  .contact { grid-template-columns: 1fr; }
  .form-number { margin-top: 3rem; }
  .field-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
