:root {
  --ink: #0e1116;
  --ink-2: #161c24;
  --ink-3: #1f2732;
  --paper: #f2efe8;
  --paper-2: #e9e4d9;
  --paper-3: #ddd7c9;
  --line-dark: #2a333f;
  --line-light: #d3ccbd;
  --accent: #e2622c;
  --accent-deep: #c2501e;
  --steel: #3e566b;
  --text: #12171d;
  --text-soft: #5c6470;
  --text-inv: #f2efe8;
  --text-inv-soft: #8d9aa8;

  --shell: 1280px;
  --gap: clamp(24px, 4vw, 64px);
  --section-y: clamp(72px, 9vw, 148px);

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 18px;
}
.skip:focus { left: 12px; top: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn::after { content: "→"; font-family: var(--body); transition: transform .18s ease; }
.btn:hover::after { transform: translateX(4px); }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); }

.btn-ink { background: var(--ink); color: var(--text-inv); }
.btn-ink:hover { background: var(--ink-3); }

.btn-ghost { border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.btn-ghost-light { border-color: rgba(242, 239, 232, .35); color: var(--text-inv); }
.btn-ghost-light:hover { background: var(--text-inv); color: var(--ink); border-color: var(--text-inv); }

.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-head.is-solid,
body:not(.has-hero) .site-head {
  background: rgba(14, 17, 22, .93);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line-dark);
}

.head-inner {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 44px);
  height: 78px; color: var(--text-inv);
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { color: var(--text-inv); display: flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display); font-weight: 800; font-size: 20px;
  letter-spacing: 0.14em;
}
.brand-name.big { font-size: clamp(28px, 4vw, 42px); letter-spacing: 0.1em; }
.brand-sub {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-top: 6px;
}

.nav { display: flex; gap: clamp(14px, 1.9vw, 30px); }
.nav a {
  font-family: var(--display); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: rgba(242, 239, 232, .78);
  padding: 6px 0; position: relative;
  transition: color .18s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--accent); transition: right .22s ease;
}
.nav a:hover { color: var(--text-inv); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }
.nav a.is-active { color: var(--text-inv); }

.head-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .05em;
  color: var(--text-inv);
  border: 1px solid rgba(242, 239, 232, .25);
  padding: 9px 14px;
  transition: border-color .18s ease, background .18s ease;
}
.head-phone:hover { border-color: var(--accent); background: var(--accent); }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 9px; flex-direction: column;
  justify-content: space-between;
}
.burger span { display: block; height: 2px; background: var(--text-inv); transition: transform .25s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 78px 0 0 0; z-index: 99;
  background: var(--ink); padding: 28px var(--gap) 40px;
  overflow-y: auto;
}
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--display); font-size: 30px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--text-inv); padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav nav a .mono { color: var(--accent); font-size: 11px; }
.mobile-nav nav a.is-active { color: var(--accent); }
.mobile-contact { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.mobile-contact a { font-family: var(--mono); font-size: 13px; color: var(--text-inv-soft); }

.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--ink); color: var(--text-inv);
  overflow: hidden; padding-bottom: clamp(48px, 7vw, 96px); padding-top: 140px;
}
.hero-art {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .55;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14,17,22,.98) 0%, rgba(14,17,22,.55) 45%, rgba(14,17,22,.75) 100%);
}
.hero-inner { position: relative; z-index: 2; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 26px;
}
.hero-kicker::before {
  content: ""; width: 44px; height: 1px; background: var(--accent);
}

