@font-face {
  font-family: "Noventra Sans";
  src: url("fonts/URWGothic-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noventra Sans";
  src: url("fonts/URWGothic-Demi.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noventra Mono";
  src: url("fonts/NimbusMonoPS-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noventra Mono";
  src: url("fonts/NimbusMonoPS-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #12151c;
  --ink-soft: #2d3340;
  --bone: #f1f0e9;
  --paper: #fbfaf5;
  --white: #ffffff;
  --blue: #2154ff;
  --blue-dark: #153cc7;
  --cyan: #9ce9ee;
  --orange: #ff612f;
  --silver: #d8d8d1;
  --silver-dark: #a7a9a3;
  --line: rgba(18, 21, 28, 0.18);
  --container: min(1420px, calc(100vw - 64px));
  --sans: "Noventra Sans", Arial, sans-serif;
  --mono: "Noventra Mono", "Courier New", monospace;
  --shadow: 0 28px 80px rgba(18, 21, 28, 0.15);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

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

button { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -100px;
  left: 20px;
  padding: 12px 16px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.skip-link:focus { top: 18px; }

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 28px;
  padding-bottom: 0.06em;
  font-size: clamp(3.7rem, 7.7vw, 8.6rem);
  line-height: 0.95;
}

h2 {
  max-width: 1000px;
  margin-bottom: 24px;
  padding-bottom: 0.03em;
  font-size: clamp(2.55rem, 5vw, 5.7rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.35rem, 2.1vw, 2.25rem);
  line-height: 1.08;
}

h4 { margin-bottom: 8px; font-size: 1.12rem; }
p { margin-top: 0; }

.mono,
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  background: var(--orange);
  content: "";
}

.lede {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.6vw, 1.4rem);
  line-height: 1.5;
}

.muted { color: var(--ink-soft); }

.topline {
  min-height: 38px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topline-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.topline p { margin: 0; }

.topline-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topline a { text-decoration: none; }
.topline a:hover { color: white; }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(241, 240, 233, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 245, 0.97);
  box-shadow: 0 10px 36px rgba(18, 21, 28, 0.08);
}

.header-grid {
  display: grid;
  min-height: 88px;
  align-items: stretch;
  grid-template-columns: minmax(240px, 330px) 1fr auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 1rem; font-weight: 700; letter-spacing: 0.055em; }
.brand-sub { margin-top: 7px; color: var(--ink-soft); font-family: var(--mono); font-size: 0.57rem; letter-spacing: 0.1em; }

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 clamp(12px, 1.5vw, 24px);
  border-right: 1px solid rgba(18, 21, 28, 0.08);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--blue); }

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  padding-left: 18px;
  gap: 12px;
}

.language-switch {
  display: flex;
  border: 1px solid var(--line);
  background: var(--paper);
}

.language-switch a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
}

.language-switch a + a { border-left: 1px solid var(--line); }
.language-switch a[aria-current="true"] { background: var(--ink); color: white; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button::after { content: "↗"; color: var(--orange); font-size: 1rem; }
.button:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.button:hover::after { color: white; }
.button-blue { background: var(--blue); border-color: var(--blue); }
.button-blue:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.button-ghost { background: transparent; color: var(--ink); }
.button-ghost:hover { color: white; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after { content: "→"; transition: transform 180ms ease; }
.text-link:hover::after { transform: translateX(6px); }
.section-ink .text-link { color: var(--cyan); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  content: "";
}

.mobile-menu { display: none; }

.home-hero {
  position: relative;
  padding-top: clamp(24px, 3vw, 42px);
  background: linear-gradient(135deg, var(--bone) 0 72%, rgba(156, 233, 238, 0.3) 72% 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.home-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom: 0;
  box-shadow: 0 30px 80px rgba(18, 21, 28, 0.09);
}

.home-image {
  position: relative;
  z-index: 0;
  min-height: 470px;
  grid-column: 1 / -1;
  overflow: hidden;
  background: var(--silver);
}

.home-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 21, 28, 0.15), transparent 48%);
  content: "";
}

.home-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }

.home-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 0;
  align-items: end;
  padding: clamp(48px, 5.5vw, 78px);
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(50px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.home-copy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 7px;
  background: var(--blue);
  content: "";
}

.home-copy h1 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 3.8vw, 4.35rem);
  line-height: 1;
}

