@font-face {
  font-family: "Manrope Local";
  src: url("assets/fonts/manrope-latin-wght-normal.woff2?v=2026.09.03.3") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --paper: #fdfdfd;
  --paper-soft: #f1f3f2;
  --petrol: #102f3a;
  --petrol-2: #0a252e;
  --copper: #c47a32;
  --copper-dark: #95561f;
  --line: #d9dedf;
  --ink-muted: #53666c;
  --photo-dark: #2e353e;
  --max-width: 1380px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--petrol);
  font-family: "Manrope Local", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--copper); color: #fff; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper-soft); }
::-webkit-scrollbar-thumb { background: #7b8c91; border: 3px solid var(--paper-soft); }

a { color: inherit; text-underline-offset: .25em; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--petrol);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(24px, 4vw, 68px);
  background: rgba(253, 253, 253, .98);
  border-bottom: 1px solid rgba(16, 47, 58, .12);
}
.brand { position: relative; display: block; width: 214px; height: 48px; overflow: hidden; text-decoration: none; }
.brand-logo { position: absolute; top: -18px; left: 0; display: block; width: 214px; max-width: none; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 52px); }
.primary-nav a {
  position: relative;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.5rem;
  width: 100%;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  overflow: hidden;
  background: var(--photo-dark);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(10, 37, 46, .02) 0%, rgba(10, 37, 46, .05) 48%, rgba(10, 37, 46, .35) 100%), url("assets/hero-industrial.png?v=2026.09.03.3");
  background-size: cover;
  background-position: center 48%;
  animation: hero-settle 1.8s var(--ease) both;
}
@keyframes hero-settle { from { transform: scale(1.035); filter: saturate(.75); } to { transform: scale(1); filter: saturate(.9); } }
.hero-panel {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(47%, 720px);
  height: 448px;
  padding: 34px clamp(28px, 5vw, 76px) 30px;
  background: var(--paper);
}
.section-rule { display: block; width: 42px; height: 3px; margin-bottom: 18px; background: var(--copper); }
.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.25rem, 3.1vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -.038em;
  text-wrap: balance;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 span:last-child::after { content: "."; color: var(--copper); }