.hero h1 {
  font-size: clamp(40px, 8.4vw, 116px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.035em; line-height: .94;
  max-width: 15ch;
}
.hero h1 .rotator {
  display: block; color: var(--accent);
  min-height: 1em;
}
.hero h1 .rotator span { display: inline-block; }

.hero-foot {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 32px;
  margin-top: clamp(32px, 5vw, 64px);
  padding-top: 28px; border-top: 1px solid rgba(242,239,232,.18);
}
.hero-quote { max-width: 44ch; color: var(--text-inv-soft); font-size: 15px; }
.hero-quote strong { display: block; color: var(--text-inv); font-weight: 500; font-size: 17px; margin-bottom: 6px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  border-top: 1px solid rgba(242,239,232,.14);
  background: rgba(14,17,22,.6);
  display: none;
}

.section { padding-block: var(--section-y); position: relative; }
.section-ink { background: var(--ink); color: var(--text-inv); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--text-inv); }
.section-tint { background: var(--paper-2); }

.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 20px; display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px); align-items: end;
  margin-bottom: clamp(40px, 6vw, 76px);
}
.section-title {
  font-size: clamp(30px, 4.4vw, 58px); text-transform: uppercase; font-weight: 800;
}
.section-lede { color: var(--text-soft); font-size: 17px; max-width: 56ch; }
.section-ink .section-lede { color: var(--text-inv-soft); }

.rule { height: 1px; background: var(--line-light); border: 0; margin: 0; }
.section-ink .rule { background: var(--line-dark); }

.intro-grid {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 88px);
}
.intro-grid h2 { font-size: clamp(26px, 3.2vw, 42px); text-transform: none; letter-spacing: -0.03em; }
.intro-body { font-size: 17px; color: var(--text-soft); }
.intro-body p + p { margin-top: 1.1em; }

.disciplines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.discipline {
  background: var(--ink); padding: clamp(26px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .2s ease;
  position: relative;
}
.discipline:hover { background: var(--ink-2); }
.discipline .code { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--accent); }
.discipline h3 { font-size: clamp(22px, 2.3vw, 30px); text-transform: uppercase; }
.discipline .lead { color: var(--text-inv); font-size: 16px; font-weight: 500; }
.discipline p { color: var(--text-inv-soft); font-size: 15px; }
.discipline .more {
  margin-top: auto; padding-top: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); }
.section-ink .stats { background: var(--line-dark); }
.stat { background: var(--paper); padding: clamp(22px, 3vw, 40px) clamp(16px, 2vw, 28px); }
.section-ink .stat { background: var(--ink); }
.section-tint .stat { background: var(--paper-2); }
.stat .num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 4.6vw, 62px); letter-spacing: -0.04em; line-height: 1;
}
.stat .lbl {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-soft); margin-top: 12px;
}
.section-ink .stat .lbl { color: var(--text-inv-soft); }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 40px); }
.project-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.project-card { display: block; position: relative; }
.project-thumb {
  position: relative; overflow: hidden; background: var(--ink);
  aspect-ratio: 4 / 3;
}
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.project-card:hover .project-thumb img { transform: scale(1.045); }
.project-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,17,22,.55), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.project-card:hover .project-thumb::after { opacity: 1; }

.project-tag {
  position: absolute; left: 0; top: 0; z-index: 2;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; padding: 7px 12px;
}
.project-meta {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 18px; border-top: 1px solid var(--line-light);
  margin-top: 18px;
}
.section-ink .project-meta { border-top-color: var(--line-dark); }
.project-meta h3 { font-size: clamp(19px, 1.8vw, 25px); text-transform: uppercase; }
.project-meta .place { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--text-soft); margin-top: 8px; }
.section-ink .project-meta .place { color: var(--text-inv-soft); }
.project-meta .yr { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: .1em; white-space: nowrap; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(28px, 4vw, 52px); }
.filters a {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid var(--line-light); color: var(--text-soft);
  transition: all .18s ease;
}
.filters a:hover { border-color: var(--ink); color: var(--ink); }
.filters a.is-active { background: var(--ink); border-color: var(--ink); color: var(--text-inv); }

