@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #ffffff;
  --paper-warm: #f5f4ef;
  --ink: #111412;
  --ink-soft: #39403c;
  --line: #d8dedb;
  --line-dark: #333a36;
  --line-dark-soft: #46504b;
  --pylon: #dfe8e5;
  --yellow: #f2b400;
  --yellow-strong: #ffc400;
  --yellow-deep: #725800;
  --yellow-tint: #f4e5ad;
  --registry: #69716d;
  --inverse-soft: #aeb7b2;
  --footer-muted: #89938e;
  --red: #df492d;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --max: 1440px;
  --gutter: clamp(20px, 3.6vw, 64px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-color: var(--yellow) var(--paper-warm);
  scrollbar-width: thin;
}

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

body.menu-open { overflow: hidden; }

::selection { color: var(--ink); background: var(--yellow); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-warm); }
::-webkit-scrollbar-thumb { background: var(--yellow); border: 3px solid var(--paper-warm); }

a { color: inherit; text-underline-offset: 0.22em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; display: block; }

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform 160ms var(--ease-out);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 12px var(--gutter);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  transition: box-shadow 200ms ease;
}

.site-header.is-compact {
  box-shadow: 0 18px 42px rgba(17, 20, 18, 0.07);
}

.brand { position: relative; width: min(220px, 28vw); min-height: 64px; }
.brand img { position: absolute; left: 0; top: 50%; width: 100%; height: auto; transform: translateY(-50%); }

.desktop-nav {
  justify-self: end;
  display: flex;
  gap: clamp(20px, 2.6vw, 42px);
  margin-right: clamp(24px, 3vw, 54px);
}

.desktop-nav a,
.header-phone {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--yellow);
  transition: right 180ms var(--ease-out);
}

.header-phone {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-toggle,
.mobile-nav { display: none; }

.hero { min-height: calc(100svh - 88px); }

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 16vw, 275px) 84px;
  grid-template-rows: minmax(560px, calc(100svh - 150px)) 62px;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper-warm);
}

.hero-main-frame,
.hero-peek {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #dce2df;
}

.hero-main-frame { cursor: grab; touch-action: pan-y; }
.hero-main-frame.is-dragging { cursor: grabbing; }

.hero-slides,
.hero-slide { position: absolute; inset: 0; }

.hero-slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  pointer-events: none;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transition: clip-path 680ms var(--ease-in-out), opacity 180ms ease;
}

.hero-slide.was-active {
  z-index: 1;
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.hero-gallery.is-prev .hero-slide { clip-path: inset(0 100% 0 0); }
.hero-gallery.is-prev .hero-slide.is-active { clip-path: inset(0 0 0 0); }
.hero-gallery.is-keyboard .hero-slide.is-active { transition-duration: 0ms; }

.hero-slide img,
.hero-peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide img {
  transform: scale(1.018);
  transition: transform 760ms var(--ease-in-out);
}

.hero-slide.is-active img { transform: scale(1); }
.hero-gallery.is-keyboard .hero-slide img { transition-duration: 0ms; }

.hero-slide:first-child img { object-position: center 60%; }
.hero-peek img { filter: saturate(0.9) contrast(1.03); }

.hero-peek::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: var(--paper);
  pointer-events: none;
}

.hero-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--paper);
  border-left: 1px solid var(--line);
}

.hero-index button {
  position: relative;
  width: 42px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #606864;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: color 160ms ease, transform 120ms var(--ease-out);
}

.hero-index button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 18px;
  height: 2px;
  background: var(--yellow);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.5);
  transition: opacity 160ms ease, transform 180ms var(--ease-out);
}

.hero-index button.is-active { color: var(--ink); }
.hero-index button.is-active::after { opacity: 1; transform: translateX(-50%) scaleX(1); }

.hero-sheet {
  position: absolute;
  z-index: 10;
  left: var(--gutter);
  bottom: 106px;
  width: min(680px, 49vw);
  padding: clamp(26px, 3vw, 52px);
  background: var(--paper);
  box-shadow: 0 34px 80px rgba(17, 20, 18, 0.16);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 520ms var(--ease-out);
}

.hero-sheet::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(26px, 3vw, 52px);
  width: 72px;
  height: 4px;
  background: var(--yellow);
}

@starting-style {
  .hero-sheet {
    opacity: 0;
    transform: translateY(18px);
  }
}

