@charset "UTF-8";

:root {
  color-scheme: light;
  --paper: #f6f5f0;
  --paper-pure: #fbfaf6;
  --ink: #080a0d;
  --navy: #0a172a;
  --muted: #62676e;
  --line: rgba(10, 23, 42, .25);
  --line-soft: rgba(10, 23, 42, .12);
  --white: #fffefa;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button[hidden] { display: none !important; }
::selection { color: var(--white); background: var(--navy); }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 5px; }
main:focus { outline: none; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
}
h1 { font-size: clamp(4rem, 7vw, 7.2rem); }
h2 { font-size: clamp(2.8rem, 5vw, 5.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2.1rem); line-height: 1.08; letter-spacing: -.045em; }
p { color: var(--muted); }

.wrap { width: min(1320px, calc(100% - 120px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--navy);
}
.number,
.project-number {
  color: var(--navy);
  font: 700 .75rem/1.2 "Courier New", monospace;
  letter-spacing: .12em;
}
.lead { font-size: clamp(1.12rem, 1.45vw, 1.35rem); line-height: 1.55; }

.button {
  position: relative;
  display: inline-flex;
  min-height: 64px;
  min-width: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 28px;
  overflow: hidden;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: .92rem;
  font-weight: 700;
  transition: color .35s ease, background-color .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: translateX(-102%);
  transition: transform .45s cubic-bezier(.75,0,.2,1);
}
.button:hover { color: var(--navy); transform: translateY(-3px); }
.button:hover::before { transform: translateX(0); }
.button span { position: relative; z-index: 1; transition: transform .3s ease; }
.button:hover span { transform: translateX(4px); }
.button-small { min-width: 0; min-height: 46px; padding: 10px 18px; font-size: .76rem; }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: .92rem;
  font-weight: 700;
  transition: border-color .25s ease, gap .3s ease;
}
.text-link:hover { gap: 38px; border-color: var(--navy); }
.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 245, 240, .94);
  backdrop-filter: blur(14px);
  transition: min-height .35s ease, transform .45s cubic-bezier(.22,1,.36,1), background-color .3s ease;
}
.site-header.header-compact { min-height: 76px; background: rgba(246, 245, 240, .98); }
.site-header.header-hidden { transform: translateY(-110%); }
.wordmark {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.07em;
}
.wordmark span { margin-left: 7px; color: var(--navy); font-size: .72em; vertical-align: top; }
.site-header nav { display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 28px; }
.nav-links,
.nav-actions { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  background: var(--navy);
  transition: right .3s ease;
}
.nav-links a:hover,
.nav-links a[aria-current] { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a[aria-current]::after { right: 0; }
.languages { display: flex; align-items: center; gap: 9px; color: var(--navy); font-size: .72rem; font-weight: 700; }
.languages a { min-width: 28px; min-height: 44px; display: grid; place-items: center; color: var(--muted); }
.languages a:hover { color: var(--navy); }
.language-divider { color: var(--line); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  padding-block: clamp(74px, 9vh, 112px) 28px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  align-content: start;
}
.hero::before {
  content: "";
  position: absolute;
  top: 104px;
  right: 22%;
  bottom: 164px;
  width: 1px;
  background: var(--line-soft);
}
.hero-topline { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
.hero-index { color: var(--navy); font: 700 .68rem/1 "Courier New", monospace; letter-spacing: .15em; }
.hero h1 {
  grid-column: 1 / 10;
  max-width: 940px;
  margin-top: clamp(44px, 7vh, 76px);
  color: var(--ink);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.078em;
}
.hero h1::after {
  content: ".";
  color: var(--navy);
}
.hero-bottom { grid-column: 1 / 8; margin-top: 42px; }
.hero-bottom .lead { max-width: 700px; color: #555a61; }
.hero-actions { display: flex; align-items: center; gap: 40px; margin-top: 40px; }
.hero-note {
  position: absolute;
  right: 0;
  top: 52%;
  width: 18%;
  display: grid;
  gap: 62px;
  color: var(--navy);
  font: 700 .68rem/1.6 "Courier New", monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-note span + span::before { content: ""; display: block; width: 38px; height: 1px; margin-bottom: 28px; background: var(--navy); }
.hero-rule {
  grid-column: 1 / -1;
  margin-top: clamp(64px, 9vh, 110px);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font: 700 .67rem/1.4 "Courier New", monospace;
  letter-spacing: .13em;
}

.section { padding-top: clamp(110px, 13vw, 190px); }
.section-heading { max-width: 960px; margin-bottom: 64px; }
.section-heading .eyebrow { margin-bottom: 34px; }
.section-heading h2 { max-width: 940px; }
.heading-inline { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }

.problems {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9vw;
  align-items: start;
  padding-bottom: 20px;
}
.problems .section-heading { position: sticky; top: 130px; }
.problem-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--navy); }
.problem-list li {
  position: relative;
  min-height: 108px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  transition: padding-left .4s cubic-bezier(.22,1,.36,1), color .25s ease;
}
.problem-list li:hover { padding-left: 18px; color: var(--ink); }
.problem-list li .number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.problem-symbol { font-size: 1.1rem; transition: transform .3s ease; }
.problem-list li:hover .problem-symbol { transform: translate(4px, 4px); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--navy); border-left: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .42s ease, background-color .42s ease;
}
.service-card .card-top { display: flex; align-items: center; justify-content: space-between; }
.service-card .card-top > span:last-child { font-size: 1.1rem; transition: transform .35s ease; }
.service-card h3 { max-width: 470px; margin-top: auto; }
.service-card p { max-width: 500px; margin-top: 24px; font-size: .94rem; line-height: 1.65; }
.service-card:hover { color: var(--white); background: var(--navy); }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .number { color: var(--white); }
.service-card:hover .card-top > span:last-child { transform: translate(5px, -5px); }

.project-grid { display: grid; border-top: 1px solid var(--navy); }
.project-card {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
  padding: 46px 72px 46px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .5s cubic-bezier(.22,1,.36,1), background-color .4s ease;
}
.project-card:hover { padding-left: 24px; background: var(--paper-pure); }
.card-heading { grid-column: 1 / 4; display: grid; gap: 30px; }
.card-heading .eyebrow { font-size: .66rem; }
.project-card h3 { grid-column: 4 / 9; max-width: 600px; font-size: clamp(2rem, 3.2vw, 3.8rem); }
.flow { grid-column: 9 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--navy); font-size: .72rem; }
.flow span { padding-bottom: 5px; border-bottom: 1px solid var(--line); }
.flow b { font-weight: 400; }
.project-card > p { grid-column: 9 / -1; align-self: end; max-width: 430px; font-size: .92rem; line-height: 1.65; }
.card-arrow { position: absolute; right: 8px; top: 46px; font-size: 1.25rem; transition: transform .35s ease; }
.project-card:hover .card-arrow { transform: translate(5px, -5px); }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--navy); border-bottom: 1px solid var(--line); }
.steps li { position: relative; min-height: 300px; padding: 30px 28px 36px 0; border-right: 1px solid var(--line); }
.steps li + li { padding-left: 28px; }
.steps li:last-child { border-right: 0; }
.steps h3 { margin-top: 92px; }
.steps p { margin-top: 22px; font-size: .92rem; line-height: 1.65; }

