:root {
  --blue: #d4f462;
  --blue-deep: #c8ea4e;
  --blue-dark: #c0dc48;
  --white: #ffffff;
  --black: #1b262a;
  --text: #1b262a;
  --muted: #5c6864;
  --line: #e2e0d6;
  --paper: #eef1e6;
  --cream: #f6f5f0;
  --header-h: 76px;
  --container: 1180px;
  --font-display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(27, 38, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none !important; }
  .btn { transition: none !important; }
  .hero-panel img { transition: none !important; }
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 14ch;
}

.link-more {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.link-more:hover { text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  background: var(--blue);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover { background: var(--blue-dark); color: var(--text); }
.btn:active { transform: translateY(1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--text);
}

.btn-light:hover {
  background: var(--paper);
}

.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(246, 245, 240, 0.92);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(27, 38, 42, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  background: none;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-wordmark span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--text);
}

.desktop-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--blue);
}

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  transition: transform 0.2s ease, top 0.2s ease, background 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

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

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

.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 24px 20px 32px;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 40px 0 64px;
  overflow: hidden;
}

.hero-headline {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.04;
  max-width: 10ch;
}

.hero-lead {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.hero-channels li {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.45fr;
  gap: 12px;
  height: 420px;
}

.hero-panel {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--black);
  height: 100%;
  min-height: 0;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transform: scale(1.04);
  transition: filter 0.35s ease, transform 0.45s ease;
}

.hero-panel:hover img {
  filter: grayscale(0.15) contrast(1.04);
  transform: scale(1.08);
}

.hero-panel span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--blue);
  color: var(--text);
  padding: 28px 24px;
  height: 100%;
  min-height: 0;
}

.hero-metric-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: auto;
}

.hero-metric-value {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-metric-unit {
  margin: 8px 0 16px;
  font-weight: 700;
}

.hero-metric-note {
  max-width: 24ch;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-metric-link {
  font-weight: 700;
}

.hero-metric-link:hover {
  text-decoration: underline;
}

.underline {
  background-image: linear-gradient(var(--blue), var(--blue));
  background-repeat: no-repeat;
  background-size: 100% 0.12em;
  background-position: 0 88%;
  padding-bottom: 0.04em;
}

.underline::after {
  content: none;
}

.text-accent {
  color: var(--blue);
}

.band-wrap {
  position: relative;
  height: 0;
  z-index: 5;
}

.diag-band {
  position: absolute;
  left: -6%;
  width: 112%;
  top: -22px;
  overflow: hidden;
  background: var(--blue);
  color: var(--text);
  transform: rotate(-3.2deg);
  padding: 13px 0;
  box-shadow: 0 10px 30px rgba(27, 38, 42, 0.12);
}

.diag-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  will-change: transform;
}

.diag-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.diag-group span {
  white-space: nowrap;
}

.diag-group span::after {
  content: "·";
  margin-left: 48px;
  margin-right: 48px;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.stats {
  padding: 88px 0 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.stat span {
  display: block;
  margin-top: 10px;
  max-width: 18ch;
  color: var(--muted);
  font-size: 14px;
}

.statement {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
}

.statement-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}

.statement h2 {
  font-size: clamp(28px, 4.4vw, 48px);
  max-width: 16ch;
  margin-bottom: 16px;
}

.statement p {
  max-width: 52ch;
  color: #c5ccc8;
}

.scribble {
  position: relative;
}

.scribble svg {
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: -0.28em;
  width: 108%;
  height: 0.38em;
  overflow: visible;
}

.cases,
.services-preview,
.process,
.page-hero,
.service-body,
.related {
  padding: 88px 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  background: var(--black);
  color: var(--white);
}

.case-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.case-body {
  background: #222d31;
  padding: 18px 18px 20px;
  min-height: 176px;
}

.case-body h3 {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  font-size: 13px;
}

.metrics span {
  display: block;
  opacity: 0.8;
  font-size: 11px;
}

.metrics b { font-size: 14px; }

.cases-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.services-preview { background: var(--paper); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 28px;
}

.service-card .btn { margin-top: auto; align-self: flex-start; }

.process {
  padding-top: 100px;
  padding-bottom: 0;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-row {
  display: grid;
  grid-template-columns: 88px 220px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.process-row .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
}

.process-row h3 { font-size: 24px; }
.process-row p { color: var(--muted); }

.cta {
  background: var(--black);
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
}

.cta .scribble-arrow {
  position: absolute;
  left: 8%;
  top: 36px;
  width: 90px;
  opacity: 0.9;
}

.cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  max-width: 14ch;
  margin-bottom: 12px;
}

.cta .sub {
  opacity: 0.9;
  margin-bottom: 32px;
}

.form-card {
  width: min(100%, 520px);
  background: var(--white);
  color: var(--text);
  padding: 32px 28px 28px;
  text-align: left;
}

.form-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 16px 0 6px;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c8c6bb;
  background: transparent;
  padding: 8px 0 10px;
  outline: none;
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus {
  border-bottom-color: var(--blue);
}

.form-card input.is-invalid,
.form-card textarea.is-invalid {
  border-bottom-color: #d21f3c;
}

.form-card .btn { margin-top: 24px; }

.form-success {
  width: min(100%, 520px);
  background: var(--white);
  color: var(--text);
  padding: 40px 28px;
  font-size: 20px;
  font-family: var(--font-display);
  line-height: 1.25;
}

.site-footer {
  background: #14191c;
  color: #c5ccc8;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a3336;
}

.site-footer .logo { color: var(--white); margin-bottom: 14px; }
.site-footer .logo-wordmark span { color: #8b9692; }
.site-footer p { max-width: 36ch; font-size: 14px; }
.site-footer h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-links a:hover { color: var(--white); }

.footer-legal {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-address {
  font-style: normal;
  line-height: 1.5;
  margin: 0 0 4px;
  max-width: 34ch;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #2a3336;
  display: grid;
  place-items: center;
  color: #c5ccc8;
}

.socials a svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.socials a:hover {
  border-color: var(--white);
  color: var(--white);
}

.socials.is-on-light {
  margin-top: 8px;
}

.socials.is-on-light a {
  border-color: var(--line);
  color: var(--text);
}

.socials.is-on-light a:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  font-size: 13px;
  color: #8b9692;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 12ch;
  margin-bottom: 18px;
}

.page-hero .lead {
  max-width: 50ch;
  color: var(--muted);
  font-size: 18px;
}

.catalog {
  display: grid;
  gap: 20px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

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

.catalog-card .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text);
}

.catalog-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 8px 0 12px;
}

.catalog-card p { color: var(--muted); max-width: 62ch; }

.bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.bullets li {
  position: relative;
  padding-left: 14px;
}

.bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 22px;
}