.home-copy .lede {
  max-width: 590px;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}

.home-copy-detail {
  padding-left: clamp(28px, 4vw, 58px);
  border-left: 1px solid var(--line);
}

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

.home-index {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  background: rgba(18, 21, 28, 0.88);
  color: white;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-index::before { width: 9px; height: 9px; background: var(--orange); content: ""; }

.home-signal {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: white;
  border-top: 1px solid var(--line);
}

.signal-cell { min-height: 112px; padding: 25px 30px; border-right: 1px solid rgba(255, 255, 255, 0.17); }
.signal-cell:last-child { border-right: 0; }
.signal-cell strong { display: block; margin-bottom: 7px; color: white; font-size: 1.05rem; }
.signal-cell span { color: rgba(255, 255, 255, 0.62); font-size: 0.87rem; }

.image-credit {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(18, 21, 28, 0.8);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.section { padding: clamp(88px, 10vw, 156px) 0; }
.section-compact { padding: clamp(62px, 7vw, 100px) 0; }
.section-paper { background: var(--paper); }
.section-ink { background: var(--ink); color: rgba(255,255,255,0.7); }
.section-blue { background: var(--blue); color: rgba(255,255,255,0.76); }
.section-cyan { background: var(--cyan); }
.section-ink h2,
.section-ink h3,
.section-ink .eyebrow,
.section-blue h2,
.section-blue h3,
.section-blue .eyebrow { color: white; }
.section-ink .lede,
.section-blue .lede { color: rgba(255,255,255,0.72); }

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 58px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 70px;
}

.section-heading > div { max-width: 1000px; }
.section-heading > p { margin-bottom: 8px; color: var(--ink-soft); }
.section-ink .section-heading > p,
.section-blue .section-heading > p { color: rgba(255,255,255,0.68); }

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(54px, 9vw, 140px);
}

.split-top { align-items: start; }

.editorial-image {
  position: relative;
  min-height: 620px;
  clip-path: polygon(0 0, 88% 0, 100% 14%, 100% 100%, 0 100%);
  overflow: hidden;
  background: var(--silver);
}

.editorial-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.fact-ledger { margin-top: 34px; border-top: 1px solid var(--line); }
.fact-line { display: grid; padding: 15px 0; border-bottom: 1px solid var(--line); grid-template-columns: 170px 1fr; gap: 20px; }
.fact-line dt { color: var(--ink-soft); font-family: var(--mono); font-size: 0.66rem; text-transform: uppercase; }
.fact-line dd { margin: 0; }

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

.service-row {
  position: relative;
  display: grid;
  min-height: 178px;
  align-items: center;
  grid-template-columns: 70px minmax(250px, 1.05fr) minmax(260px, 1fr) 135px 220px;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.service-row:hover { background: var(--ink); color: white; }
.service-row:hover h3,
.service-row:hover .service-number,
.service-row:hover .service-price { color: white; }
.service-row:hover .service-summary { color: rgba(255,255,255,0.65); }

.service-number { color: var(--blue); font-family: var(--mono); font-size: 0.72rem; }
.service-title h3 { margin: 0; font-size: clamp(1.55rem, 2.4vw, 2.75rem); }
.service-title span { display: block; margin-bottom: 9px; color: var(--orange); font-family: var(--mono); font-size: 0.61rem; letter-spacing: 0.07em; text-transform: uppercase; }
.service-summary { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }
.service-price { color: var(--blue); font-family: var(--mono); font-size: 0.72rem; }
.service-thumb { position: relative; height: 126px; overflow: hidden; clip-path: polygon(10% 0,100% 0,100% 100%,0 100%,0 16%); }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-row:hover .service-thumb img { transform: scale(1.06); }

.process-track { border-top: 1px solid rgba(255,255,255,0.22); }

.process-step {
  display: grid;
  min-height: 148px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  grid-template-columns: 100px minmax(220px, 0.75fr) minmax(300px, 1.25fr) 50px;
  gap: 30px;
}

.process-step > span:first-child { color: var(--orange); font-family: var(--mono); font-size: 0.75rem; }
.process-step h3 { margin: 0; font-size: clamp(1.45rem, 2.2vw, 2.4rem); }
.process-step p { margin: 0; color: rgba(255,255,255,0.62); }
.process-arrow { color: var(--cyan); font-size: 1.4rem; text-align: right; }

.capability-map {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-cell {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.capability-cell::before { display: block; width: 14px; height: 14px; margin-bottom: 70px; background: var(--blue); content: ""; }
.capability-cell:nth-child(2n)::before { background: var(--orange); }
.capability-cell:nth-child(3n)::before { background: var(--cyan); border: 1px solid var(--ink); }
.capability-cell h3 { font-size: 1.5rem; }
.capability-cell p { color: var(--ink-soft); font-size: 0.9rem; }

.scope-block {
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 84px);
  background: var(--orange);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
}

.scope-block h2 { margin-bottom: 14px; }
.scope-block p { max-width: 780px; color: rgba(18,21,28,0.72); }

.page-hero { padding: 32px 0 84px; border-bottom: 1px solid var(--line); }

.page-frame {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  background: var(--paper);
  border: 1px solid var(--line);
}

.page-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px);
  overflow: hidden;
}