.agency-section {
  margin-top: clamp(120px, 15vw, 210px);
  padding-block: 70px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 9vw;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--line);
}
.agency-label { display: flex; flex-direction: column; justify-content: space-between; gap: 90px; }
.agency-kicker { color: var(--navy); font: 700 .76rem/1.8 "Courier New", monospace; letter-spacing: .13em; text-transform: uppercase; }
.agency-section h2 { max-width: 830px; }
.agency-section .lead { max-width: 780px; margin-top: 36px; }
.agency-section .text-link { margin-top: 34px; }
.about-agency { margin-top: 0; }
.about-agency .agency-label { justify-content: flex-start; gap: 42px; }
.about-agency .agency-label h2 { font-size: clamp(2.4rem, 4vw, 4.6rem); }
.about-agency > div:last-child > p + p { max-width: 720px; margin-top: 28px; font-size: 1.02rem; line-height: 1.7; }

.contact-cta {
  margin-top: clamp(110px, 13vw, 180px);
  padding-block: 70px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--line);
}
.contact-cta .eyebrow { margin-bottom: 28px; }
.contact-cta h2 { max-width: 780px; }
.contact-cta .button { flex: 0 0 auto; }

.site-footer { padding-block: 70px 32px; }
.footer-top { display: flex; align-items: start; justify-content: space-between; gap: 40px; }
.footer-top p { margin-top: 18px; font-size: .84rem; }
.footer-email { display: inline-flex; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); font-size: 1.05rem; font-weight: 700; }
.footer-bottom { margin-top: 70px; padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-bottom a { min-height: 40px; display: inline-flex; align-items: center; }
.footer-bottom a:hover { color: var(--navy); }

.page-hero {
  position: relative;
  min-height: 640px;
  padding-block: clamp(90px, 11vw, 150px) 84px;
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: "";
  position: absolute;
  top: 90px;
  right: 23%;
  bottom: 84px;
  width: 1px;
  background: var(--line-soft);
}
.page-hero h1 { max-width: 1080px; margin-top: 46px; font-size: clamp(4rem, 7vw, 7.5rem); }
.page-hero > .lead { max-width: 730px; margin-top: 38px; }
.anchor-links { max-width: 900px; display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 52px; }
.anchor-links a { min-height: 40px; display: inline-flex; align-items: center; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .8rem; transition: color .25s ease, border-color .25s ease; }
.anchor-links a:hover { color: var(--navy); border-color: var(--navy); }

.service-detail {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
  padding-block: 74px;
  scroll-margin-top: 100px;
  border-bottom: 1px solid var(--line);
}
.service-detail:first-child { border-top: 1px solid var(--navy); }
.service-detail h2 { max-width: 570px; margin-top: 28px; }
.service-detail h3 { margin: 34px 0 10px; color: var(--navy); font-size: .76rem; font-weight: 700; line-height: 1.4; letter-spacing: .12em; text-transform: uppercase; }
.service-detail .text-link { margin-top: 28px; }

.project-details { display: grid; }
.project-detail {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 8vw;
  padding-block: 76px;
  scroll-margin-top: 100px;
  border-bottom: 1px solid var(--line);
}
.project-detail:first-child { border-top: 1px solid var(--navy); }
.project-detail h2 { max-width: 820px; margin-bottom: 34px; font-size: clamp(2.7rem, 4.4vw, 5.2rem); }
.project-detail-aside { display: flex; flex-direction: column; align-items: flex-start; }
.project-detail-aside .eyebrow { margin-top: 24px; }
.vertical-flow { list-style: none; padding: 0; margin: 56px 0 0; width: 100%; }
.vertical-flow li { position: relative; padding: 14px 0 14px 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.vertical-flow li::before { content: ""; position: absolute; left: 0; top: 21px; width: 5px; height: 5px; border-radius: 50%; background: var(--navy); }
.outcome { margin-top: 38px; padding: 24px 0 0 24px; border-top: 1px solid var(--line); border-left: 1px solid var(--navy); }
.outcome h3 { margin-bottom: 12px; color: var(--navy); font-size: .7rem; line-height: 1.4; letter-spacing: .14em; text-transform: uppercase; }

.contact-hero { padding-bottom: 90px; }
.email-panel { margin-top: 72px; padding-block: 32px; border-top: 1px solid var(--navy); border-bottom: 1px solid var(--line); }
.email-address { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); font-size: clamp(2rem, 5.2vw, 6rem); font-weight: 700; line-height: 1; letter-spacing: -.07em; overflow-wrap: anywhere; }
.email-address span { flex: 0 0 auto; font-size: .6em; }
.email-actions { display: flex; align-items: center; gap: 32px; margin-top: 32px; }
.copy-button { min-height: 44px; padding: 9px 16px; border: 1px solid var(--navy); border-radius: 999px; color: var(--navy); background: transparent; font-size: .8rem; transition: color .25s ease, background-color .25s ease; }
.copy-button:hover { color: var(--white); background: var(--navy); }
.copy-feedback { min-height: 26px; margin-top: 14px; color: var(--navy); font-size: .86rem; }
.email-note { max-width: 650px; font-size: .92rem; }

.prose { padding-block: 10px 90px; }
.prose section { max-width: 850px; padding-block: 36px; border-bottom: 1px solid var(--line); }
.prose section:first-child { border-top: 1px solid var(--navy); }
.prose h2 { margin-bottom: 20px; font-size: 1.8rem; line-height: 1.1; letter-spacing: -.04em; }
.prose p { font-size: 1rem; line-height: 1.75; }

/* Quiet motion: typography, rules and page planes. */
.route-transition { position: fixed; inset: 0; z-index: 9999; display: grid; grid-template-rows: 1fr 1fr; pointer-events: none; visibility: hidden; }
.route-transition span { background: var(--navy); transform: translateX(-101%); transition: transform .46s cubic-bezier(.76,0,.24,1); }
.route-transition span:last-child { transform: translateX(101%); transition-delay: .035s; }
.page-leaving .route-transition { visibility: visible; }
.page-leaving .route-transition span { transform: translateX(0); }
.page-leaving main,
.page-leaving .site-footer { opacity: .4; transition: opacity .3s ease; }
.scroll-progress { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 2px; pointer-events: none; transform: scaleX(0); transform-origin: left; background: var(--navy); }

.js .hero-topline,
.js .hero h1,
.js .hero-bottom,
.js .hero-note,
.js .hero-rule,
.js .page-hero > * { opacity: 0; transform: translateY(34px); clip-path: inset(0 0 100% 0); }
.page-ready .hero-topline,
.page-ready .hero h1,
.page-ready .hero-bottom,
.page-ready .hero-note,
.page-ready .hero-rule,
.page-ready .page-hero > * {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
  transition: opacity .75s ease, transform .9s cubic-bezier(.22,1,.36,1), clip-path .9s cubic-bezier(.22,1,.36,1);
}
.page-ready .hero h1,
.page-ready .page-hero h1 { transition-delay: .09s; }
.page-ready .hero-bottom,
.page-ready .page-hero .lead { transition-delay: .18s; }
.page-ready .hero-note,
.page-ready .page-hero .anchor-links { transition-delay: .27s; }
.page-ready .hero-rule { transition-delay: .34s; }

.motion-reveal { opacity: 0; transform: translateY(42px); clip-path: inset(0 0 22% 0); transition: opacity .72s ease var(--reveal-delay,0ms), transform .85s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0ms), clip-path .85s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0ms); }
.motion-reveal.is-visible { opacity: 1; transform: translateY(0); clip-path: inset(0); }
.draw-line { position: relative; }
.draw-line::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 1px; background: var(--navy); transition: right 1s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0ms); }
.draw-line.is-visible::after { right: 0; }

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  max-width: 1120px;
  margin-inline: auto;
  padding: 24px 26px;
  color: var(--paper-pure);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.22);
}
.consent-banner[hidden] { display: none; }
.consent-copy { max-width: 720px; }
.consent-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.consent-copy p { margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.55; }
.consent-copy a { color: var(--paper-pure); border-bottom: 1px solid rgba(255,255,255,.5); }
.consent-actions { display: flex; gap: 10px; }
.consent-actions button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--paper-pure);
  border-radius: 999px;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}
