:root {
  --ink: #111111;
  --paper: #ffffff;
  --soft: #f4f4f1;
  --soft-2: #e9e9e4;
  --muted: #62625d;
  --line: rgba(17, 17, 17, 0.18);
  --red: #ea3323;
  --red-dark: #bd2217;
  --header-height: 78px;
  --shell: min(1480px, calc(100vw - 64px));
  --reading: 760px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.52;
}

body:has(.privacy-overlay) { overflow: hidden; }
.privacy-seen body, body:has(.privacy-overlay.is-closing) { overflow: auto; }

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .16em; }
a:hover { text-decoration-color: var(--red); }

h1, h2, h3, p, dl, dd, figure { margin-top: 0; }
h1, h2, h3 { font-weight: 500; letter-spacing: -.035em; line-height: .98; }
h1 { font-size: clamp(3.25rem, 7vw, 8rem); }
h2 { font-size: clamp(2.25rem, 4.4vw, 5.4rem); }
h3 { font-size: clamp(1.25rem, 1.65vw, 2rem); line-height: 1.08; }
p { max-width: 70ch; }

::selection { color: var(--paper); background: var(--red-dark); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-block { padding-block: clamp(96px, 11vw, 180px); }
.soft-section, .region-section { background: var(--soft); }
.section-rule { border-top: 1px solid var(--line); padding-top: 40px; }

.eyebrow {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

/* Header */
.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(17, 17, 17, .1);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .9); box-shadow: 0 10px 30px rgba(17, 17, 17, .05); }
.header-inner { width: var(--shell); height: 100%; margin-inline: auto; display: flex; align-items: center; gap: 36px; }
.brand { width: 172px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.navigation-panel { margin-left: auto; display: flex; align-items: center; gap: clamp(22px, 2.5vw, 44px); }
.primary-navigation ul, .language-menu, .site-footer ul { margin: 0; padding: 0; list-style: none; }
.primary-navigation ul { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.primary-navigation a, .language-button {
  border: 0;
  color: var(--ink);
  background: none;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-navigation a { position: relative; padding-block: 12px; }
.primary-navigation a::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 2px; content: ""; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-navigation a:hover::after, .primary-navigation a[aria-current="page"]::after { transform: scaleX(1); }
.header-action { min-height: 42px; padding: 11px 16px; color: var(--paper); background: var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.header-action:hover { background: var(--red-dark); }
.menu-button { display: none; }
.language-control { position: relative; }
.language-button { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; gap: 7px; cursor: pointer; }
.language-menu { position: absolute; top: calc(100% + 12px); right: 0; min-width: 210px; padding: 8px; border: 1px solid var(--line); background: rgba(255, 255, 255, .96); box-shadow: 0 18px 60px rgba(17,17,17,.12); backdrop-filter: blur(20px); }
.language-menu li + li { border-top: 1px solid var(--line); }
.language-menu a, .language-pending { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 11px 10px; text-decoration: none; }
.language-menu b { color: var(--red-dark); font-size: .72rem; letter-spacing: .08em; }
.language-menu span { font-size: .88rem; }
.language-menu small { display: block; color: var(--muted); font-size: .68rem; }
.language-pending { opacity: .55; }

/* Privacy introduction */
.privacy-overlay { display: none; position: fixed; z-index: 999; inset: 0; align-items: center; justify-content: center; padding: 24px; background: rgba(8, 8, 8, .38); opacity: 1; transition: opacity .55s var(--ease); }
.js:not(.privacy-seen) .privacy-overlay { display: flex; }
.privacy-overlay.is-closing { opacity: 0; pointer-events: none; }
.privacy-glass { position: relative; width: min(680px, 100%); overflow: hidden; padding: clamp(30px, 5vw, 64px); border: 1px solid rgba(255,255,255,.24); border-radius: 32px; color: var(--paper); background: linear-gradient(135deg, rgba(20,20,20,.72), rgba(6,6,6,.50)); box-shadow: 0 35px 110px rgba(0,0,0,.4), inset 0 1px rgba(255,255,255,.18); backdrop-filter: blur(36px) saturate(145%); -webkit-backdrop-filter: blur(36px) saturate(145%); }
.privacy-glass::after { position: absolute; inset: 1px; border-radius: 31px; content: ""; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.09), transparent 36%); }
.glass-shimmer { position: absolute; top: -60%; left: -15%; width: 34%; height: 220%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent); transform: rotate(22deg); animation: shimmer 5s ease-in-out infinite; }
.privacy-glass .eyebrow { color: rgba(255,255,255,.6); }
.privacy-glass h2 { position: relative; z-index: 1; margin-bottom: 26px; font-size: clamp(2rem, 5vw, 4.4rem); }
.privacy-glass > p:not(.eyebrow) { position: relative; z-index: 1; color: rgba(255,255,255,.78); font-size: clamp(1rem, 2vw, 1.2rem); }
.privacy-actions { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); }
.privacy-actions p { margin: 0; color: rgba(255,255,255,.7); font-size: .82rem; }
.privacy-actions strong { display: inline-block; min-width: 2ch; color: var(--paper); font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.privacy-actions button { min-height: 44px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.45); color: var(--paper); background: rgba(255,255,255,.08); cursor: pointer; }
.privacy-actions button:hover { color: var(--ink); background: var(--paper); }
@keyframes shimmer { 0%, 25% { transform: translateX(-180%) rotate(22deg); } 70%, 100% { transform: translateX(420%) rotate(22deg); } }