.page-head {
  background: var(--ink); color: var(--text-inv);
  padding: calc(78px + clamp(56px, 7vw, 110px)) 0 clamp(48px, 6vw, 90px);
  position: relative; overflow: hidden;
}
.page-head-art { position: absolute; inset: 0; opacity: .45; background-size: cover; background-position: center; }
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,17,22,.94) 26%, rgba(14,17,22,.52));
}
.page-head .shell { position: relative; z-index: 2; }
.page-head h1 {
  font-size: clamp(36px, 6.6vw, 92px); text-transform: uppercase; font-weight: 800;
  letter-spacing: -0.035em; max-width: 18ch;
}
.page-head .page-lede { color: var(--text-inv-soft); font-size: 17px; max-width: 62ch; margin-top: 26px; }
.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-inv-soft); margin-bottom: 24px; }
.crumbs a { color: var(--accent); }
.crumbs span { opacity: .5; margin: 0 8px; }

.phase {
  display: grid; grid-template-columns: 110px minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(30px, 4vw, 56px) 0;
  border-top: 1px solid var(--line-light);
}
.phase:last-child { border-bottom: 1px solid var(--line-light); }
.phase-code {
  font-family: var(--display); font-weight: 800; font-size: clamp(38px, 5vw, 66px);
  line-height: .9; color: var(--paper-3); letter-spacing: -0.05em;
}
.phase:hover .phase-code { color: var(--accent); }
.phase h3 { font-size: clamp(22px, 2.4vw, 32px); text-transform: uppercase; margin-bottom: 8px; }
.phase .dur { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.phase p { color: var(--text-soft); }
.phase ul { list-style: none; margin: 0; padding: 0; }
.phase ul li {
  font-size: 14px; color: var(--text-soft);
  padding: 9px 0 9px 20px; border-bottom: 1px dashed var(--line-light);
  position: relative;
}
.phase ul li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-family: var(--mono); }
.phase ul li:last-child { border-bottom: 0; }

.mini-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.mini-phase { background: var(--ink); padding: clamp(24px, 3vw, 40px); }
.mini-phase .code { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--accent); }
.mini-phase h3 { font-size: 21px; text-transform: uppercase; margin: 14px 0 10px; }
.mini-phase p { color: var(--text-inv-soft); font-size: 15px; }

.service-block { padding-block: clamp(48px, 6vw, 96px); border-top: 1px solid var(--line-light); scroll-margin-top: 90px; }
.service-block:first-of-type { border-top: 0; padding-top: 0; }
.service-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 72px); align-items: start; margin-bottom: clamp(30px, 4vw, 52px); }
.service-head .code { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--accent); margin-bottom: 14px; }
.service-head h2 { font-size: clamp(30px, 4.4vw, 56px); text-transform: uppercase; }
.service-head .lead { color: var(--text-soft); font-size: 17px; }

.service-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.service-item { background: var(--paper); padding: clamp(20px, 2.4vw, 32px); transition: background .2s ease; }
.service-item:hover { background: #fff; }
.service-item h4 { font-family: var(--display); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 10px; }
.service-item p { font-size: 14.5px; color: var(--text-soft); }

.project-hero { background: var(--ink); }
.project-hero img { width: 100%; height: clamp(320px, 60vh, 640px); object-fit: cover; }

.project-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); margin-bottom: clamp(36px, 5vw, 64px); }
.project-fact { background: var(--paper); padding: clamp(18px, 2.2vw, 28px); }
.project-fact .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 10px; }
.project-fact .v { font-family: var(--display); font-weight: 700; font-size: clamp(18px, 2vw, 26px); letter-spacing: -0.02em; }