.hero-copy { max-width: 60ch; margin: 18px 0 20px; color: var(--ink-muted); font-size: clamp(.98rem, 1.15vw, 1.1rem); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social-icon { width: 22px; height: 22px; flex: 0 0 auto; }
.social-icon-large { width: 32px; height: 32px; }
.button-primary { background: var(--petrol); color: #fff; }
.button-primary:hover { background: #16434f; }
.button-link { padding-inline: 0; border-bottom: 2px solid var(--copper); border-radius: 0; }

.proof-index {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 5vw, 78px);
  bottom: clamp(30px, 5vw, 74px);
  width: min(330px, 28vw);
  margin: 0;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.proof-index div { position: relative; padding: 14px 0 14px 52px; border-bottom: 1px solid rgba(196, 122, 50, .78); }
.proof-index > div > svg {
  position: absolute;
  left: 1px;
  top: 20px;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-index dt { font-size: clamp(1.15rem, 1.8vw, 1.65rem); font-weight: 700; }
.proof-index dd { margin: 1px 0 0; color: #e7eef0; font-size: .82rem; }

.section-shell { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.practice-section { padding: 52px 0 clamp(78px, 9vw, 126px); }
.practice-section h2, .projects-heading h2, .experience-copy h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -.038em;
  text-wrap: balance;
}
.section-intro { max-width: 72ch; margin: 28px 0 56px; color: var(--ink-muted); font-size: 1.12rem; }
.practice-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.practice-list article { position: relative; padding: 38px 28px 40px 0; }
.practice-list article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.practice-list svg { width: 42px; height: 42px; margin-bottom: 28px; fill: none; stroke: var(--petrol); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.practice-list h3 { margin: 0 0 12px; font-size: 1.12rem; }
.practice-list h3::after { content: ""; display: block; width: 38px; height: 2px; margin-top: 12px; background: var(--copper); }
.practice-list p { margin: 0; color: var(--ink-muted); font-size: .94rem; }

.method-section { padding-block: clamp(84px, 10vw, 150px); background: var(--petrol); color: #fff; }
.method-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 8vw, 130px); align-items: end; }
.method-heading h2 { margin: 0; max-width: 18ch; font-size: clamp(2.5rem, 5vw, 5.6rem); line-height: 1.02; letter-spacing: -.038em; text-wrap: balance; }
.method-heading p { max-width: 56ch; margin: 0 0 6px; color: #c8d4d7; font-size: 1.08rem; }
.method-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 88px; border-top: 1px solid #55717a; }
.method-steps li { padding: 30px 38px 0 0; }
.method-steps li + li { padding-left: 38px; border-left: 1px solid #55717a; }
.method-steps span { color: #f0a65e; font-size: 1.35rem; font-weight: 750; }
.method-steps p { margin: 12px 0 0; color: #c8d4d7; }

.projects-section { padding-block: clamp(90px, 11vw, 160px); }
.projects-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 68px; }
.projects-heading p { max-width: 60ch; margin: 0 0 6px; color: var(--ink-muted); font-size: 1.08rem; }
.project-list { border-top: 1px solid var(--petrol); }
.project-row { display: grid; grid-template-columns: .55fr 1.3fr .65fr; gap: clamp(28px, 5vw, 76px); padding-block: 46px; border-bottom: 1px solid var(--line); }
.project-type { color: var(--copper-dark); font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-row h3 { max-width: 30ch; margin: 0 0 15px; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.2; letter-spacing: -.025em; }
.project-row p { max-width: 68ch; margin: 0; color: var(--ink-muted); }
.project-row ul { margin: 0; padding: 0; list-style: none; }
.project-row li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .88rem; font-weight: 650; }

.services-section { padding-block: clamp(88px, 10vw, 148px); }
.services-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(52px, 8vw, 128px); align-items: end; margin-bottom: 64px; }
.services-heading h2, .participation-heading h2, .cases-heading h2 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -.038em;
  text-wrap: balance;
}
.services-heading p, .participation-heading p, .cases-heading p { max-width: 60ch; margin: 0 0 6px; color: var(--ink-muted); font-size: 1.08rem; }
.service-ledger { border-top: 1px solid var(--petrol); }
.service-row { display: grid; grid-template-columns: .9fr .72fr 1.15fr; gap: clamp(28px, 4vw, 64px); align-items: start; padding-block: 34px; border-bottom: 1px solid var(--line); }
.service-title { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; }
.service-title svg { width: 40px; height: 40px; fill: none; stroke: var(--copper-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-title h3 { margin: 0; font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.22; letter-spacing: -.02em; }
.service-row > p { max-width: 42ch; margin: 0; color: var(--ink-muted); }
.service-row ul { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; list-style: none; }
.service-row li { position: relative; padding-left: 13px; font-size: .86rem; font-weight: 650; }
.service-row li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; background: var(--copper); }
.alliance-note { max-width: 78ch; margin: 30px 0 0 auto; color: var(--ink-muted); font-size: .9rem; text-align: right; }

.execution-section { padding-block: clamp(90px, 10vw, 152px); background: var(--petrol); color: #fff; }
.execution-context { display: flex; align-items: center; gap: 12px; margin: 0 0 42px; color: #f0a65e; font-size: .86rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.execution-context::after { content: ""; width: 132px; height: 1px; margin-left: 8px; background: var(--copper); }
.execution-context svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.execution-overview { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(58px, 8vw, 124px); align-items: start; }
.execution-statement { padding-right: clamp(28px, 4vw, 64px); border-right: 1px solid #55717a; }
.execution-statement h2 { max-width: 13ch; margin: 0; font-size: clamp(2.75rem, 4.7vw, 5.2rem); line-height: 1.02; letter-spacing: -.038em; text-wrap: balance; }
.execution-statement h2 span { color: #f0a65e; }
.execution-statement > p { max-width: 49ch; margin: 34px 0 0; color: var(--on-dark-muted, #c8d4d7); font-size: 1.08rem; line-height: 1.65; }
.execution-commitments { margin: 0; padding: 0; list-style: none; }
.execution-commitments li { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 0 0 28px; }
.execution-commitments li + li { padding-top: 28px; border-top: 1px solid #55717a; }
.execution-commitments svg { width: 52px; height: 52px; padding: 9px; border: 1px solid #55717a; border-radius: 50%; fill: none; stroke: var(--copper); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.execution-commitments strong, .execution-commitments span { display: block; }
.execution-commitments strong { margin-bottom: 7px; font-size: 1.08rem; line-height: 1.3; }
.execution-commitments span { max-width: 45ch; color: #c8d4d7; line-height: 1.55; }
.execution-process { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 76px; padding: 0; border: 1px solid #55717a; list-style: none; }
.execution-process li { min-width: 0; padding: 30px clamp(22px, 2.4vw, 36px) 34px; }
.execution-process li + li { border-left: 1px solid #55717a; }
.execution-process > li > svg { width: 54px; height: 54px; margin-bottom: 26px; fill: none; stroke: #fff; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.execution-stage-title { display: flex; align-items: baseline; gap: 10px; }
.execution-stage-title span { color: #f0a65e; font-size: 1.1rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.execution-stage-title strong { font-size: 1.08rem; }
.execution-process p { max-width: 30ch; margin: 16px 0 0; color: #c8d4d7; font-size: .9rem; line-height: 1.58; }
.execution-partnership { display: grid; grid-template-columns: 1fr 1.65fr; margin-top: 34px; border: 1px solid #55717a; border-top-color: var(--copper); }
.partnership-lead { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 34px clamp(26px, 3vw, 44px); }
.partnership-lead > svg { width: 54px; height: 54px; fill: none; stroke: var(--copper); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.partnership-lead h3 { max-width: 17ch; margin: 0; font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.2; letter-spacing: -.025em; }
.partnership-lead p { max-width: 37ch; margin: 14px 0 0; color: #c8d4d7; font-size: .9rem; line-height: 1.55; }
.partnership-principles { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; }
.partnership-principles div { padding: 36px clamp(20px, 2.4vw, 34px); border-left: 1px solid #55717a; }
.partnership-principles dt { font-weight: 750; line-height: 1.3; }
.partnership-principles dd { margin: 12px 0 0; color: #c8d4d7; font-size: .84rem; line-height: 1.55; }
.execution-close { margin-top: 34px; color: #fff; font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 650; text-align: center; }
.execution-close::before { content: "››"; margin-right: 14px; color: var(--copper); letter-spacing: -.12em; }
.execution-close span { color: #f0a65e; }

.participation-section { padding-block: clamp(92px, 11vw, 160px); }
.participation-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(52px, 8vw, 120px); align-items: end; margin-bottom: 66px; }
.participation-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--petrol); border-bottom: 1px solid var(--petrol); }
.participation-list article { display: flex; min-height: 320px; flex-direction: column; padding: 38px 34px 32px 0; }
.participation-list article + article { padding-left: 34px; border-left: 1px solid var(--line); }
.participation-list h3 { max-width: 12ch; margin: 0 0 18px; font-size: clamp(1.55rem, 2.4vw, 2.25rem); line-height: 1.12; letter-spacing: -.03em; }
.participation-list p { max-width: 42ch; margin: 0; color: var(--ink-muted); }
.participation-list span { margin-top: auto; padding-top: 28px; color: var(--copper-dark); font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.regional-section { background: var(--petrol-2); color: #fff; }
.regional-visual { position: relative; min-height: clamp(620px, 59vw, 850px); overflow: hidden; background: var(--petrol-2); }
.regional-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 37, 46, .98) 0%, rgba(10, 37, 46, .88) 27%, rgba(10, 37, 46, .2) 52%, rgba(10, 37, 46, 0) 72%); pointer-events: none; }
.regional-map { position: absolute; inset: 0; display: block; }
.regional-map img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.regional-copy { position: relative; z-index: 1; padding-top: clamp(92px, 10vw, 148px); }
.regional-copy h2 { max-width: 10ch; margin: 0 0 38px; font-size: clamp(2.8rem, 5vw, 5.35rem); line-height: 1.02; letter-spacing: -.038em; }
.regional-copy h2 span { color: #f0a65e; }
.regional-copy p { max-width: 43ch; margin: 0; color: #d5e0e2; font-size: 1.05rem; line-height: 1.68; }
.regional-copy p + p { margin-top: 22px; }
.regional-cities { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 0; margin-bottom: 0; padding: 0 0 clamp(76px, 8vw, 116px); border-top: 1px solid #55717a; list-style: none; }
.regional-cities li { min-width: 0; padding: 32px clamp(22px, 2.7vw, 40px) 0 0; }
.regional-cities li + li { padding-left: clamp(22px, 2.7vw, 40px); border-left: 1px solid #55717a; }
.regional-cities svg { width: 58px; height: 58px; margin-bottom: 24px; fill: none; stroke: var(--copper); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.regional-cities strong, .regional-cities span { display: block; }
.regional-cities strong { font-size: 1.08rem; line-height: 1.3; }
.regional-cities span { margin-top: 8px; color: #f0a65e; font-size: .82rem; font-weight: 750; line-height: 1.4; }
.regional-cities p { max-width: 29ch; margin: 12px 0 0; color: #c8d4d7; font-size: .84rem; line-height: 1.55; }

.cases-section { padding-block: clamp(90px, 10vw, 150px); background: var(--paper-soft); }
.cases-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(52px, 8vw, 120px); align-items: end; margin-bottom: 68px; }
.case-list { border-top: 1px solid var(--petrol); }
.case-row { display: grid; grid-template-columns: .78fr 2.22fr; gap: clamp(40px, 6vw, 96px); padding-block: 48px; border-bottom: 1px solid #cbd2d3; }
.case-row h3 { max-width: 18ch; margin: 0; font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.2; letter-spacing: -.025em; }
.case-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; }
.case-flow div { padding-right: 22px; }
.case-flow div + div { padding-left: 22px; border-left: 1px solid #cbd2d3; }
.case-flow dt { margin-bottom: 10px; color: var(--copper-dark); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.case-flow dd { margin: 0; color: var(--ink-muted); font-size: .86rem; line-height: 1.55; }
.case-row-featured { grid-template-areas: "title essentials" "title flow"; }
.case-row-featured > h3 { grid-area: title; }
.case-essentials { grid-area: essentials; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 30px; padding: 0; list-style: none; }
.case-essentials li { position: relative; padding: 24px 24px 0 0; border-top: 1px solid var(--petrol); color: var(--petrol); font-size: clamp(.94rem, 1.2vw, 1.08rem); font-weight: 750; line-height: 1.3; }
.case-essentials li + li { padding-left: 24px; }
.case-essentials li:not(:last-child)::after { content: ""; position: absolute; top: -4px; right: -4px; width: 7px; height: 7px; border-top: 1px solid var(--copper-dark); border-right: 1px solid var(--copper-dark); transform: rotate(45deg); background: var(--paper-soft); }
.case-row-featured .case-flow { grid-area: flow; grid-template-columns: repeat(2, 1fr); }
.case-row-featured .case-flow div { padding-block: 22px; border-top: 1px solid #cbd2d3; }
.case-row-featured .case-flow div:nth-child(odd) { padding-left: 0; border-left: 0; }

.experience-section { padding-block: clamp(90px, 11vw, 160px); background: var(--paper-soft); }
.experience-grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(70px, 10vw, 160px); align-items: start; }
.experience-lead { max-width: 55ch; margin: 34px 0 20px; font-size: 1.25rem; line-height: 1.55; }
.experience-copy > p:not(.experience-lead) { max-width: 68ch; color: var(--ink-muted); }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--copper-dark); font-weight: 750; text-decoration: none; border-bottom: 1px solid currentColor; }
.arrow-icon { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.experience-record { margin: 0; border-top: 1px solid var(--petrol); }
.experience-record div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; padding-block: 25px; border-bottom: 1px solid #cbd2d3; }
.experience-record dt { font-size: .8rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.experience-record dd { margin: 0; color: var(--ink-muted); }
.recognition-band { margin-top: 78px; padding-top: 42px; border-top: 1px solid #cbd2d3; }
.recognition-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: end; margin-bottom: 38px; }
.recognition-heading h3 { max-width: 17ch; margin: 0; font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.08; letter-spacing: -.035em; }
.recognition-heading p { max-width: 68ch; margin: 0; color: var(--ink-muted); font-size: 1.05rem; line-height: 1.6; }
.recognition-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--petrol); list-style: none; }
.recognition-list li { min-width: 0; min-height: 210px; padding: 28px clamp(20px, 2.4vw, 34px) 26px; border-bottom: 1px solid #cbd2d3; }
.recognition-list li:not(:nth-child(3n + 1)) { border-left: 1px solid #cbd2d3; }
.recognition-list svg { width: 36px; height: 36px; margin-bottom: 26px; fill: none; stroke: var(--copper-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.recognition-list strong, .recognition-list span, .recognition-list small { display: block; }
.recognition-list strong { color: var(--petrol); font-size: clamp(1.35rem, 2.15vw, 1.85rem); font-weight: 780; line-height: 1.08; letter-spacing: -.03em; text-transform: uppercase; }
.recognition-list span { margin-top: 10px; color: var(--petrol); font-size: .86rem; font-weight: 750; }
.recognition-list small { margin-top: 5px; color: var(--ink-muted); font-size: .78rem; line-height: 1.4; }
.development-band { display: grid; grid-template-columns: .72fr 2.28fr; gap: clamp(44px, 7vw, 110px); margin-top: 82px; padding-top: 42px; border-top: 1px solid var(--petrol); }
.development-band > h3 { max-width: 13ch; margin: 0; font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.08; letter-spacing: -.035em; }
.development-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; border-top: 1px solid #cbd2d3; }
.development-list div { min-width: 0; padding: 24px 26px 26px 0; border-bottom: 1px solid #cbd2d3; }
.development-list div:nth-child(even) { padding-left: 26px; padding-right: 0; border-left: 1px solid #cbd2d3; }
.development-list div:last-child { grid-column: 1 / -1; padding-right: 0; }
.development-list dt { color: var(--petrol); font-size: 1rem; font-weight: 780; line-height: 1.25; }
.development-list dd { max-width: 58ch; margin: 8px 0 0; color: var(--ink-muted); font-size: .86rem; line-height: 1.55; }

.contact-section { padding-block: clamp(78px, 9vw, 126px); background: var(--copper); color: var(--petrol-2); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(54px, 7vw, 110px); align-items: start; }
.contact-grid h2 { max-width: 18ch; margin: 0; font-size: clamp(2.4rem, 4.8vw, 5rem); line-height: 1.03; letter-spacing: -.038em; }
.contact-grid p { max-width: 58ch; margin: 28px 0 0; font-size: 1.08rem; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.button-light { width: 100%; justify-content: space-between; background: var(--paper); color: var(--petrol); padding: 18px 22px; }
.whatsapp-form { width: 100%; padding: clamp(24px, 3vw, 38px); background: var(--paper); color: var(--petrol); border: 1px solid rgba(10, 37, 46, .18); border-radius: 3px; }
.form-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.form-heading h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.2; letter-spacing: -.025em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.whatsapp-form textarea {
  width: 100%;
  min-height: 158px;
  resize: vertical;
  padding: 15px 16px;
  border: 1px solid #91a1a5;
  border-radius: 3px;
  background: #fff;
  color: var(--petrol-2);
  caret-color: var(--copper-dark);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color .2s ease, outline-color .2s ease;
}
.whatsapp-form textarea::placeholder { color: #66777c; opacity: 1; }
.whatsapp-form textarea:hover { border-color: var(--petrol); }
.whatsapp-form textarea:focus { border-color: var(--petrol); outline: 3px solid rgba(16, 47, 58, .2); outline-offset: 2px; }
.whatsapp-form textarea[aria-invalid="true"] { border-color: #a1261f; outline-color: rgba(161, 38, 31, .2); }
.form-status { display: flex; justify-content: space-between; gap: 16px; margin-top: 8px; color: #4e6268; font-size: .76rem; }
.form-status p { margin: 0; font-size: inherit; }
.form-status span { flex: 0 0 auto; font-variant-numeric: tabular-nums; }
.form-error { min-height: 1.35em; margin: 8px 0 0 !important; color: #861d18; font-size: .82rem !important; font-weight: 700; }
.form-submit { width: 100%; justify-content: flex-start; margin-top: 12px; padding: 16px 18px; border: 0; background: var(--petrol); color: #fff; cursor: pointer; font: inherit; }
.form-submit .arrow-icon { margin-inline-start: auto; }
.form-submit:hover { background: var(--active-petrol, #16434f); }
.form-submit:disabled { cursor: not-allowed; opacity: .65; transform: none; }
.direct-contact { display: flex; flex-wrap: wrap; gap: 8px 22px; padding-top: 4px; }
.direct-contact a { font-size: .86rem; font-weight: 700; overflow-wrap: anywhere; text-decoration-thickness: 1px; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: end; padding: 40px clamp(24px, 4vw, 68px); background: var(--petrol-2); color: #d5e0e2; font-size: .84rem; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: #fff; font-size: 1rem; }
.site-footer p { margin: 0; }

@media (max-width: 1080px) {
  .primary-nav { gap: 22px; }
  .hero { min-height: 760px; }
  .hero-panel { width: 58%; }
  .proof-index { width: 300px; }
  .practice-list { grid-template-columns: repeat(2, 1fr); }
  .practice-list article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .practice-list article:nth-child(4) { border-top: 1px solid var(--line); }
  .project-row { grid-template-columns: .5fr 1.5fr; }
  .project-row ul { grid-column: 2; display: flex; flex-wrap: wrap; gap: 8px 20px; }
  .project-row li { min-width: 150px; }
  .service-row { grid-template-columns: .9fr 1.1fr; }
  .service-row ul { grid-column: 2; }
  .execution-process { grid-template-columns: repeat(2, 1fr); }
  .execution-process li, .execution-process li + li { border-left: 0; }
  .execution-process li:nth-child(even) { border-left: 1px solid #55717a; }
  .execution-process li:nth-child(n + 3) { border-top: 1px solid #55717a; }
  .execution-partnership { grid-template-columns: 1fr; }
  .partnership-principles { border-top: 1px solid #55717a; }
  .case-row { grid-template-columns: .65fr 1.35fr; }
  .case-flow { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .case-flow div:nth-child(3) { padding-left: 0; border-left: 0; }
  .recognition-list { grid-template-columns: repeat(2, 1fr); }
  .recognition-band .recognition-list li { border-left: 0; }
  .recognition-band .recognition-list li:nth-child(even) { border-left: 1px solid #cbd2d3; }
  .development-band { grid-template-columns: 1fr; gap: 32px; }
  .regional-cities { grid-template-columns: repeat(2, 1fr); }
  .regional-cities li, .regional-cities li + li { padding: 30px 28px 30px 0; border-left: 0; border-bottom: 1px solid #55717a; }
  .regional-cities li:nth-child(even) { padding-left: 28px; padding-right: 0; border-left: 1px solid #55717a; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 68px; }
  .site-header { min-height: 68px; padding-inline: 20px; }
  .brand { width: 174px; height: 40px; }
  .brand-logo { top: -14px; width: 174px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--petrol);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
  }
  .menu-toggle-lines { width: 22px; display: grid; gap: 6px; }
  .menu-toggle-lines i { display: block; height: 2px; background: currentColor; transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] i:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: grid;
    gap: 0;
    padding: 10px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .45s var(--ease), visibility 0s linear .45s;
  }
  .primary-nav.is-open { transform: translateY(0); visibility: visible; transition-delay: 0s; }
  .primary-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; background: var(--paper); overflow: visible; }
  .hero-image { position: relative; min-height: 52vh; background-position: 62% center; animation: none; }
  .hero-panel { position: relative; width: calc(100% - 30px); margin: -72px 15px 0; padding: 32px 24px 38px; }
  .hero-panel { height: auto; }
  .hero h1 { font-size: clamp(2.35rem, 10vw, 4rem); }
  .hero h1 span { display: inline; white-space: normal; }
  .hero h1 span:not(:last-child)::after { content: " "; }
  .hero-copy { margin-block: 20px 26px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .button-link { align-self: flex-start; }
  .proof-index {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 15px 40px;
    padding: 8px 20px;
    background: var(--petrol);
  }
  .proof-index div { padding-left: 0; }
  .proof-index div:nth-child(odd) { padding-right: 14px; }
  .proof-index div:nth-child(even) { padding-left: 14px; border-left: 1px solid #55717a; }
  .proof-index > div > svg { display: none; }
  .proof-index dd { line-height: 1.35; }
  .section-shell { width: min(calc(100% - 36px), var(--max-width)); }
  .practice-section h2, .projects-heading h2, .experience-copy h2, .services-heading h2, .participation-heading h2, .cases-heading h2 { font-size: clamp(2.2rem, 10vw, 4rem); }
  .practice-section { padding-top: 72px; }
  .practice-list { grid-template-columns: 1fr; }
  .practice-list article, .practice-list article + article { padding: 30px 0; border-left: 0; border-top: 1px solid var(--line); }
  .practice-list article:first-child { border-top: 0; }
  .method-heading, .projects-heading, .experience-grid, .contact-grid, .services-heading, .participation-heading, .cases-heading { grid-template-columns: 1fr; gap: 36px; }
  .method-heading h2 br { display: none; }
  .method-steps { grid-template-columns: 1fr; margin-top: 60px; }
  .method-steps li, .method-steps li + li { padding: 28px 0; border-left: 0; border-bottom: 1px solid #55717a; }
  .projects-heading { margin-bottom: 42px; }
  .project-row { grid-template-columns: 1fr; gap: 18px; padding-block: 38px; }
  .project-row > div:nth-child(2) { order: 1; }
  .project-row .project-type { order: 2; color: var(--ink-muted); font-size: .8rem; letter-spacing: 0; text-transform: none; }
  .project-row ul { grid-column: auto; display: block; order: 3; }
  .services-section { padding-top: 78px; }
  .services-heading, .participation-heading, .cases-heading { margin-bottom: 42px; }
  .service-row { grid-template-columns: 1fr; gap: 18px; padding-block: 32px; }
  .service-row ul { grid-column: auto; margin-top: 6px; }
  .service-title { grid-template-columns: 42px 1fr; gap: 14px; }
  .service-title svg { width: 36px; height: 36px; }
  .alliance-note { margin-top: 26px; text-align: left; }
  .execution-context { margin-bottom: 34px; }
  .execution-context::after { width: 54px; }
  .execution-overview { grid-template-columns: 1fr; gap: 42px; }
  .execution-statement { padding-right: 0; padding-bottom: 42px; border-right: 0; border-bottom: 1px solid #55717a; }
  .execution-statement h2 { font-size: clamp(2.45rem, 11vw, 4.6rem); }
  .execution-statement > p { margin-top: 26px; }
  .execution-commitments li { grid-template-columns: 54px 1fr; gap: 18px; }
  .execution-commitments svg { width: 48px; height: 48px; }
  .execution-process { grid-template-columns: 1fr; margin-top: 54px; }
  .execution-process li, .execution-process li + li, .execution-process li:nth-child(even), .execution-process li:nth-child(n + 3) { padding: 28px 24px 30px; border-left: 0; border-top: 1px solid #55717a; }
  .execution-process li:first-child { border-top: 0; }
  .execution-process > li > svg { width: 48px; height: 48px; margin-bottom: 20px; }
  .execution-partnership { margin-top: 28px; }
  .partnership-lead { grid-template-columns: 50px 1fr; gap: 18px; padding: 28px 22px; }
  .partnership-lead > svg { width: 44px; height: 44px; }
  .partnership-principles { grid-template-columns: 1fr; }
  .partnership-principles div { padding: 24px 22px; border-left: 0; border-top: 1px solid #55717a; }
  .execution-close { text-align: left; line-height: 1.4; }
  .participation-list { grid-template-columns: 1fr; }
  .participation-list article, .participation-list article + article { min-height: 0; padding: 30px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .participation-list article:last-child { border-bottom: 0; }
  .participation-list h3 { max-width: none; }
  .participation-list span { margin-top: 24px; }
  .regional-visual { display: flex; min-height: 0; flex-direction: column; }
  .regional-visual::after { display: none; }
  .regional-map { position: relative; height: 390px; order: 2; }
  .regional-map img { object-position: 58% center; }
  .regional-copy { order: 1; padding-top: 76px; padding-bottom: 42px; }
  .regional-copy h2 { max-width: 10ch; margin-bottom: 28px; font-size: clamp(2.5rem, 11vw, 4.3rem); }
  .regional-copy p { font-size: 1rem; }
  .regional-cities { grid-template-columns: 1fr; }
  .regional-cities li, .regional-cities li + li, .regional-cities li:nth-child(even) { display: grid; grid-template-columns: 64px 1fr; column-gap: 18px; padding: 26px 0; border-left: 0; }
  .regional-cities svg { grid-row: 1 / 4; width: 54px; height: 54px; margin: 0; }
  .regional-cities strong, .regional-cities span, .regional-cities p { grid-column: 2; }
  .regional-cities p { max-width: 36ch; }
  .case-row { grid-template-columns: 1fr; gap: 30px; padding-block: 38px; }
  .case-row h3 { max-width: 24ch; }
  .case-flow { grid-template-columns: 1fr; row-gap: 0; }
  .case-flow div, .case-flow div + div, .case-flow div:nth-child(3) { padding: 20px 0; border-left: 0; border-top: 1px solid #cbd2d3; }
  .case-flow div:first-child { padding-top: 0; border-top: 0; }
  .case-row-featured { grid-template-areas: "title" "essentials" "flow"; }
  .case-essentials { grid-template-columns: 1fr; margin-bottom: 10px; }
  .case-essentials li, .case-essentials li + li { min-height: 62px; padding: 20px 0 14px 24px; border-top: 0; border-left: 1px solid var(--petrol); }
  .case-essentials li::before { content: ""; position: absolute; top: 25px; left: -4px; width: 7px; height: 7px; background: var(--copper-dark); transform: rotate(45deg); }
  .case-essentials li:not(:last-child)::after { top: auto; right: auto; bottom: -4px; left: -4px; background: var(--paper-soft); }
  .case-row-featured .case-flow { grid-template-columns: 1fr; }
  .case-row-featured .case-flow div, .case-row-featured .case-flow div:nth-child(odd) { padding: 20px 0; border-left: 0; border-top: 1px solid #cbd2d3; }
  .case-row-featured .case-flow div:first-child { padding-top: 0; border-top: 0; }
  .recognition-band { margin-top: 58px; padding-top: 34px; }
  .recognition-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
  .recognition-heading h3 { max-width: 14ch; }
  .recognition-list { grid-template-columns: 1fr; }
  .recognition-list li, .recognition-list li:not(:nth-child(3n + 1)) { display: grid; grid-template-columns: 44px 1fr; min-height: 0; padding: 24px 0; border-left: 0; }
  .recognition-list svg { grid-row: 1 / 4; margin: 2px 0 0; }
  .recognition-list strong, .recognition-list span, .recognition-list small { grid-column: 2; }
  .development-band { gap: 28px; margin-top: 62px; padding-top: 34px; }
  .development-band > h3 { max-width: 12ch; }
  .development-list { grid-template-columns: 1fr; }
  .development-list div, .development-list div:nth-child(even), .development-list div:last-child { grid-column: auto; padding: 22px 0; border-left: 0; }
  .contact-actions { margin-top: 8px; }
  .whatsapp-form { padding: 24px 20px; }
  .form-status { align-items: flex-start; flex-direction: column; gap: 3px; }
  .form-submit { min-height: 58px; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

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