/* Hero */
.hero { display: grid; min-height: calc(100svh - var(--header-height)); grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr); align-items: stretch; gap: clamp(44px, 7vw, 120px); padding-block: clamp(60px, 7vw, 110px); }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero h1 { max-width: 1000px; margin-bottom: clamp(32px, 4vw, 60px); }
.hero-delivery { white-space: nowrap; }
.hero-delivery-y { display: inline-block; margin-left: .2em; }
.hero h1::first-line { color: var(--ink); }
.hero-deck { max-width: 760px; margin-bottom: 36px; color: #343431; font-size: clamp(1.12rem, 1.55vw, 1.55rem); line-height: 1.38; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 20px; border: 1px solid var(--ink); font-size: .78rem; font-weight: 700; letter-spacing: .045em; text-decoration: none; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.button-primary { color: var(--paper); background: var(--ink); }
.button-primary:hover { border-color: var(--red-dark); background: var(--red-dark); }
.button-secondary { color: var(--ink); background: transparent; }
.button-secondary:hover { color: var(--paper); background: var(--ink); }
.hero-facts { display: grid; width: 100%; grid-template-columns: repeat(3, 1fr); margin: auto 0 0; padding-top: clamp(44px, 6vw, 90px); }
.hero-facts div { padding: 18px 18px 0 0; border-top: 1px solid var(--line); }
.hero-facts dt { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-facts dd { margin: 5px 0 0; font-size: .92rem; }
.hero-visual { display: flex; flex-direction: column; justify-content: center; }
.media-caption { margin: 12px 0 0; color: var(--muted); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }

.media-frame { position: relative; width: 100%; overflow: hidden; margin: 0; background: var(--soft-2); }
.media-landscape { aspect-ratio: 3 / 2; }
.media-portrait { aspect-ratio: 4 / 5; }
.media-wide { aspect-ratio: 16 / 9; }
.media-frame picture, .media-frame img { width: 100%; height: 100%; }
.media-frame img { object-fit: cover; }
.media-placeholder { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(24px, 4vw, 54px); background-color: #d7d7d1; background-image: linear-gradient(90deg, transparent 49.8%, rgba(17,17,17,.12) 50%, transparent 50.2%), linear-gradient(transparent 49.8%, rgba(17,17,17,.12) 50%, transparent 50.2%), radial-gradient(circle at 76% 24%, rgba(234,51,35,.5) 0 5px, transparent 6px), linear-gradient(135deg, rgba(255,255,255,.52), rgba(17,17,17,.06)); background-size: 72px 72px, 72px 72px, auto, auto; }
.media-placeholder::after { position: absolute; top: 9%; right: 8%; width: 28%; aspect-ratio: 1; border-top: 1px solid rgba(17,17,17,.36); border-right: 1px solid rgba(17,17,17,.36); content: ""; }
.media-placeholder span, .media-placeholder strong { position: relative; z-index: 2; }
.media-placeholder span { margin-bottom: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.media-placeholder strong { max-width: 24ch; font-size: clamp(1.05rem, 1.7vw, 1.6rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.08; }
.media-placeholder i { position: absolute; right: 8%; bottom: 9%; width: 16px; height: 16px; background: var(--red); }

.statement-band { color: var(--paper); background: var(--ink); }
.statement-band p { max-width: 1250px; margin: 0; padding-block: clamp(44px, 6vw, 86px); font-size: clamp(1.65rem, 3vw, 3.6rem); letter-spacing: -.035em; line-height: 1.08; }

/* Shared sections and cards */
.section-heading { margin-bottom: clamp(46px, 6vw, 90px); }
.section-heading h2 { max-width: 1000px; margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr); gap: clamp(44px, 8vw, 140px); align-items: end; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.card-grid { display: grid; grid-template-columns: repeat(12, 1fr); border-top: 1px solid var(--ink); }
.link-card { position: relative; grid-column: span 4; min-height: 360px; padding: 26px 28px 32px 0; border-bottom: 1px solid var(--line); }
.link-card:not(:nth-child(3n)) { padding-right: 34px; border-right: 1px solid var(--line); }
.link-card:not(:nth-child(3n+1)) { padding-left: 34px; }
.link-card h3 { margin: 84px 0 20px; }
.link-card h3 a, .concept-card h3 a, .insight-card h3 a, .region-grid h3 a, .region-card-large h2 a { text-decoration: none; }
.link-card h3 a::after, .concept-card h3 a::after, .insight-card h3 a::after, .region-grid h3 a::after, .region-card-large h2 a::after { position: absolute; inset: 0; content: ""; }
.link-card p:not(.card-index) { color: var(--muted); }
.card-index { color: var(--red-dark); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.card-arrow, .text-link > span[aria-hidden="true"] {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  color: transparent;
  font-size: 0;
  vertical-align: -.18em;
}
.card-arrow::before, .text-link > span[aria-hidden="true"]::before {
  position: absolute;
  top: 7px;
  left: 1px;
  width: 15px;
  height: 1.5px;
  content: "";
  background: var(--red);
  transform: rotate(-45deg);
}
.card-arrow::after, .text-link > span[aria-hidden="true"]::after {
  position: absolute;
  top: 1px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--red);
  border-right: 1.5px solid var(--red);
  content: "";
}
.card-arrow { position: absolute; right: 25px; bottom: 25px; width: 18px; height: 18px; transition: transform .25s ease; }
.link-card:hover .card-arrow { transform: translate(5px, -5px); }
.section-link { display: inline-flex; margin-top: 44px; }
.text-link { font-size: .78rem; font-weight: 700; letter-spacing: .045em; text-decoration: none; text-transform: uppercase; }
.text-link > span[aria-hidden="true"] { margin-left: .35em; }

.concept-section { background: #171717; color: var(--paper); }
.concept-section .eyebrow, .concept-section .split-heading > p { color: rgba(255,255,255,.57); }
.concept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(30px, 4vw, 68px); }
.concept-card { position: relative; }
.concept-card .media-frame { transition: transform .5s var(--ease); }
.concept-card:hover .media-frame { transform: scale(.985); }
.concept-card-copy { position: relative; padding: 28px 12% 20px 0; }
.concept-card h3 { margin-bottom: 16px; font-size: clamp(1.6rem, 2.6vw, 3rem); }
.concept-card-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.concept-grid-hub { padding-block: 0 120px; }
.concept-grid-hub .concept-card { border-bottom: 1px solid var(--line); }
.concept-grid-hub .concept-card-copy { color: var(--ink); }
.concept-grid-hub .concept-card-copy > p:not(.eyebrow) { color: var(--muted); }

.process-list { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.process-list li { display: grid; min-height: 154px; grid-template-columns: minmax(80px, 1fr) 5fr; align-items: center; border-bottom: 1px solid var(--line); }
.process-list > li > span { align-self: stretch; padding-top: 28px; color: var(--red-dark); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.process-list div { display: grid; grid-template-columns: minmax(260px, 1.2fr) 1fr; align-items: center; gap: 36px; }
.process-list h3, .process-list p { margin: 0; }
.process-list p { color: var(--muted); }

.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.region-grid article { position: relative; min-height: 380px; padding: 32px 34px 36px 0; border-bottom: 1px solid var(--line); }
.region-grid article + article { padding-left: 34px; border-left: 1px solid var(--line); }
.region-grid h3 { margin: 90px 0 22px; }
.region-grid article > p:not(.eyebrow) { color: var(--muted); }
.region-grid .text-link { position: absolute; bottom: 32px; }

.experience-section { display: grid; grid-template-columns: 7fr 4fr; gap: clamp(50px, 10vw, 170px); }
.experience-section h2 { font-size: clamp(2.25rem, 4vw, 4.8rem); }
.experience-section > div:nth-child(2) > p { color: var(--muted); font-size: 1.08rem; }
.scope-note { margin-top: 42px; padding: 26px 28px; border-left: 3px solid var(--red); background: var(--soft); }
.scope-note .eyebrow { margin-bottom: 10px; color: var(--red-dark); }
.scope-note p:last-child { margin-bottom: 0; }
.scope-note.wide { display: grid; grid-template-columns: 190px 1fr; gap: 30px; margin: 0; padding: clamp(26px, 4vw, 52px); }

.insight-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); }
.insight-card { position: relative; min-height: 350px; padding: 28px 44px 36px 0; border-bottom: 1px solid var(--line); }
.insight-card:nth-child(even) { padding-right: 0; padding-left: 44px; border-left: 1px solid var(--line); }
.insight-card h3 { margin: 60px 0 22px; font-size: clamp(1.6rem, 2.6vw, 3.1rem); }
.insight-card > p:not(.eyebrow) { display: -webkit-box; overflow: hidden; color: var(--muted); -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.insight-card .text-link { position: absolute; bottom: 34px; }
.insight-grid-hub { margin-bottom: 90px; }

.contact-band { color: #000000; background: var(--red); }
.contact-band-grid { display: grid; grid-template-columns: 7fr 4fr; gap: clamp(50px, 10vw, 170px); align-items: end; }
.contact-band .eyebrow { color: #000000; }
.contact-band p { font-size: 1.15rem; }
.contact-band .button-primary { border-color: var(--paper); color: var(--ink); background: var(--paper); }
.contact-band .button-primary:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.contact-band small { display: block; margin-top: 18px; color: #000000; }

/* Page introductions */
.breadcrumbs { margin-bottom: clamp(54px, 8vw, 110px); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { color: var(--muted); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.breadcrumbs li:not(:last-child)::after { margin-left: 8px; color: var(--red); content: "/"; }
.breadcrumbs a { text-decoration: none; }
.page-intro { min-height: min(68vh, 820px); padding-block: clamp(55px, 7vw, 100px) clamp(90px, 11vw, 160px); }
.page-intro h1 { max-width: 1320px; margin-bottom: clamp(36px, 5vw, 70px); }
.page-deck { max-width: 880px; margin-left: auto; color: #40403c; font-size: clamp(1.18rem, 2vw, 1.7rem); line-height: 1.38; }
.detail-hero { padding-block: clamp(55px, 7vw, 100px) clamp(90px, 11vw, 160px); }
.detail-hero-grid { display: grid; grid-template-columns: 7fr 4fr; align-items: end; gap: clamp(45px, 9vw, 150px); }
.detail-hero h1 { margin: 0; font-size: clamp(3.2rem, 6vw, 7rem); }
.detail-hero .page-deck { margin-bottom: 34px; }

.two-column-content { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 9vw, 150px); }
.two-column-content h2, .deliverable-grid h2, .boundary-grid h2 { margin-bottom: 40px; font-size: clamp(2rem, 3.3vw, 4rem); }
.check-list, .plain-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 17px 12px 17px 32px; border-bottom: 1px solid var(--line); }
.check-list li:first-child { border-top: 1px solid var(--line); }
.check-list li::before { position: absolute; top: 23px; left: 1px; width: 8px; height: 8px; content: ""; background: var(--red); }
.next-panel { margin-block: clamp(100px, 12vw, 190px); padding: clamp(44px, 7vw, 90px); color: var(--paper); background: var(--ink); }
.next-panel .eyebrow { color: rgba(255,255,255,.55); }
.next-panel h2 { max-width: 1000px; }
.next-panel p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.next-panel .button-secondary { color: var(--paper); border-color: var(--paper); }
.next-panel .button-secondary:hover { color: var(--ink); background: var(--paper); }

.boundary-grid { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(350px, 1.35fr); gap: 80px clamp(50px, 9vw, 160px); align-items: start; }
.commercial-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.commercial-strip > div { min-height: 270px; padding: 28px 32px 32px 0; border-bottom: 1px solid var(--line); }
.commercial-strip > div + div { padding-left: 32px; border-left: 1px solid var(--line); }
.commercial-strip span { color: var(--red-dark); font-size: .72rem; font-weight: 700; }
.commercial-strip h3 { margin-top: 72px; }
.commercial-strip p { color: var(--muted); }

/* Concept detail */
.concept-hero { padding-block: clamp(55px, 7vw, 100px) clamp(70px, 9vw, 130px); }
.concept-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: end; }
.concept-hero h1 { margin-bottom: 42px; font-size: clamp(3rem, 5.6vw, 6.8rem); }
.concept-hero .page-deck { margin-left: 0; }
.snapshot-band { color: var(--paper); background: var(--ink); }
.snapshot-band dl { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; }
.snapshot-band dl > div { min-height: 170px; padding: 28px 28px 28px 0; }
.snapshot-band dl > div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.snapshot-band dt { margin-bottom: 24px; color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.snapshot-band dd { margin: 0; font-size: 1rem; }
.proposal-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); }
.proposal-grid article { min-height: 260px; padding: 28px 42px 38px 0; border-bottom: 1px solid var(--line); }
.proposal-grid article:nth-child(even) { padding-right: 0; padding-left: 42px; border-left: 1px solid var(--line); }
.proposal-grid h3 { margin: 62px 0 16px; }
.proposal-grid p { color: var(--muted); }
.deliverable-grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(50px, 9vw, 150px); }
.fee-section { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(50px, 9vw, 150px); padding-block: 0 clamp(90px, 11vw, 170px); }
.fee-section h2 { font-size: clamp(2rem, 3vw, 3.8rem); }
.fee-section > div > p:not(.eyebrow) { color: var(--muted); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 20px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { padding-right: 30px; font-weight: 500; }
td { min-width: 150px; color: var(--red-dark); font-weight: 700; text-align: right; white-space: nowrap; }

/* Regions */
.region-hub-grid { padding-bottom: clamp(90px, 12vw, 180px); }
.region-card-large { position: relative; display: grid; min-height: 350px; grid-template-columns: 1fr 1fr; gap: 50px; padding: 38px 0; border-top: 1px solid var(--ink); }
.region-card-large:last-child { border-bottom: 1px solid var(--ink); }
.region-card-large h2 { margin: 70px 0 0; font-size: clamp(2rem, 3.4vw, 4.2rem); }
.region-card-large > p:not(.eyebrow) { align-self: center; color: var(--muted); }
.region-card-large .text-link { position: absolute; right: 0; bottom: 32px; }

/* Editorial */
.article-header { padding-block: clamp(55px, 7vw, 100px) clamp(55px, 8vw, 120px); }
.article-header h1 { max-width: 1280px; margin-bottom: 50px; font-size: clamp(3rem, 6vw, 7.2rem); }
.article-header .page-deck { margin-left: 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px 30px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.article-image { margin-bottom: clamp(70px, 10vw, 150px); }
.article-layout { display: grid; grid-template-columns: minmax(230px, 3fr) minmax(0, 8fr); gap: clamp(50px, 10vw, 170px); align-items: start; }
.article-summary { position: sticky; top: calc(var(--header-height) + 34px); padding-top: 20px; border-top: 2px solid var(--ink); }
.plain-list li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.article-summary .text-link { display: inline-block; margin-top: 36px; }
.article-content { max-width: 850px; }
.article-content > section { margin-bottom: clamp(60px, 8vw, 110px); }
.article-content h2 { margin-bottom: 30px; font-size: clamp(2rem, 3.4vw, 4rem); }
.article-content p { font-size: 1.08rem; line-height: 1.68; }
.article-content .check-list { margin-block: 32px; }
.article-conclusion { padding: clamp(30px, 5vw, 58px); border-left: 3px solid var(--red); background: var(--soft); }
.article-conclusion .eyebrow { color: var(--red-dark); }
.article-conclusion p:last-child { margin-bottom: 0; font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.45; }
.sources h2 { margin-bottom: 30px; font-size: clamp(1.8rem, 2.8vw, 3.2rem); }
.sources ol { margin: 0; padding: 0; list-style: none; }
.sources li { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.sources li a { font-weight: 500; }
.sources li span { color: var(--muted); font-size: .8rem; text-align: right; }

.article-navigation { margin-block: clamp(100px, 12vw, 190px); }
.article-navigation-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.article-navigation-heading h2 { margin: 0; font-size: clamp(2rem, 3.4vw, 4rem); }
.article-navigation-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--ink); }
.article-navigation-link { position: relative; display: flex; min-height: 250px; flex-direction: column; padding: clamp(28px, 4vw, 52px); color: var(--paper); background: var(--ink); text-decoration: none; transition: background .25s ease; }
.article-navigation-link + .article-navigation-link { border-left: 1px solid rgba(255,255,255,.25); }
.article-navigation-link:hover { background: #242424; }
.article-navigation-link span { margin-bottom: 40px; color: rgba(255,255,255,.58); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.article-navigation-link strong { max-width: 29ch; padding-right: 46px; font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 500; line-height: 1.14; }
.article-navigation-link i { position: absolute; right: clamp(28px, 4vw, 52px); bottom: clamp(28px, 4vw, 52px); width: 21px; height: 14px; color: transparent; font-size: 0; font-style: normal; transition: transform .25s ease; }
.article-navigation-link i::before { position: absolute; top: 6px; left: 0; width: 21px; height: 1.5px; content: ""; background: var(--red); }
.article-navigation-link i::after { position: absolute; top: 2px; right: 0; width: 9px; height: 9px; border-top: 1.5px solid var(--red); border-right: 1.5px solid var(--red); content: ""; transform: rotate(45deg); }
.article-navigation-link:hover i { transform: translateX(5px); }
.article-navigation-previous i { right: auto; left: clamp(28px, 4vw, 52px); }
.article-navigation-previous i::after { right: auto; left: 0; transform: rotate(-135deg); }
.article-navigation-previous:hover i { transform: translateX(-5px); }
.article-navigation-next { text-align: right; }
.article-navigation-next strong { align-self: flex-end; padding-right: 0; padding-left: 46px; }

/* Contact and forms */
.contact-choice { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: clamp(90px, 11vw, 160px); border-top: 1px solid var(--ink); }
.contact-choice a { position: relative; min-height: 300px; padding: 30px 44px 34px 0; text-decoration: none; }
.contact-choice a + a { padding-right: 0; padding-left: 44px; border-left: 1px solid var(--line); }
.contact-choice span { color: var(--red-dark); font-size: .72rem; font-weight: 700; }
.contact-choice h2 { margin-top: 70px; font-size: clamp(2rem, 3.4vw, 4rem); }
.contact-choice p { color: var(--muted); }
.form-section .section-shell { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(50px, 9vw, 150px); align-items: start; }
.form-heading { position: sticky; top: calc(var(--header-height) + 35px); }
.form-heading h2 { font-size: clamp(2rem, 3.5vw, 4.2rem); }
.form-heading > p:not(.eyebrow) { color: var(--muted); }
.contact-form { padding-top: 1px; }
.form-step { min-width: 0; margin: 0 0 58px; padding: 0; border: 0; }
.form-step legend { width: 100%; margin-bottom: 30px; padding: 0 0 15px; border-bottom: 1px solid var(--ink); font-size: 1.25rem; font-weight: 500; }
.form-step legend span { margin-right: 24px; color: var(--red-dark); font-size: .7rem; font-weight: 700; vertical-align: .18em; }
.form-step:disabled { opacity: .38; }
.form-help { color: var(--muted); font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 22px; }
.form-grid label, .custom-time label { display: flex; flex-direction: column; gap: 8px; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.field-label { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.form-grid small { color: var(--muted); font-weight: 400; text-transform: none; }
.form-span { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; color: var(--ink); background: transparent; }
input, select { min-height: 48px; }
textarea { padding-block: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-bottom-color: var(--red); outline: 0; box-shadow: 0 2px 0 var(--red); }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.calendar-toolbar button { width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.calendar-toolbar button:hover { color: var(--paper); background: var(--ink); }
.calendar-toolbar strong { font-size: 1rem; font-weight: 500; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-weekdays { margin-bottom: 7px; }
.calendar-weekdays span { padding: 5px; color: var(--muted); font-size: .66rem; font-weight: 700; text-align: center; text-transform: uppercase; }
.calendar-grid button, .calendar-grid .blank-day { aspect-ratio: 1; }
.calendar-grid button { border: 1px solid var(--line); background: rgba(255,255,255,.35); cursor: pointer; font-size: .82rem; }
.calendar-grid button:hover, .calendar-grid button.is-selected { border-color: var(--ink); color: var(--paper); background: var(--ink); }
.calendar-grid button:disabled { color: #aaa; background: transparent; cursor: not-allowed; opacity: .5; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-block: 24px; }
.time-slots button { min-height: 48px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.time-slots button:hover, .time-slots button.is-selected { border-color: var(--ink); color: var(--paper); background: var(--ink); }
.text-button { min-height: 44px; padding: 0; border: 0; border-bottom: 1px solid currentColor; color: var(--ink); background: transparent; cursor: pointer; font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.custom-time { margin-top: 26px; padding: 24px; background: var(--paper); }
.timezone-confirmation { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 26px; background: var(--line); }
.timezone-confirmation p { margin: 0; padding: 20px; background: var(--paper); }
.timezone-confirmation span, .timezone-confirmation strong { display: block; }
.timezone-confirmation span { margin-bottom: 6px; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.timezone-confirmation strong { font-size: .95rem; font-weight: 500; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid var(--ink); }
.form-submit p { margin: 0; color: var(--muted); font-size: .75rem; }
.form-submit .button { border-radius: 0; cursor: pointer; white-space: nowrap; }
.honeypot { position: absolute !important; overflow: hidden !important; width: 1px !important; height: 1px !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.form-status { margin-top: 24px; padding: 18px; border-left: 3px solid var(--red); background: var(--soft); }
.direct-contact { padding-block: clamp(90px, 12vw, 180px); border-top: 1px solid var(--ink); }
.direct-contact h2 { font-size: clamp(2rem, 4vw, 5rem); overflow-wrap: anywhere; }
.direct-contact h2 a { text-decoration: none; }
.direct-contact > p:last-child { color: var(--muted); }

/* Legal */
.legal-layout { display: grid; grid-template-columns: minmax(220px, 3fr) minmax(0, 8fr); gap: clamp(50px, 10vw, 170px); padding-bottom: clamp(100px, 13vw, 190px); }
.legal-layout aside { position: sticky; top: calc(var(--header-height) + 35px); align-self: start; padding-top: 20px; border-top: 2px solid var(--ink); }
.legal-layout aside p { color: var(--muted); }
.legal-content section { margin-bottom: 70px; }
.legal-content h2 { font-size: clamp(1.8rem, 3vw, 3.5rem); }
.legal-content p { font-size: 1.05rem; line-height: 1.68; }

/* Footer */
.site-footer { padding: clamp(75px, 10vw, 145px) max(32px, calc((100vw - min(1480px, calc(100vw - 64px))) / 2)); color: var(--paper); background: #0b0b0b; }
.footer-lead { display: grid; grid-template-columns: 7fr 4fr; gap: clamp(50px, 10vw, 170px); align-items: end; padding-bottom: clamp(70px, 9vw, 130px); border-bottom: 1px solid rgba(255,255,255,.24); }
.footer-lead .eyebrow { color: rgba(255,255,255,.62); }
.footer-lead h2 { max-width: 1000px; margin: 0; }
.text-link.light { color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr; gap: clamp(35px, 5vw, 80px); padding-block: 70px; }
.footer-brand img { width: 190px; height: auto; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,.68); font-size: .82rem; }
.footer-brand a { color: var(--paper); }
.site-footer h3 { margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-subhead { margin-top: 35px; }
.site-footer li { margin-bottom: 10px; }
.site-footer li a { color: rgba(255,255,255,.78); font-size: .78rem; line-height: 1.25; text-decoration: none; }
.site-footer li a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.62); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }

.language-suggestion { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: flex; max-width: min(420px, calc(100vw - 40px)); align-items: center; gap: 20px; padding: 16px 18px; color: var(--paper); background: var(--ink); box-shadow: 0 16px 50px rgba(0,0,0,.2); }
.language-suggestion p { margin: 0; font-size: .82rem; }
.language-suggestion a { color: var(--paper); }
.language-suggestion button { border: 0; color: var(--paper); background: none; cursor: pointer; font-size: 1.4rem; }
.not-found { min-height: 72vh; padding-block: clamp(100px, 14vw, 210px); }
.not-found h1 { max-width: 1050px; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 44px, 1480px); }
  .navigation-panel { gap: 20px; }
  .primary-navigation ul { gap: 16px; }
  .primary-navigation a { font-size: .7rem; }
  .header-action { display: none; }
  .hero { grid-template-columns: 1.25fr .75fr; gap: 44px; }
  .link-card { grid-column: span 6; }
  .link-card:not(:nth-child(3n)) { border-right: 0; }
  .link-card:not(:nth-child(3n+1)) { padding-left: 0; }
  .link-card:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
  .link-card:nth-child(even) { padding-left: 32px; }
  .snapshot-band dl { grid-template-columns: repeat(2, 1fr); }
  .snapshot-band dl > div:nth-child(3) { border-left: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid nav:last-child { grid-column: 2; }
}

@media (max-width: 860px) {
  :root { --header-height: 68px; --shell: calc(100% - 34px); }
  body { padding-top: var(--header-height); font-size: 16px; }
  .site-header { position: fixed; z-index: 900; right: 0; left: 0; background: rgba(255,255,255,.98); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .brand { width: 148px; }
  .menu-button { display: flex; width: 56px; height: 44px; margin-left: auto; align-items: center; justify-content: space-between; padding: 0; border: 0; background: transparent; cursor: pointer; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .menu-button i, .menu-button i::before { display: block; width: 17px; height: 1px; content: ""; background: var(--ink); transition: transform .2s ease; }
  .menu-button i::before { transform: translateY(-6px); }
  .menu-button[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .navigation-panel { position: fixed; z-index: 901; top: var(--header-height); right: 0; bottom: auto; left: 0; display: none; height: calc(100dvh - var(--header-height)); overflow-y: auto; overscroll-behavior: contain; margin: 0; padding: 38px 17px 45px; align-items: stretch; background: #f4f4f1; box-shadow: 0 24px 70px rgba(17,17,17,.16); -webkit-overflow-scrolling: touch; }
  .navigation-panel.is-open { display: block; }
  .primary-navigation ul { display: block; }
  .primary-navigation li { border-bottom: 1px solid var(--line); }
  .primary-navigation a { display: block; padding: 20px 0; font-size: clamp(1.5rem, 6vw, 2.4rem); font-weight: 500; letter-spacing: -.025em; text-transform: none; }
  .primary-navigation a::after { display: none; }
  .language-control { margin-top: 36px; }
  .language-button { justify-content: flex-start; }
  .language-menu { position: static; margin-top: 8px; box-shadow: none; }
  .header-action { display: inline-flex; margin-top: 30px; }
  .menu-open { overflow: hidden; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 60px; padding-block: 54px 80px; }
  .hero h1 { font-size: clamp(3.2rem, 14vw, 6rem); }
  .hero-visual { width: min(74vw, 520px); margin-left: auto; }
  .hero-facts { margin-top: 65px; }
  .split-heading, .experience-section, .contact-band-grid, .detail-hero-grid, .concept-hero-grid, .two-column-content, .deliverable-grid, .fee-section, .form-section .section-shell, .legal-layout, .footer-lead { grid-template-columns: 1fr; }
  .split-heading, .experience-section, .contact-band-grid, .detail-hero-grid, .concept-hero-grid, .two-column-content, .deliverable-grid, .fee-section, .legal-layout { gap: 45px; }
  .link-card { min-height: 330px; }
  .concept-grid { gap: 34px; }
  .process-list li { grid-template-columns: 55px 1fr; padding-block: 24px; }
  .process-list div { grid-template-columns: 1fr; gap: 12px; }
  .region-grid { grid-template-columns: 1fr; }
  .region-grid article, .region-grid article + article { min-height: 300px; padding: 28px 0; border-left: 0; }
  .region-grid h3 { margin-top: 60px; }
  .region-grid .text-link { position: static; display: inline-block; margin-top: 30px; }
  .scope-note.wide { grid-template-columns: 1fr; gap: 5px; }
  .boundary-grid { grid-template-columns: 1fr; gap: 35px; }
  .boundary-grid > div:nth-child(3) { margin-top: 45px; }
  .commercial-strip { grid-template-columns: 1fr; }
  .commercial-strip > div, .commercial-strip > div + div { min-height: auto; padding: 26px 0; border-left: 0; }
  .commercial-strip h3 { margin-top: 44px; }
  .region-card-large { grid-template-columns: 1fr; gap: 20px; }
  .region-card-large h2 { margin-top: 44px; }
  .region-card-large .text-link { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-summary, .form-heading, .legal-layout aside { position: static; }
  .article-summary { margin-bottom: 30px; }
  .article-navigation-heading { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid nav:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .section-block { padding-block: 85px; }
  .privacy-overlay { padding: 12px; background: rgba(7,7,7,.62); }
  .privacy-glass { padding: 28px 24px; border-radius: 24px; background: linear-gradient(135deg, rgba(20,20,20,.94), rgba(6,6,6,.88)); }
  .privacy-actions { align-items: stretch; flex-direction: column; }
  .privacy-actions button { width: 100%; }
  .hero { gap: 48px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .button-row { width: 100%; }
  .button-row .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div { padding-block: 14px; }
  .hero-visual { width: 88vw; }
  .statement-band p { font-size: 1.65rem; }
  .card-grid, .concept-grid, .insight-grid, .proposal-grid, .contact-choice { grid-template-columns: 1fr; }
  .link-card, .link-card:nth-child(odd), .link-card:nth-child(even), .link-card:not(:nth-child(3n)), .link-card:not(:nth-child(3n+1)) { grid-column: auto; min-height: 290px; padding: 24px 0; border-right: 0; }
  .link-card h3 { margin-top: 60px; }
  .concept-card-copy { padding-right: 0; }
  .insight-card, .insight-card:nth-child(even), .proposal-grid article, .proposal-grid article:nth-child(even) { min-height: 320px; padding: 24px 0 36px; border-left: 0; }
  .proposal-grid article { min-height: 240px; }
  .proposal-grid h3 { margin-top: 48px; }
  .insight-card .text-link { position: static; display: inline-block; margin-top: 25px; }
  .snapshot-band dl { grid-template-columns: 1fr; }
  .snapshot-band dl > div, .snapshot-band dl > div + div { min-height: auto; padding: 24px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .snapshot-band dt { margin-bottom: 8px; }
  .sources li { grid-template-columns: 1fr; gap: 5px; }
  .sources li span { text-align: left; }
  .article-navigation-grid { grid-template-columns: 1fr; }
  .article-navigation-link { min-height: 220px; }
  .article-navigation-link + .article-navigation-link { border-top: 1px solid rgba(255,255,255,.25); border-left: 0; }
  .contact-choice a, .contact-choice a + a { min-height: 250px; padding: 26px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .form-grid, .timezone-confirmation { grid-template-columns: 1fr; }
  .form-span { grid-column: auto; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-inline: 20px; }
}

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

@media print {
  .site-header, .site-footer, .privacy-overlay, .language-suggestion, .button, .article-summary .text-link { display: none !important; }
  body { font-size: 11pt; }
  .section-shell { width: 100%; }
  .article-layout { display: block; }
  .article-summary { position: static; margin-bottom: 30px; }
  a { text-decoration: none; }
}