.project-body { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: clamp(28px, 5vw, 76px); }
.project-body h3 { font-size: 15px; font-family: var(--mono); font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.project-body .block + .block { margin-top: clamp(28px, 3vw, 44px); }
.project-body p { font-size: 17px; color: var(--text-soft); }
.project-body .project-summary { font-size: clamp(19px, 2.1vw, 26px); font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.32; color: var(--text); margin-bottom: clamp(28px, 3vw, 44px); }

.side-card { border: 1px solid var(--line-light); padding: clamp(20px, 2.4vw, 30px); }
.side-card + .side-card { margin-top: 20px; }
.side-card .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 14px; }
.side-card ul { list-style: none; margin: 0; padding: 0; }
.side-card ul li { padding: 8px 0; border-bottom: 1px solid var(--line-light); font-size: 14.5px; }
.side-card ul li:last-child { border-bottom: 0; }

.next-project {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(28px, 4vw, 52px) 0; border-top: 1px solid var(--line-light);
  margin-top: clamp(40px, 5vw, 72px);
}
.next-project .k { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 10px; }
.next-project h3 { font-size: clamp(22px, 3vw, 38px); text-transform: uppercase; }

.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.value { background: var(--paper); padding: clamp(24px, 3vw, 40px); }
.value h3 { font-size: clamp(20px, 2.1vw, 27px); text-transform: uppercase; margin-bottom: 12px; }
.value p { color: var(--text-soft); font-size: 15.5px; }
.value .n { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--accent); margin-bottom: 16px; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 36px); }
.person { border-top: 2px solid var(--ink); padding-top: 20px; }
.person .avatar {
  aspect-ratio: 1; background: var(--ink-2); margin-bottom: 18px;
  display: grid; place-items: center; overflow: hidden;
}
.person .avatar img { width: 100%; height: 100%; object-fit: cover; }
.person h3 { font-size: 19px; text-transform: uppercase; }
.person .role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 10px 0 12px; }
.person p { font-size: 14.5px; color: var(--text-soft); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 14px; border: 1px solid var(--line-dark); color: var(--text-inv-soft);
}
.creds { list-style: none; margin: 0; padding: 0; }
.creds li {
  padding: 14px 0 14px 26px; border-bottom: 1px solid var(--line-dark);
  position: relative; color: var(--text-inv); font-size: 15.5px;
}
.creds li::before { content: "×"; position: absolute; left: 0; color: var(--accent); font-family: var(--mono); }

.post-list { border-top: 1px solid var(--line-light); }
.post-row {
  display: grid; grid-template-columns: 150px minmax(0, 1fr) 130px;
  gap: clamp(18px, 3vw, 48px); align-items: center;
  padding: clamp(24px, 3vw, 38px) 0; border-bottom: 1px solid var(--line-light);
  transition: padding-left .25s ease;
}
.post-row:hover { padding-left: 14px; }
.post-row .date { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); }
.post-row h3 { font-size: clamp(20px, 2.3vw, 30px); text-transform: none; letter-spacing: -0.025em; }
.post-row p { font-size: 15px; color: var(--text-soft); margin-top: 10px; max-width: 68ch; }
.post-row .cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); text-align: right; }

.article { max-width: 74ch; }
.article p { font-size: 18px; color: var(--text-soft); margin-bottom: 1.5em; }
.article p:first-of-type { font-size: 21px; color: var(--text); }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .78fr); gap: clamp(32px, 5vw, 80px); align-items: start; }

.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--text);
  background: #fff; border: 1px solid var(--line-light); padding: 14px 16px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226, 98, 44, .13);
}
.field .err { color: var(--accent-deep); font-size: 13px; margin-top: 7px; }
.field.has-error input, .field.has-error textarea { border-color: var(--accent-deep); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.notice {
  border-left: 3px solid var(--accent); background: var(--paper-2);
  padding: 18px 22px; margin-bottom: 28px; font-size: 15px;
}

.contact-block { border-top: 1px solid var(--line-light); padding: 24px 0; }
.contact-block:first-child { border-top: 0; padding-top: 0; }
.contact-block .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 12px; }
.contact-block .v { font-family: var(--display); font-size: clamp(19px, 2.1vw, 26px); font-weight: 700; letter-spacing: -0.02em; }
.contact-block .v a:hover { color: var(--accent); }
.contact-block .sub { font-size: 14.5px; color: var(--text-soft); margin-top: 8px; }