.crumb:hover { color: var(--text); }

.cover {
  margin-top: 36px;
  width: 100%;
  height: min(420px, 50vw);
  object-fit: cover;
  filter: grayscale(0.15);
}

.prose {
  max-width: 68ch;
  font-size: 18px;
  color: var(--text);
}

.split-4,
.split-2,
.split-3 {
  display: grid;
  gap: 16px;
}

.split-4 { grid-template-columns: repeat(4, 1fr); }
.split-3 { grid-template-columns: repeat(3, 1fr); }
.split-2 { grid-template-columns: 1fr 1fr; }

.info-card,
.fit-card,
.outcome-card {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--white);
}

.info-card h3,
.outcome-card h3,
.fit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-card p,
.outcome-card p,
.fit-card li {
  color: var(--muted);
  font-size: 15px;
}

.outcome-card a {
  color: var(--text);
  font-weight: 700;
}

.outcome-card a:hover {
  text-decoration: underline;
}

.fit-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.fit-card.yes h3 { color: var(--text); }

.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.step-card .num {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 24px;
}

.block-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 22px;
  max-width: 16ch;
}

.faq-item {
  border-top: 1px solid var(--line);
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after { content: "–"; }

.faq-answer {
  padding: 0 0 18px;
  color: var(--muted);
  max-width: 70ch;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-hero h1.is-wide {
  max-width: 18ch;
}

a.case-card {
  color: var(--white);
}

a.case-card:hover img {
  filter: grayscale(0.35) contrast(1.05);
}

.case-studies {
  padding: 0 0 88px;
}

.case-study {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.case-study img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.case-study h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.case-study .prose {
  margin-bottom: 24px;
}

.case-study .metrics {
  max-width: 420px;
  color: var(--text);
}

.case-study .metrics span {
  opacity: 1;
  color: var(--muted);
}

.process-detail .process-row {
  padding: 32px 0;
  align-items: start;
}

.process-detail .process-row p {
  max-width: 62ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 88px;
}

.contact-layout .form-card {
  width: 100%;
  border: 1px solid var(--line);
}

.contact-layout .form-success {
  width: 100%;
  border: 1px solid var(--line);
}

.contact-aside h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 12px;
}

.contact-aside > p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 42ch;
}

.contact-channel {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

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

.contact-channel span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-channel a,
.contact-channel b,
.contact-channel address {
  font-size: 18px;
  font-weight: 700;
}

.contact-channel address {
  font-style: normal;
  line-height: 1.45;
  max-width: 28ch;
}

.contact-channel b a {
  font-size: 16px;
  font-weight: 700;
}

.contact-channel a:hover {
  color: var(--text);
  text-decoration: underline;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.about-intro .prose {
  font-size: 18px;
  margin-bottom: 18px;
}

.about-note {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px 24px;
}

.about-note h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.about-note p {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero-headline,
  .statement-inner,
  .footer-grid,
  .catalog-card,
  .case-study,
  .contact-layout,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .hero h1 { max-width: 12ch; }
  .hero-stage {
    grid-template-columns: 1.1fr 0.9fr;
    height: auto;
  }
  .hero-panel {
    height: 320px;
    min-height: 0;
  }
  .hero-metric {
    min-height: 320px;
    height: 320px;
  }
  .hero-panel.is-wide {
    grid-column: 1 / -1;
    height: 240px;
  }
  .process-row { grid-template-columns: 64px 1fr; }
  .process-row p { grid-column: 2; }
  .split-4 { grid-template-columns: 1fr 1fr; }
  .catalog-card .btn { justify-self: start; }
}

@media (max-width: 860px) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .desktop-nav,
  .header-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }

  .site-header {
    height: auto;
    min-height: var(--header-h);
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  .header-inner {
    height: var(--header-h);
  }

  body.nav-open .site-header {
    min-height: 100dvh;
    background: var(--cream);
  }

  .mobile-nav {
    position: relative;
    inset: auto;
    z-index: 1;
    padding: 8px 0 48px;
    overflow-y: auto;
    background: var(--cream);
    min-height: calc(100dvh - var(--header-h));
  }

  .mobile-nav:not([hidden]) {
    display: block !important;
  }

  .mobile-nav a {
    font-size: 28px;
    line-height: 1.2;
    padding: 12px 0;
    color: var(--text);
  }

  .mobile-nav .btn {
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
    padding: 12px 22px;
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
  }

  .cases-grid,
  .service-cards,
  .split-3 {
    grid-template-columns: 1fr;
  }

  .hero { padding: 20px 0 36px; }
  .hero-headline { gap: 20px; margin-bottom: 24px; }
  .hero-stage { grid-template-columns: 1fr; }
  .hero-panel,
  .hero-panel.is-wide {
    height: 220px;
    grid-column: auto;
  }
  .hero-panel.is-wide { display: none; }
  .hero-metric {
    min-height: 0;
    height: auto;
    justify-content: flex-start;
    padding: 22px 20px 20px;
  }
  .hero-metric-kicker { margin-bottom: 18px; }
  .hero-metric-value { font-size: 56px; }
  .hero-metric-note { margin-bottom: 16px; }

  .page-hero,
  .cases,
  .services-preview,
  .service-body,
  .related,
  .stats,
  .cta,
  .case-studies {
    padding: 48px 0;
  }

  .page-hero {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .process {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .statement { padding: 40px 0; text-align: left; }
  .statement .btn { width: 100%; }

  .service-card { min-height: 0; }
  .catalog-card { gap: 12px; padding: 24px 0; }
  .catalog-card .btn { width: 100%; }
  .cover { height: 220px; }
  .case-study { padding: 36px 0; gap: 20px; }
  .case-study img { height: 220px; }
  .faq-question { font-size: 18px; }

  .form-card input,
  .form-card textarea {
    font-size: 16px;
  }

  .contact-channel a,
  .footer-links a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .diag-band {
    left: -10%;
    width: 120%;
    transform: rotate(-2.4deg);
  }

  .diag-group span::after {
    margin-left: 32px;
    margin-right: 32px;
  }
  .diag-track {
    font-size: 10px;
    letter-spacing: 0.1em;
    animation-duration: 36s;
  }
  .section-head { align-items: flex-start; flex-direction: column; }
  .footer-copy { flex-direction: column; }
  .bullets { grid-template-columns: 1fr; }
  .cta .scribble-arrow { display: none; }
}

@media (max-width: 560px) {
  .split-2,
  .split-4 { grid-template-columns: 1fr; }

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

  .stat {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 8px 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child { border-bottom: 0; }

  .stat b {
    font-size: 44px;
  }

  .stat span {
    margin-top: 0;
    max-width: none;
  }

  .process-row {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .process-row h3 { font-size: 22px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, var(--container)); }
  .form-card, .form-success { padding: 24px 18px; }
  .case-card img { height: 200px; }
  .hero-actions { gap: 10px; }
  .btn { padding: 12px 18px; }
}

.form-status {
  color: #b42318;
  font-size: 15px;
  margin: 0 0 12px;
}

.form-card.is-sending {
  opacity: 0.7;
  pointer-events: none;
}