.consent-accept { color: var(--navy); background: var(--paper-pure); }
.consent-reject { color: var(--paper-pure); background: transparent; }
.consent-actions button:focus-visible,
.consent-settings:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.consent-settings {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.consent-settings:hover { color: var(--navy); }

@media (max-width: 1120px) {
  .wrap { width: calc(100% - 64px); }
  .site-header { gap: 42px; }
  .nav-links, .nav-actions { gap: 18px; }
  .site-header .button-small { display: none; }
  .hero h1 { grid-column: 1 / 11; }
  .project-card h3 { grid-column: 4 / 10; }
  .flow, .project-card > p { grid-column: 10 / -1; }
}

@media (max-width: 980px) {
  .site-header { min-height: 76px; flex-wrap: wrap; padding-block: 14px; gap: 18px; }
  .site-header.header-hidden { transform: none; }
  .site-header nav { flex-basis: 100%; padding-block: 12px 6px; }
  .js .menu-toggle { display: flex; margin-left: auto; min-height: 44px; align-items: center; gap: 14px; padding: 8px 15px; border: 1px solid var(--navy); border-radius: 999px; color: var(--navy); background: transparent; font-size: .78rem; }
  .js .menu-toggle[aria-expanded="false"] + nav { display: none; }
  .nav-links, .nav-actions { gap: 14px; }
  .hero { min-height: 820px; }
  .hero h1 { grid-column: 1 / 12; }
  .hero-bottom { grid-column: 1 / 9; }
  .hero-note { width: 17%; }
  .problems { grid-template-columns: 1fr; gap: 46px; }
  .problems .section-heading { position: static; }
  .project-card { min-height: 380px; }
  .project-card h3 { grid-column: 4 / -1; }
  .flow { grid-column: 4 / 9; align-self: end; }
  .project-card > p { grid-column: 9 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(2) { border-right: 0; }
  .steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .agency-section { gap: 6vw; }
  .service-detail, .project-detail { gap: 6vw; }
}

@media (max-width: 700px) {
  .wrap { width: calc(100% - 32px); }
  h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.45rem, 11vw, 3.8rem); }
  .site-header nav,
  .nav-links,
  .nav-actions { flex-direction: column; align-items: stretch; }
  .nav-links a { font-size: .95rem; }
  .nav-actions { padding-top: 12px; border-top: 1px solid var(--line); }
  .languages { align-self: flex-start; }
  .hero { min-height: auto; display: block; padding-block: 64px 26px; }
  .hero::before, .hero-note, .hero-index { display: none; }
  .hero h1 { margin-top: 52px; font-size: clamp(3.3rem, 15vw, 5.1rem); line-height: .92; }
  .hero-bottom { margin-top: 34px; }
  .hero-bottom .lead { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 34px; }
  .hero-rule { margin-top: 70px; font-size: .6rem; gap: 20px; }
  .hero-rule span:first-child { display: none; }
  .section { padding-top: 100px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading .eyebrow { margin-bottom: 24px; }
  .heading-inline { display: block; }
  .heading-inline .text-link { margin-top: 24px; }
  .problem-list li { min-height: 88px; grid-template-columns: 46px 1fr auto; gap: 12px; font-size: .92rem; }
  .problem-list li:hover { padding-left: 4px; }
  .problem-list li .number { width: 36px; height: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; padding: 26px 20px; }
  .project-card { min-height: auto; display: block; padding: 34px 38px 34px 0; }
  .project-card:hover { padding-left: 0; }
  .card-heading { display: flex; justify-content: space-between; }
  .project-card h3 { margin-top: 46px; font-size: 2.5rem; }
  .flow { margin-top: 38px; }
  .project-card > p { margin-top: 30px; }
  .card-arrow { top: auto; bottom: 36px; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { min-height: 230px; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps li:last-child { border-bottom: 0; }
  .steps h3 { margin-top: 58px; }
  .agency-section { grid-template-columns: 1fr; gap: 58px; padding-block: 54px; }
  .agency-label { gap: 44px; }
  .contact-cta { flex-direction: column; align-items: flex-start; padding-block: 54px; gap: 36px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; margin-top: 50px; }
  .footer-bottom nav { gap: 4px 18px; }
  .page-hero { min-height: auto; padding-block: 74px 64px; }
  .page-hero::after { display: none; }
  .page-hero h1 { margin-top: 38px; font-size: clamp(3.4rem, 15vw, 5.2rem); }
  .anchor-links { margin-top: 40px; }
  .service-detail, .project-detail { grid-template-columns: 1fr; gap: 38px; padding-block: 52px; }
  .service-detail h2, .project-detail h2 { font-size: 2.7rem; }
  .vertical-flow { display: none; }
  .email-panel { margin-top: 50px; }
  .email-address { font-size: clamp(1.65rem, 8vw, 3.2rem); }
  .email-actions { flex-direction: column; align-items: flex-start; }
  .prose { padding-bottom: 50px; }
  .consent-banner { right: 10px; bottom: 10px; left: 10px; display: block; padding: 20px; }
  .consent-actions { margin-top: 18px; flex-direction: column; }
  .consent-actions button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .route-transition, .scroll-progress { display: none; }
  .motion-reveal,
  .js .hero-topline,
  .js .hero h1,
  .js .hero-bottom,
  .js .hero-note,
  .js .hero-rule,
  .js .page-hero > * { opacity: 1; transform: none; clip-path: none; }
}