.office-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.office-card { background: var(--ink); padding: clamp(24px, 3vw, 38px); color: var(--text-inv); }
.office-card .role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.office-card h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 14px; }
.office-card address { font-style: normal; color: var(--text-inv-soft); font-size: 15px; line-height: 1.7; }
.office-card .links { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 12px; }
.office-card .links a { color: var(--text-inv); }
.office-card .links a:hover { color: var(--accent); }
.office-card .map { margin-top: 16px; display: inline-block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }

.cta { background: var(--accent); color: #fff; padding-block: clamp(52px, 6vw, 96px); }
.cta .eyebrow { color: rgba(255,255,255,.8); }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(28px, 5vw, 72px); align-items: end; }
.cta-title { font-size: clamp(28px, 4vw, 52px); text-transform: uppercase; font-weight: 800; color: #fff; }
.cta-side p { color: rgba(255,255,255,.9); font-size: 16px; margin-bottom: 22px; }
.cta .btn-accent { background: var(--ink); }
.cta .btn-accent:hover { background: #000; }

.site-foot { background: var(--ink); color: var(--text-inv); padding-block: clamp(52px, 6vw, 88px) 30px; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, .7fr)); gap: clamp(24px, 4vw, 56px); padding-bottom: clamp(36px, 4vw, 56px); }
.foot-tag { color: var(--text-inv-soft); font-size: 15px; margin-top: 16px; max-width: 34ch; }
.foot-since { color: var(--steel); margin-top: 18px; }
.foot-h { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--text-inv-soft); font-size: 14.5px; transition: color .18s ease; }
.foot-col a:hover { color: var(--text-inv); }
.foot-hours { color: var(--steel); font-size: 13px; margin-top: 6px; }

.foot-offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); padding: clamp(28px, 3vw, 44px) 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.foot-office .office-role { color: var(--accent); margin-bottom: 10px; }
.foot-office .office-title { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 15px; letter-spacing: .02em; margin-bottom: 8px; }
.foot-office .office-address { color: var(--text-inv-soft); font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.foot-office a { font-family: var(--mono); font-size: 12px; color: var(--steel); }
.foot-office a:hover { color: var(--accent); }

.foot-bar { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; padding-top: 26px; color: var(--steel); }
.foot-social { display: flex; gap: 20px; }
.foot-social a { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-inv-soft); }
.foot-social a:hover { color: var(--accent); }

.notfound { min-height: 70svh; display: grid; place-items: center; text-align: center; padding: 160px 0 100px; }
.notfound .code { font-family: var(--display); font-weight: 800; font-size: clamp(80px, 18vw, 220px); line-height: .85; letter-spacing: -0.06em; color: var(--paper-3); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 1180px) {
  .head-phone { display: none; }
}

@media (max-width: 1080px) {
  .team { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .project-body { grid-template-columns: 1fr; }
  .service-head { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .project-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: flex; }
}

@media (max-width: 900px) {
  .disciplines, .mini-phases, .office-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .section-head, .intro-grid, .contact-grid, .cta-inner { grid-template-columns: 1fr; }
  .project-grid, .project-grid.cols-3 { grid-template-columns: 1fr; }
  .values, .service-items { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 64px 1fr; }
  .phase ul { grid-column: 2; }
  .post-row { grid-template-columns: 1fr; gap: 10px; }
  .post-row .cat { text-align: left; }
  .foot-offices { grid-template-columns: 1fr; }
  .next-project { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .disciplines, .mini-phases, .office-cards, .team, .foot-grid { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 54px 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .hero-kicker::before { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
}

.project-gallery { margin-top: clamp(40px, 5vw, 72px); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.gallery-grid figure { margin: 0; background: var(--ink); overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