.hero-sheet h1 {
  position: relative;
  margin: 0;
  max-width: 11ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(48px, 5.4vw, 86px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-disciplines {
  position: relative;
  margin: 24px 0 0;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy {
  position: relative;
  max-width: 58ch;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.05vw, 17px);
}

.hero-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  margin: 28px 0 -52px;
}

.button {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.button svg,
.service-row svg,
.hero-controls svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button svg { transition: transform 160ms var(--ease-out); }

.button-primary { background: var(--yellow); }
.button-secondary { background: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); }
.button-dark { color: var(--paper); background: var(--ink); }

.hero-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) 1fr auto 50px 50px;
  align-items: center;
  gap: 18px;
  padding: 0 var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.hero-controls p {
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.progress { height: 2px; overflow: hidden; background: var(--line); }
.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(0.1667);
  transform-origin: left center;
  transition: transform 680ms var(--ease-in-out);
}

.counter {
  min-width: 70px;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.hero-controls button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 160ms ease, transform 120ms var(--ease-out);
}

.drag-hint {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 5;
  padding: 6px 9px;
  color: var(--paper);
  background: rgba(17, 20, 18, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 160px) var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 104px);
}

.section-heading h2,
.cycle h2,
.company h2,
.clients h2,
.contact-cta h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-soft);
}

.service-register { border-top: 1px solid var(--ink); }

.service-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.46fr) minmax(210px, 0.72fr) minmax(300px, 1fr) 32px;
  gap: 28px;
  align-items: center;
  min-height: 148px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.service-code {
  color: #69716d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-row h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 520;
  line-height: 1;
  text-transform: uppercase;
}

.service-row p { margin: 0; color: var(--ink-soft); }
.service-row svg { transition: transform 180ms var(--ease-out); }
.service-row-compact { min-height: 116px; }

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.cycle {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 150px);
  padding: clamp(90px, 10vw, 160px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.cycle-copy > p { max-width: 42ch; margin: 28px 0 0; color: var(--inverse-soft); }

.cycle-route {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.cycle-route::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #343a37;
}

.cycle-route::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  width: 2px;
  height: calc(100% - 40px);
  background: var(--yellow);
  transform: scaleY(var(--route-scale, 0));
  transform-origin: top center;
  transition: transform 260ms var(--ease-out);
}

.cycle-route li {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(170px, 0.8fr) 1fr;
  gap: 24px;
  min-height: 112px;
  align-items: start;
  counter-increment: route;
}

.cycle-route li::before {
  content: "";
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  margin-top: 8px;
  border: 4px solid var(--ink);
  outline: 1px solid #69716d;
  background: #69716d;
  transition: background-color 180ms ease, outline-color 180ms ease;
}

.cycle-route li.is-active::before { background: var(--yellow); outline-color: var(--yellow); }

.cycle-route span {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
}

.cycle-route p { margin: 4px 0 0; color: var(--inverse-soft); }

.works {
  max-width: 1660px;
  padding-top: clamp(64px, 7vw, 100px);
  padding-bottom: clamp(64px, 7vw, 100px);
}

.works-heading {
  max-width: var(--max);
  margin-right: auto;
  margin-bottom: clamp(32px, 4vw, 56px);
  margin-left: auto;
}

.work-ledger {
  display: grid;
  grid-template-columns: 1.4fr 0.72fr 0.72fr;
  grid-template-rows: clamp(320px, 34vw, 480px);
  gap: 14px;
}

.work-ledger figure { position: relative; margin: 0; overflow: hidden; background: #dce2df; }
.work-ledger img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease-out), filter 220ms ease; }
.work-large { grid-column: 1; grid-row: 1; }
.work-tall { grid-column: 2; grid-row: 1; }
.work-small { grid-column: 3; grid-row: 1; }

.work-ledger figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--paper);
  transition: transform 220ms var(--ease-out);
}

.work-ledger figcaption span { font-size: 12px; font-weight: 800; }
.work-ledger figcaption small { color: var(--ink-soft); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.work-tall figcaption,
.work-small figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }

.reveal-media { clip-path: inset(0 0 7% 0); opacity: 0.88; transition: clip-path 780ms var(--ease-in-out), opacity 260ms ease; }
.work-ledger .reveal-media:nth-child(2) { transition-delay: 70ms; }
.work-ledger .reveal-media:nth-child(3) { transition-delay: 140ms; }
.reveal-media.is-visible { clip-path: inset(0); opacity: 1; }

.company {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 9vw, 150px);
  max-width: none;
  overflow: hidden;
  background: var(--paper-warm);
}

.company > *:not(.company-watermark) { position: relative; z-index: 1; }