.page-copy h1 {
  max-width: 100%;
  font-size: clamp(3.15rem, 5vw, 5.7rem);
  line-height: 0.98;
  overflow-wrap: break-word;
}
.page-media { position: relative; min-width: 0; min-height: 660px; overflow: hidden; border-left: 1px solid var(--line); }
.page-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.page-hero--industries .page-frame {
  grid-template-columns: minmax(520px, 0.92fr) minmax(0, 1.08fr);
}

.page-hero--industries .page-copy {
  padding: clamp(44px, 5vw, 72px);
}

.page-hero--industries .page-copy h1 {
  max-width: 560px;
  font-size: clamp(3.1rem, 4.2vw, 4.8rem);
  line-height: 1;
}

.page-code {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 20px;
  color: white;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.service-hero { padding: 32px 0 84px; }

.service-frame {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  background: var(--ink);
  color: rgba(255,255,255,0.72);
}

.service-copy {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(48px, 7vw, 96px);
}

.service-copy h1,
.service-copy .eyebrow { color: white; }
.service-copy h1 { font-size: clamp(3.25rem, 5.6vw, 6.2rem); }
.service-copy .lede { color: rgba(255,255,255,0.7); }
.service-media { position: relative; min-height: 700px; overflow: hidden; clip-path: polygon(12% 0,100% 0,100% 100%,0 100%,0 14%); }
.service-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.service-meta {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,0.22);
}

.service-meta div { padding: 22px 20px 0 0; }
.service-meta span { display: block; margin-bottom: 5px; color: rgba(255,255,255,0.45); font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }
.service-meta strong { color: white; font-size: 1.1rem; }

.service-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(62px, 9vw, 130px);
}

.service-main > section { margin-bottom: 80px; }
.service-main h2 { font-size: clamp(2.5rem, 4vw, 4.6rem); }

.detail-list,
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.detail-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); }
.detail-list li { position: relative; min-height: 70px; padding: 18px 18px 18px 28px; border-bottom: 1px solid var(--line); }
.detail-list li::before,
.check-list li::before { position: absolute; left: 0; color: var(--orange); content: "■"; font-size: 0.55rem; }
.check-list li { position: relative; margin-bottom: 13px; padding-left: 25px; }

.delivery-steps { border-top: 1px solid var(--line); }
.delivery-step { display: grid; min-height: 112px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); grid-template-columns: 62px 210px 1fr; gap: 24px; }
.delivery-step > span { color: var(--blue); font-family: var(--mono); font-size: 0.7rem; }
.delivery-step h3 { margin: 0; font-size: 1.25rem; }
.delivery-step p { margin: 0; color: var(--ink-soft); }

.service-aside {
  position: sticky;
  top: 116px;
  padding: 32px;
  background: var(--cyan);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--blue);
}

.service-aside h3 { font-size: 2rem; }
.service-aside .button { width: 100%; margin: 18px 0 26px; }
.service-aside dl { margin: 0; border-top: 1px solid rgba(18,21,28,0.22); }
.service-aside dl div { padding: 15px 0; border-bottom: 1px solid rgba(18,21,28,0.22); }
.service-aside dt { margin-bottom: 4px; color: var(--ink-soft); font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }
.service-aside dd { margin: 0; }

.note-block { padding: 25px; border-left: 5px solid var(--orange); background: var(--paper); }

.industry-stack { border-top: 1px solid var(--line); }
.industry-row { display: grid; min-height: 230px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); grid-template-columns: 80px minmax(230px,0.8fr) minmax(320px,1.2fr) 250px; gap: 40px; }
.industry-row > span { color: var(--orange); font-family: var(--mono); font-size: 0.72rem; }
.industry-row h3 { margin: 0; font-size: clamp(1.8rem,3vw,3.3rem); }
.industry-row p { margin: 0; color: var(--ink-soft); }
.industry-row ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 0.88rem; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h2 { max-width: none; margin: 0; font-size: inherit; letter-spacing: 0; }
.faq-button { display: grid; width: 100%; padding: 28px 0; border: 0; background: transparent; text-align: left; cursor: pointer; grid-template-columns: 60px 1fr 36px; gap: 18px; }
.faq-button > span:first-child { color: var(--blue); font-family: var(--mono); font-size: 0.67rem; }
.faq-button > span:nth-child(2) { font-size: clamp(1.25rem,2vw,1.9rem); font-weight: 700; }
.faq-icon { position: relative; width: 30px; height: 30px; border: 1px solid var(--line); background: var(--paper); }
.faq-icon::before,
.faq-icon::after { position: absolute; top: 14px; left: 8px; width: 12px; height: 1px; background: var(--ink); content: ""; }
.faq-icon::after { transform: rotate(90deg); transition: transform 180ms ease; }
.faq-button[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-panel { max-width: 850px; padding: 0 40px 28px 78px; color: var(--ink-soft); }

.contact-layout { display: grid; align-items: start; grid-template-columns: minmax(0,0.65fr) minmax(0,1.35fr); gap: clamp(54px,8vw,120px); }
.contact-card { padding: 34px; background: var(--ink); color: rgba(255,255,255,0.68); }
.contact-card h3,
.contact-card a { color: white; }
.contact-line { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.contact-line span { display: block; margin-bottom: 5px; color: rgba(255,255,255,0.42); font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }

.contact-form { padding: clamp(32px,5vw,62px); background: var(--paper); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field-full { grid-column: 1/-1; }
.form-field label { color: var(--ink-soft); font-family: var(--mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; min-height: 56px; padding: 14px; border: 1px solid var(--line); border-radius: 0; background: white; color: var(--ink); }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--blue); outline: 2px solid rgba(33,84,255,0.18); }
.checkbox-row { display: grid; align-items: start; grid-template-columns: 20px 1fr; gap: 12px; font-size: 0.88rem; }
.checkbox-row input { width: 18px; min-height: 0; height: 18px; padding: 0; margin-top: 3px; }
.form-note { margin: 16px 0 28px; color: var(--ink-soft); font-size: 0.85rem; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.legal-hero { padding: clamp(82px,10vw,148px) 0; border-bottom: 1px solid var(--line); background: linear-gradient(120deg,var(--paper) 0 67%,var(--cyan) 67%); }
.legal-hero h1 { max-width: 1000px; font-size: clamp(3.5rem,7vw,7.8rem); }
.legal-date { margin-top: 28px; color: var(--ink-soft); font-family: var(--mono); font-size: 0.67rem; text-transform: uppercase; }
.legal-layout { display: grid; align-items: start; grid-template-columns: 270px minmax(0,830px); gap: clamp(54px,8vw,120px); }
.legal-index { position: sticky; top: 112px; padding: 28px; background: var(--cyan); border: 1px solid var(--ink); }
.legal-index strong { display: block; margin-bottom: 15px; font-family: var(--mono); font-size: 0.66rem; text-transform: uppercase; }
.legal-index a { display: block; padding: 7px 0; color: var(--ink-soft); font-size: 0.88rem; }
.legal-content section { padding-bottom: 40px; margin-bottom: 42px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { font-size: clamp(2rem,3.2vw,3.2rem); }
.legal-content p,
.legal-content li { color: var(--ink-soft); }
.legal-content li { margin-bottom: 8px; }
.legal-callout { padding: 24px; border-left: 5px solid var(--blue); background: var(--paper); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th,
td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { font-family: var(--mono); font-size: 0.63rem; text-transform: uppercase; }
.model-form { padding: 24px; border: 1px dashed var(--silver-dark); background: var(--paper); }

.site-footer { padding: 76px 0 24px; background: #0b0d12; color: rgba(255,255,255,0.58); }
.footer-grid { display: grid; padding-bottom: 58px; grid-template-columns: 1.45fr repeat(3,1fr); gap: 52px; }
.footer-brand .brand-mark { width: 64px; height: 64px; }
.footer-brand h2 { margin: 20px 0 16px; color: white; font-size: 1.25rem; letter-spacing: 0.05em; }
.footer-brand p { max-width: 380px; }
.footer-column h3 { margin-bottom: 18px; color: white; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.07em; text-transform: uppercase; }
.footer-column a,
.footer-column span { display: block; margin: 9px 0; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,0.16); font-family: var(--mono); font-size: 0.64rem; text-transform: uppercase; }

.storage-notice { position: fixed; z-index: 120; right: 20px; bottom: 20px; display: grid; width: min(470px,calc(100vw - 40px)); gap: 18px; padding: 24px; background: var(--ink); border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--shadow); color: rgba(255,255,255,0.7); }
.storage-notice[hidden] { display: none; }
.storage-notice p { margin: 0; font-size: 0.88rem; }
.storage-notice a { color: white; }
.notice-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.notice-actions .button { min-height: 42px; background: var(--orange); border-color: var(--orange); color: var(--ink); }
.notice-actions .button::after { display: none; }

.entry-loader { display: none; }
.js .entry-loader { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; background: var(--ink); color: white; opacity: 1; visibility: visible; transition: opacity 360ms ease, visibility 360ms ease; }
.js .entry-loader.is-complete { opacity: 0; visibility: hidden; pointer-events: none; }
.entry-core { text-align: center; }
.entry-word { display: flex; justify-content: center; gap: clamp(4px,1.1vw,15px); font-size: clamp(2.1rem,7vw,7rem); font-weight: 700; letter-spacing: 0.02em; }
.entry-word span { display: inline-block; opacity: 0.08; filter: blur(8px); transform: translateY(14px); animation: resolveLetter 120ms ease forwards; }
.entry-loader.is-first .entry-word span { animation-duration: 420ms; }
.entry-word span:nth-child(2) { animation-delay: 70ms; }
.entry-word span:nth-child(3) { animation-delay: 140ms; }
.entry-word span:nth-child(4) { animation-delay: 210ms; }
.entry-word span:nth-child(5) { animation-delay: 280ms; }
.entry-word span:nth-child(6) { animation-delay: 350ms; }
.entry-word span:nth-child(7) { animation-delay: 420ms; }
.entry-word span:nth-child(8) { animation-delay: 490ms; }
.entry-status { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }
.entry-status::before { width: 9px; height: 9px; background: var(--orange); content: ""; animation: statusPulse 600ms ease infinite alternate; }
@keyframes resolveLetter { to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes statusPulse { to { opacity: 0.3; transform: scale(0.65); } }

.route-loader { position: fixed; z-index: 900; inset: 0; display: grid; place-items: center; background: rgba(241,240,233,0.97); opacity: 0; pointer-events: none; transition: opacity 130ms ease; }
.route-pulse { position: relative; display: grid; width: 72px; height: 72px; place-items: center; background: var(--ink); color: white; font-weight: 700; }
.route-pulse::after { position: absolute; width: 12px; height: 12px; right: -6px; top: -6px; background: var(--orange); content: ""; animation: quickMark 420ms ease infinite alternate; }
body.is-route-loading .route-loader { opacity: 1; }
@keyframes quickMark { to { transform: translate(-12px,12px) scale(0.6); } }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease, transform 620ms ease; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.not-found { display: grid; min-height: 68vh; place-items: center; padding: 90px 24px; text-align: center; }
.not-found strong { display: block; color: var(--blue); font-size: clamp(6rem,18vw,15rem); line-height: 0.8; }
.not-found h1 { margin: 30px auto 16px; font-size: clamp(2.7rem,5vw,5.2rem); }

@media (max-width: 1220px) {
  .desktop-nav,
  .header-cta { display: none; }
  .header-grid { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .menu-button { display: block; }
  .mobile-menu { position: fixed; z-index: 79; inset: 126px 0 0; visibility: hidden; display: flex; flex-direction: column; padding: 32px; background: var(--bone); opacity: 0; transform: translateY(-8px); transition: 180ms ease; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.7rem,4vw,2.7rem); font-weight: 700; text-decoration: none; }
  .mobile-menu .button { width: fit-content; margin-top: 26px; font-size: 0.7rem; }
  .home-stage { grid-template-columns: 1fr; }
  .home-copy { min-height: auto; padding: clamp(46px, 6vw, 72px); border-right: 0; border-bottom: 1px solid var(--line); }
  .home-copy h1 { max-width: 620px; font-size: clamp(2.9rem, 5vw, 4.2rem); }
  .home-image { min-height: 440px; }
  .service-row { grid-template-columns: 60px minmax(230px,1fr) minmax(230px,0.9fr) 130px; }
  .service-thumb { display: none; }
  .page-frame,
  .service-frame { grid-template-columns: 1fr; }
  .page-hero--industries .page-frame { grid-template-columns: 1fr; }
  .page-copy,
  .service-copy { min-height: auto; }
  .page-media,
  .service-media { min-height: 560px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; }
}

@media (max-width: 880px) {
  :root { --container: min(100% - 32px,760px); }
  body { font-size: 16px; }
  .topline-inner { justify-content: center; }
  .topline p,
  .topline-links a:first-child { display: none; }
  .header-grid { min-height: 76px; }
  .brand { border-right: 0; }
  .mobile-menu { inset: 114px 0 0; }
  .home-hero { padding-top: 16px; }
  .home-stage { min-height: 0; }
  .home-copy { width: auto; min-height: auto; padding: 48px 30px; grid-template-columns: 1fr; gap: 30px; }
  .home-copy h1 { font-size: clamp(2.8rem, 8.5vw, 4rem); }
  .home-copy .lede { max-width: 100%; }
  .home-copy-detail { padding: 26px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .home-image { width: auto; height: auto; min-height: 390px; }
  .home-signal { width: auto; grid-template-columns: 1fr; }
  .signal-cell { min-height: auto; padding: 18px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.17); }
  .signal-cell:last-child { border-bottom: 0; }
  .section-heading,
  .split,
  .contact-layout,
  .legal-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 18px; }
  .editorial-image { min-height: 470px; }
  .service-row { min-height: 220px; padding: 24px 0; grid-template-columns: 45px 1fr 110px; gap: 18px; }
  .service-summary { grid-column: 2/4; }
  .capability-map { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-step { grid-template-columns: 55px 1fr; }
  .process-step p { grid-column: 2; }
  .process-arrow { display: none; }
  .scope-block { grid-template-columns: 1fr; gap: 24px; }
  .page-hero,
  .service-hero { padding-top: 16px; }
  .page-copy,
  .service-copy { padding: 46px 28px; }
  .page-media,
  .service-media { min-height: 420px; }
  .industry-row { grid-template-columns: 50px 1fr; gap: 18px; }
  .industry-row p,
  .industry-row ul { grid-column: 2; }
  .legal-index { position: static; }
  .footer-grid { gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
  .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 0.9rem; }
  .header-actions { padding-left: 8px; gap: 7px; }
  .language-switch a { width: 34px; height: 34px; }
  h1 { font-size: clamp(3.4rem,16vw,5.4rem); }
  .home-copy { padding: 46px 22px 40px; }
  .home-copy h1 { font-size: clamp(2.45rem, 10vw, 3.45rem); }
  .home-image { min-height: 320px; }
  .home-index { bottom: 12px; left: 12px; max-width: calc(100% - 90px); }
  .hero-actions,
  .notice-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .notice-actions .button { width: 100%; }
  .service-row { grid-template-columns: 38px 1fr; }
  .service-price { grid-column: 2; }
  .service-summary { grid-column: 2; }
  .capability-map,
  .detail-list,
  .form-grid,
  .service-meta { grid-template-columns: 1fr; }
  .capability-cell { min-height: 210px; }
  .page-media,
  .service-media { min-height: 330px; }
  .delivery-step { grid-template-columns: 46px 1fr; }
  .delivery-step p { grid-column: 2; }
  .fact-line { grid-template-columns: 1fr; gap: 4px; }
  .faq-button { grid-template-columns: 38px 1fr 30px; gap: 10px; }
  .faq-panel { padding-left: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