.company-watermark {
  position: absolute;
  inset: 8% 0 0 46%;
  background: url("assets/brand/letterhead-lines.webp") center / cover no-repeat;
  opacity: 0.72;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.company-title-wrap { max-width: 780px; justify-self: end; }
.company-copy { max-width: 580px; padding-top: 14px; }
.company-lead { margin: 0 0 30px; font-size: clamp(22px, 2.2vw, 32px); line-height: 1.25; font-weight: 650; }
.company-copy > p:not(.company-lead) { max-width: 64ch; color: var(--ink-soft); }

.company-details { margin: 56px 0 0; border-top: 1px solid var(--ink); }
.company-details div { display: grid; grid-template-columns: 120px 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); }
.company-details dt { color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.company-details dd { margin: 0; font-variant-numeric: tabular-nums; }

.clients h2 { max-width: 12ch; }
.client-register { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(52px, 7vw, 100px); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client-register div { min-height: 145px; display: grid; place-items: center; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.client-register img { max-width: 84%; max-height: 60px; width: auto; height: auto; opacity: 0.66; filter: grayscale(1); transition: opacity 180ms ease, filter 180ms ease, transform 180ms var(--ease-out); }

.permits { padding-top: 80px; }
.permit-list { border-top: 1px solid var(--ink); }

.permit-list details { border-bottom: 1px solid var(--line); }
.permit-list summary {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.36fr) 28px;
  gap: 30px;
  align-items: center;
  min-height: 112px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease;
}

.permit-list summary::-webkit-details-marker { display: none; }
.permit-list summary span { font-size: clamp(19px, 2vw, 28px); font-weight: 650; }
.permit-list summary small { color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.permit-list summary i { position: relative; width: 22px; height: 22px; }
.permit-list summary i::before,
.permit-list summary i::after { content: ""; position: absolute; left: 2px; top: 10px; width: 18px; height: 1px; background: currentColor; transition: transform 180ms var(--ease-out); }
.permit-list summary i::after { transform: rotate(90deg); }
.permit-list details[open] summary i::after { transform: rotate(0); }
.permit-list details > p { max-width: 72ch; margin: -10px 0 34px; color: var(--ink-soft); }

.contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  min-height: 580px;
  padding: clamp(90px, 11vw, 170px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.contact-cta > *:not(.contact-lines) { position: relative; z-index: 1; }
.contact-lines { position: absolute; inset: 0 40% 0 0; background: url("assets/brand/letterhead-lines.webp") center / cover no-repeat; opacity: 0.55; pointer-events: none; }
.contact-cta h2 { max-width: 10ch; }
.contact-cta p { max-width: 58ch; margin: 28px 0 0; color: var(--ink-soft); font-size: 18px; }
.contact-actions { display: grid; grid-template-columns: 1fr; box-shadow: 0 34px 80px rgba(17, 20, 18, 0.13); }

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.7fr);
  gap: 1px;
  padding: 1px;
  color: #edf1ef;
  background: var(--line-dark);
}

.site-footer > div { background: var(--ink); padding: clamp(28px, 4vw, 58px); }
.footer-brand { color: #edf1ef; }
.footer-brand img { width: min(300px, 100%); height: auto; }
.footer-brand > p { margin: 32px 0 16px; font-weight: 800; }
.footer-brand dl { margin: 0; }
.footer-brand dl div { display: flex; gap: 10px; font-size: 12px; font-variant-numeric: tabular-nums; }
.footer-brand dt { font-weight: 800; }
.footer-brand dd { margin: 0; }
.footer-column h2 { margin: 0 0 30px; color: var(--footer-muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-column a,
.footer-column p,
.footer-column address { display: block; margin: 0 0 12px; color: #d6dcd9; font-style: normal; text-decoration: none; }
.footer-phone { color: var(--paper) !important; font-family: "Oswald", sans-serif; font-size: clamp(27px, 2.2vw, 38px); font-variant-numeric: tabular-nums; }
.footer-nav a { width: max-content; }
.footer-base { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 30px; padding-top: 22px !important; padding-bottom: 22px !important; }
.footer-base p { margin: 0; color: var(--footer-muted); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }

/* Multi-page system */

.desktop-nav a[aria-current="page"]::after { right: 0; }

.inner-page main { overflow: hidden; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-bottom: clamp(42px, 6vw, 82px);
  color: #69716d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.breadcrumbs > * { position: relative; text-decoration: none; }
.breadcrumbs > * + *::before { content: "/"; position: absolute; left: -12px; color: #a7afab; }
.breadcrumbs span { color: var(--ink); }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(380px, 0.82fr);
  min-height: min(780px, calc(100svh - 88px));
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(50px, 7vw, 116px) var(--gutter) clamp(72px, 8vw, 128px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.page-meta {
  margin: 0 0 24px;
  color: var(--yellow-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero h1,
.status-page h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 560;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.page-hero-copy > p:not(.page-meta) {
  max-width: 62ch;
  margin: 30px 0 36px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 21px);
}

.page-hero-copy .button { min-width: min(100%, 260px); }

.page-hero-media { position: relative; min-height: 520px; margin: 0; overflow: hidden; background: #dce2df; }
.page-hero-media::before { content: ""; position: absolute; z-index: 2; left: 0; top: 0; width: 10px; height: 100%; background: var(--paper); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media figcaption { position: absolute; left: 10px; bottom: 0; padding: 13px 18px; color: var(--ink); background: var(--paper); font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }

.content-section,
.evidence-section,
.request-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 156px) var(--gutter);
}

.content-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 94px);
}

.content-heading h2,
.request-intro h2,
.related-section > h2,
.company-manifest h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.content-heading p { max-width: 58ch; margin: 0; color: var(--ink-soft); }

.scope-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.scope-ledger li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  min-height: 150px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.scope-ledger li:nth-child(odd) { border-right: 1px solid var(--line); }
.scope-ledger li:nth-child(even) { padding-left: 28px; }
.scope-ledger span { color: var(--registry); font-family: "Oswald", sans-serif; font-size: 15px; font-variant-numeric: tabular-nums; }
.scope-ledger p { margin: 0; font-size: clamp(18px, 1.45vw, 23px); font-weight: 650; line-height: 1.35; }

.process-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 150px);
  padding: clamp(88px, 10vw, 150px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  color: var(--paper);
  background: var(--ink);
}

.process-band h2 { margin: 0; font-family: "Oswald", sans-serif; font-size: clamp(48px, 5vw, 78px); font-weight: 560; line-height: 0.98; text-transform: uppercase; }
.process-band > div p { max-width: 42ch; margin: 25px 0 0; color: #abb5b0; }
.process-band ol { margin: 0; padding: 0; border-top: 1px solid var(--line-dark-soft); list-style: none; }
.process-band li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 23px 0; border-bottom: 1px solid #333a36; font-size: clamp(17px, 1.35vw, 22px); }
.process-band li span { color: var(--yellow); font-family: "Oswald", sans-serif; font-size: 14px; }

.result-register {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
  counter-reset: result;
}

.result-register li { position: relative; min-height: 118px; padding: 28px 64px 28px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: clamp(18px, 1.4vw, 22px); font-weight: 650; counter-increment: result; }
.result-register li:nth-child(2n) { border-right: 0; }
.result-register li::after { content: "✓"; position: absolute; right: 24px; top: 27px; color: var(--yellow-deep); background: var(--yellow); width: 28px; height: 28px; display: grid; place-items: center; font-weight: 900; }

.evidence-section { max-width: 1660px; padding-top: 70px; }
.evidence-section .content-heading { max-width: var(--max); margin-left: auto; margin-right: auto; }
.evidence-rail { display: grid; grid-template-columns: 1.25fr 0.75fr 0.75fr; grid-auto-rows: minmax(260px, 30vw); gap: 12px; }
.evidence-rail figure { position: relative; margin: 0; overflow: hidden; background: #dce2df; }
.evidence-rail .evidence-wide { grid-row: span 2; }
.evidence-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease-out); }
.evidence-rail figcaption { position: absolute; left: 0; bottom: 0; display: grid; gap: 3px; max-width: calc(100% - 24px); padding: 12px 16px; color: var(--ink); background: var(--paper); }
.evidence-rail figcaption span { font-size: 12px; font-weight: 800; }
.evidence-rail figcaption small { color: var(--ink-soft); font-size: 10px; letter-spacing: 0.07em; text-transform: uppercase; }

.related-section { padding-top: 70px; }
.related-section > h2 { max-width: 10ch; margin-bottom: 56px; }
.related-links { border-top: 1px solid var(--ink); }
.related-links a { display: grid; grid-template-columns: 1fr 28px; gap: 28px; align-items: center; min-height: 96px; padding: 18px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.related-links span { font-size: clamp(20px, 2vw, 30px); font-weight: 700; }
.related-links svg,
.text-link svg,
.tender-links svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform 160ms var(--ease-out); }

.request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 150px);
  max-width: none;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}

.request-intro { justify-self: end; max-width: 560px; }
.request-intro p { max-width: 48ch; margin: 26px 0 0; color: var(--ink-soft); }
.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; width: min(100%, 850px); }
.field { display: grid; gap: 9px; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label,
.file-field > label { font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.file-field small { display: block; margin-top: 4px; color: var(--registry); font-size: 10px; letter-spacing: 0; text-transform: none; }
.field input,
.field textarea { width: 100%; min-height: 54px; padding: 13px 0; border: 0; border-bottom: 1px solid #7f8984; border-radius: 0; color: var(--ink); background: transparent; font: inherit; transition: border-color 160ms ease, background-color 160ms ease; }
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus { outline: 0; border-color: var(--ink); background: rgba(255, 255, 255, 0.64); }
.field input[type="file"] { padding: 12px; border: 1px dashed #7f8984; font-size: 13px; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: var(--ink-soft); font-size: 12px; }
.consent input { width: 20px; height: 20px; margin: 0; accent-color: var(--yellow); }
.form-submit { display: grid; grid-template-columns: minmax(220px, 0.55fr) 1fr; gap: 24px; align-items: center; }
.form-submit .button { width: 100%; cursor: pointer; }
.form-submit p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.service-catalog { max-width: var(--max); }

.works-register { max-width: 1660px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 1px; margin-bottom: 40px; background: var(--line); border: 1px solid var(--line); width: max-content; max-width: 100%; }
.filter-bar button { min-height: 46px; padding: 10px 18px; border: 0; color: var(--ink-soft); background: var(--paper); font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; }
.filter-bar button.is-active { color: var(--ink); background: var(--yellow); }
.work-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.work-gallery figure { grid-column: span 4; margin: 0; border-bottom: 1px solid var(--line); }
.work-gallery figure:nth-child(1), .work-gallery figure:nth-child(6) { grid-column: span 7; }
.work-gallery figure:nth-child(2), .work-gallery figure:nth-child(7) { grid-column: span 5; }
.work-gallery figure[hidden] { display: none; }
.work-gallery button { position: relative; width: 100%; height: clamp(280px, 34vw, 540px); padding: 0; overflow: hidden; border: 0; background: #dce2df; cursor: zoom-in; }
.work-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease-out); }
.work-gallery button span { position: absolute; right: 0; bottom: 0; padding: 9px 12px; color: var(--ink); background: var(--yellow); font-size: 10px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; transform: translateY(100%); transition: transform 180ms var(--ease-out); }
.work-gallery figcaption { display: flex; justify-content: space-between; gap: 24px; padding: 16px 0 26px; }
.work-gallery figcaption strong { font-size: 14px; }
.work-gallery figcaption small { color: var(--ink-soft); font-size: 10px; letter-spacing: 0.07em; text-transform: uppercase; }
.media-note { max-width: 80ch; margin: 50px 0 0; padding-top: 20px; border-top: 2px solid var(--yellow); color: var(--ink-soft); }

.lightbox { width: min(94vw, 1480px); max-width: none; height: min(92svh, 980px); max-height: none; padding: 0; overflow: hidden; border: 0; color: var(--paper); background: var(--ink); }
.lightbox::backdrop { background: rgba(8, 10, 9, 0.86); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); }
.lightbox figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; width: 100%; height: 100%; margin: 0; }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox figcaption { min-height: 58px; padding: 18px 70px; color: #d6dcd9; text-align: center; }
.lightbox-close,
.lightbox-nav { position: absolute; z-index: 2; display: grid; place-items: center; border: 0; color: var(--paper); background: rgba(17, 20, 18, 0.82); cursor: pointer; }
.lightbox-close { right: 14px; top: 14px; width: 46px; height: 46px; font-size: 28px; }
.lightbox-nav { top: 50%; width: 52px; height: 64px; font-size: 24px; transform: translateY(-50%); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.company-manifest { display: grid; grid-template-columns: 0.75fr 1fr; gap: clamp(50px, 10vw, 170px); background: var(--paper); }
.manifest-lead { margin: 24px 0 0; font-size: clamp(25px, 3vw, 44px); font-weight: 700; line-height: 1.15; }
.company-manifest > div:last-child { padding-top: 12px; }
.company-manifest > div:last-child p { margin: 0 0 30px; color: var(--ink-soft); font-size: clamp(17px, 1.3vw, 21px); }
.requisite-table { margin: 0; border-top: 1px solid var(--ink); }
.requisite-table div { display: grid; grid-template-columns: minmax(190px, 0.45fr) 1fr; gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.requisite-table dt { color: #69716d; font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.requisite-table dd { margin: 0; font-weight: 650; font-variant-numeric: tabular-nums; }
.text-link { display: inline-flex; align-items: center; gap: 18px; margin-top: 38px; font-weight: 800; text-decoration: none; }

.verification-note { max-width: 760px; margin: 56px 0 0 auto; padding: 24px 0 0 28px; border-top: 2px solid var(--yellow); border-left: 1px solid var(--line); }
.verification-note strong { display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; }
.verification-note p { margin: 0; color: var(--ink-soft); }

.contact-register { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: 0 auto; padding: clamp(70px, 8vw, 120px) var(--gutter); }
.contact-register > div { min-height: 210px; padding: 28px; border-top: 1px solid var(--ink); border-right: 1px solid var(--line); }
.contact-register > div:last-child { border-right: 0; }
.contact-register span { display: block; margin-bottom: 30px; color: #69716d; font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.contact-register a,
.contact-register address,
.contact-register p { margin: 0; font-style: normal; font-size: clamp(17px, 1.45vw, 23px); font-weight: 650; text-decoration: none; }

.tender-links { border-top: 1px solid var(--ink); }
.tender-links a { display: grid; grid-template-columns: 60px 1fr 28px; gap: 24px; align-items: center; min-height: 110px; border-bottom: 1px solid var(--line); text-decoration: none; }
.tender-links a > span { color: #6e7772; font-family: "Oswald", sans-serif; }
.tender-links strong { font-size: clamp(19px, 1.8vw, 28px); }

.legal-copy { max-width: 1040px; }
.legal-copy > section { padding: 0 0 50px; }
.legal-copy > section + section { padding-top: 50px; border-top: 1px solid var(--line); }
.legal-copy h2 { margin: 0 0 20px; font-family: "Oswald", sans-serif; font-size: clamp(30px, 3vw, 46px); font-weight: 560; line-height: 1.05; text-transform: uppercase; }
.legal-copy p { max-width: 75ch; margin: 0; color: var(--ink-soft); }

.status-page { min-height: calc(100svh - 88px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(80px, 10vw, 160px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); background: var(--paper-warm) url("assets/brand/letterhead-lines.webp") right center / min(58vw, 900px) auto no-repeat; }
.status-page > p:not(.page-meta) { max-width: 58ch; margin: 30px 0; color: var(--ink-soft); font-size: 18px; }
.status-page > div { display: flex; flex-wrap: wrap; }

@media (hover: hover) and (pointer: fine) {
  .evidence-rail figure:hover img,
  .work-gallery figure:hover img { transform: scale(1.025); }
  .related-links a:hover svg,
  .text-link:hover svg,
  .tender-links a:hover svg { transform: translateX(5px); }
  .work-gallery figure:hover button span { transform: translateY(0); }
  .filter-bar button:hover { color: var(--ink); background: var(--yellow-tint); }
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after { right: 0; }
  .button:hover { transform: translateY(-2px); }
  .button:hover svg { transform: translateX(4px); }
  .button-primary:hover { background: var(--yellow-strong); }
  .button-secondary:hover { color: var(--paper); background: var(--ink); }
  .button-dark:hover { color: var(--ink); background: var(--yellow); }
  .hero-index button:hover { color: var(--ink); }
  .hero-controls button:hover { background: var(--paper-warm); }
  .service-row:hover { background: var(--paper-warm); }
  .service-row:hover svg { transform: translateX(5px); }
  .work-ledger figure:hover img { transform: scale(1.025); filter: saturate(1.04); }
  .work-ledger figure:hover figcaption { transform: translateY(-4px); }
  .client-register div:hover img { opacity: 1; filter: grayscale(0); transform: scale(1.025); }
  .permit-list summary:hover { color: var(--yellow-deep); }
  .footer-column a:hover { color: var(--yellow); }
}

.button:active,
.hero-index button:active,
.hero-controls button:active,
.menu-toggle:active { transform: scale(0.97); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: minmax(170px, 220px) 1fr auto; }
  .header-phone { display: none; }
  .hero-gallery { grid-template-columns: minmax(0, 1fr) 155px 66px; }
  .hero-sheet { width: min(630px, 62vw); }
  .service-row { grid-template-columns: 130px 0.7fr 1fr 28px; gap: 20px; }
  .cycle { grid-template-columns: 1fr; }
  .cycle-copy { display: grid; grid-template-columns: 1fr 0.7fr; align-items: end; gap: 40px; }
  .site-footer { grid-template-columns: 1.2fr repeat(2, 0.8fr); }
  .footer-nav { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 72px; }
  .site-header { min-height: 72px; grid-template-columns: minmax(158px, 205px) 1fr auto; padding: 8px 20px; }
  .desktop-nav { display: none; }
  .menu-toggle {
    grid-column: 3;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: var(--paper);
    cursor: pointer;
    transition: transform 120ms var(--ease-out);
  }
  .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 220ms var(--ease-drawer); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    inset: 72px 0 auto;
    z-index: 99;
    display: grid;
    padding: 24px 20px 38px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 28px 60px rgba(17, 20, 18, 0.16);
    transform-origin: top right;
    transition: opacity 160ms ease, transform 220ms var(--ease-drawer);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav[data-closing] { opacity: 0; transform: translateY(-12px) scale(0.98); transition-duration: 120ms; }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: "Oswald", sans-serif; font-size: 24px; text-decoration: none; text-transform: uppercase; opacity: 1; transform: translateY(0); transition: color 160ms ease, opacity 180ms ease, transform 220ms var(--ease-out); }
  .mobile-nav a:nth-child(2) { transition-delay: 35ms; }
  .mobile-nav a:nth-child(3) { transition-delay: 70ms; }
  .mobile-nav a:nth-child(4) { transition-delay: 105ms; }
  .mobile-nav a:nth-child(5) { transition-delay: 140ms; }
  @starting-style {
    .mobile-nav { opacity: 0; transform: translateY(-12px) scale(0.98); }
    .mobile-nav a { opacity: 0; transform: translateY(-6px); }
  }
  .hero { min-height: 0; }
  .hero-gallery { display: grid; grid-template-columns: minmax(0, 1fr) 92px; grid-template-rows: minmax(420px, 62svh) auto auto; }
  .hero-main-frame { grid-column: 1; }
  .hero-peek { grid-column: 2; }
  .hero-index { display: none; }
  .hero-sheet { position: relative; left: auto; bottom: auto; grid-column: 1 / -1; grid-row: 2; width: auto; padding: 36px 24px 0; box-shadow: none; }
  .hero-sheet::before { display: none; }
  .hero-sheet h1 { font-size: clamp(48px, 12vw, 72px); }
  .hero-actions { margin: 28px 0 0; }
  .hero-controls { grid-column: 1 / -1; grid-row: 3; grid-template-columns: 1fr auto 44px 44px; min-height: 70px; padding: 0 20px; }
  .hero-controls p { display: none; }
  .progress { grid-column: 1; }
  .counter { grid-column: 2; }
  .section-heading { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .section-heading > * { min-width: 0; }
  .service-row { grid-template-columns: 1fr 30px; gap: 12px 18px; padding: 28px 0; }
  .service-code { grid-column: 1; }
  .service-row h3 { grid-column: 1; }
  .service-row p { grid-column: 1; }
  .service-row svg { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .cycle-copy { grid-template-columns: 1fr; }
  .work-ledger {
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: clamp(380px, 58vw, 520px);
  }
  .work-large { grid-column: 1; grid-row: 1 / -1; }
  .work-tall { grid-column: 2; grid-row: 1; }
  .work-small { grid-column: 2; grid-row: 2; }
  .company { grid-template-columns: 1fr; }
  .company-title-wrap { justify-self: start; }
  .company-watermark { inset: 38% -30% 0 16%; opacity: 0.5; }
  .client-register { grid-template-columns: repeat(2, 1fr); }
  .permit-list summary { grid-template-columns: 1fr 26px; gap: 16px; }
  .permit-list summary small { grid-column: 1; grid-row: 2; }
  .permit-list summary i { grid-column: 2; grid-row: 1 / 3; }
  .contact-cta { grid-template-columns: 1fr; }
  .contact-lines { inset: 28% 0 0 0; opacity: 0.42; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-nav { grid-column: auto; }
}

@media (max-width: 540px) {
  :root { --gutter: 18px; }
  body { font-size: 15px; }
  .brand { width: 190px; min-height: 52px; }
  .hero-gallery { grid-template-columns: minmax(0, 1fr) 64px; grid-template-rows: minmax(300px, 38svh) auto auto; }
  .hero-sheet { padding: 30px 18px 0; }
  .hero-sheet h1 { font-size: clamp(40px, 11.5vw, 52px); }
  .hero-disciplines { max-width: 32ch; line-height: 1.7; }
  .hero-copy { display: none; }
  .hero-actions { grid-template-columns: 1fr; margin-top: 22px; }
  .button { min-height: 58px; }
  .drag-hint { display: none; }
  .hero-controls { padding: 0 12px 0 18px; gap: 9px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .section-heading { gap: 28px; margin-bottom: 48px; }
  .section-heading h2,
  .cycle h2,
  .company h2,
  .clients h2,
  .contact-cta h2 { font-size: clamp(40px, 12vw, 62px); overflow-wrap: anywhere; hyphens: auto; }
  .cycle { padding: 82px 18px; }
  .cycle-route li { grid-template-columns: 26px 1fr; gap: 14px; padding-bottom: 24px; }
  .cycle-route li p { grid-column: 2; margin-top: -8px; }
  .works {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .works-heading { margin-bottom: 36px; }
  .work-ledger {
    display: flex;
    height: min(92vw, 420px);
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .work-ledger::-webkit-scrollbar { display: none; }
  .work-ledger figure {
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }
  .company-details div { grid-template-columns: 92px 1fr; }
  .client-register { grid-template-columns: 1fr 1fr; }
  .client-register div { min-height: 112px; padding: 20px; }
  .contact-cta { min-height: 600px; padding: 84px 18px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand, .footer-base { grid-column: 1; }
  .footer-nav { grid-column: 1; }
  .footer-base { display: grid; }
}

@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; }
  .hero-sheet,
  .hero-slide,
  .hero-slide img,
  .mobile-nav,
  .mobile-nav a,
  .reveal-media,
  .button,
  .button svg,
  .work-ledger img,
  .work-ledger figcaption { transition-duration: 0.01ms !important; transition-delay: 0ms !important; }
  .hero-slide.is-active { transition: opacity 180ms ease; clip-path: inset(0); }
  .hero-slide img,
  .hero-slide.is-active img { transform: none; }
  .reveal-media { transition: opacity 180ms ease; clip-path: inset(0); }
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 18px; margin-right: 0; }
  .page-hero { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); }
  .request-section { grid-template-columns: 0.62fr 1fr; gap: 60px; }
  .contact-register { grid-template-columns: 1fr 1fr; }
  .contact-register > div:nth-child(2) { border-right: 0; }
}

@media (max-width: 820px) {
  .page-hero { grid-template-columns: 1fr; min-height: 0; }
  .page-hero-copy { min-height: 590px; padding: 54px 20px 72px; }
  .page-hero-media { min-height: min(72vw, 580px); }
  .breadcrumbs { margin-bottom: 52px; }
  .content-heading { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .scope-ledger { grid-template-columns: 1fr; }
  .scope-ledger li:nth-child(odd) { border-right: 0; }
  .scope-ledger li:nth-child(even) { padding-left: 0; }
  .process-band { grid-template-columns: 1fr; }
  .result-register { grid-template-columns: 1fr; }
  .result-register li { border-right: 0; }
  .evidence-rail { grid-template-columns: 1.15fr 0.85fr; grid-auto-rows: minmax(260px, 52vw); }
  .evidence-rail .evidence-wide { grid-column: 1 / -1; grid-row: auto; }
  .request-section { grid-template-columns: 1fr; }
  .request-intro { justify-self: start; }
  .work-gallery figure,
  .work-gallery figure:nth-child(1),
  .work-gallery figure:nth-child(2),
  .work-gallery figure:nth-child(6),
  .work-gallery figure:nth-child(7) { grid-column: span 6; }
  .company-manifest { grid-template-columns: 1fr; }
  .contact-register { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .page-hero-copy { min-height: 530px; padding: 46px 18px 62px; }
  .page-hero h1 { max-width: 100%; font-size: clamp(38px, 11vw, 54px); overflow-wrap: normal; }
  .status-page h1 { font-size: clamp(48px, 14vw, 70px); overflow-wrap: anywhere; }
  .page-hero-copy > p:not(.page-meta) { font-size: 16px; }
  .content-section,
  .evidence-section,
  .request-section { padding: 78px 18px; }
  .content-heading { margin-bottom: 46px; }
  .content-heading h2,
  .request-intro h2,
  .related-section > h2,
  .company-manifest h2 { font-size: clamp(40px, 12vw, 58px); overflow-wrap: anywhere; }
  .scope-ledger li { grid-template-columns: 38px 1fr; gap: 14px; min-height: 120px; padding: 24px 0; }
  .process-band { padding: 78px 18px; }
  .process-band li { grid-template-columns: 38px 1fr; gap: 14px; }
  .result-register li { min-height: 100px; padding-left: 0; }
  .evidence-rail { grid-template-columns: 1fr; grid-auto-rows: 74vw; }
  .request-form { grid-template-columns: 1fr; }
  .request-form .field,
  .request-form .field-wide { grid-column: 1; }
  .form-submit { grid-template-columns: 1fr; }
  .filter-bar { width: 100%; }
  .filter-bar button { flex: 1 1 45%; }
  .work-gallery { grid-template-columns: 1fr; }
  .work-gallery figure,
  .work-gallery figure:nth-child(1),
  .work-gallery figure:nth-child(2),
  .work-gallery figure:nth-child(6),
  .work-gallery figure:nth-child(7) { grid-column: 1; }
  .work-gallery button { height: 76vw; }
  .work-gallery figcaption { display: grid; gap: 5px; }
  .lightbox { width: 100vw; height: 100svh; }
  .lightbox figcaption { padding-left: 56px; padding-right: 56px; }
  .requisite-table div { grid-template-columns: 1fr; gap: 8px; }
  .contact-register { grid-template-columns: 1fr; padding: 70px 18px; }
  .contact-register > div { min-height: 155px; padding: 24px 0; border-right: 0; }
  .tender-links a { grid-template-columns: 38px 1fr 24px; gap: 12px; }
  .status-page { min-height: calc(100svh - 72px); padding: 72px 18px; background-size: auto 60%; background-position: right bottom; }
  .status-page > div { display: grid; width: 100%; }
}
