@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800;900&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bone: #FBF8F2;
  --paper: #F2ECE0;
  --paper-sink: #E7DFCE;
  --paper-edge: #DDD3BF;

  --night: #14181A;
  --night-sink: #0C0F10;
  --night-rise: #1E2427;

  --ink: #17150F;
  --ink-2: #423C30;
  --ink-3: #6E6657;
  --ink-on-night: #F2ECE0;
  --ink-2-night: #B6AE9E;
  --ink-3-night: #7E7768;

  --clay: #B6442B;
  --clay-deep: #8F3422;
  --clay-tint: #E7C8BD;
  --ochre: #C2922F;
  --ochre-deep: #9A7320;
  --slate: #2C4A50;

  --line: rgba(23,21,15,0.14);
  --line-strong: rgba(23,21,15,0.28);
  --line-night: rgba(242,236,224,0.16);
  --line-night-strong: rgba(242,236,224,0.30);

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(23,21,15,0.06);
  --shadow-md: 0 6px 20px -8px rgba(23,21,15,0.18);
  --shadow-lg: 0 24px 60px -24px rgba(23,21,15,0.30);

  --font-sans: 'Schibsted Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  --fs-h1: clamp(2.6rem, 6vw, 5.25rem);
  --fs-h2: clamp(2rem, 4vw, 3.5rem);
  --fs-h3: clamp(1.5rem, 2.4vw, 2.25rem);
  --fs-h4: clamp(1.2rem, 1.6vw, 1.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--clay); color: var(--bone); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bone); padding: 12px 18px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { width: min(1280px, 90vw); margin-inline: auto; }
.wrap-narrow { width: min(820px, 90vw); margin-inline: auto; }
.wrap-wide { width: min(1480px, 94vw); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay);
}
.coord { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--ink-3); }

h1, h2, h3 { margin: 0; }
.h1 { font-weight: 700; font-size: var(--fs-h1); line-height: 0.98; letter-spacing: -0.03em; text-wrap: balance; }
.h2 { font-weight: 600; font-size: var(--fs-h2); line-height: 1.04; letter-spacing: -0.025em; text-wrap: balance; }
.h3 { font-weight: 600; font-size: var(--fs-h3); line-height: 1.1; letter-spacing: -0.02em; }
.h4 { font-weight: 600; font-size: var(--fs-h4); line-height: 1.25; }
.lead { font-size: clamp(1.15rem, 1.5vw, 1.5rem); line-height: 1.45; letter-spacing: -0.01em; color: var(--ink-2); text-wrap: pretty; }
.body { color: var(--ink-2); text-wrap: pretty; }
.muted { color: var(--ink-3); }
.clay { color: var(--clay); }

.reveal { transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.is-in { opacity: 1; transform: none; }
.mask-line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.mask-line > span { display: block; transition: transform .95s cubic-bezier(.16,1,.3,1); }
.js .mask-line > span { transform: translateY(112%); }
.js .is-in .mask-line > span { transform: none; }

/* reveal stagger — applied via class instead of inline transition-delay */
.d1 { transition-delay: 60ms; }
.d2 { transition-delay: 120ms; }
.d3 { transition-delay: 180ms; }
.d4 { transition-delay: 240ms; }
.d5 { transition-delay: 300ms; }
.d6 { transition-delay: 400ms; }
.d7 { transition-delay: 520ms; }
.d8 { transition-delay: 620ms; }
.self-end { align-self: end; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal, .mask-line > span, .js .mask-line > span { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  [data-parallax] { transform: none !important; }
}

.section { position: relative; padding-block: clamp(64px, 10vh, 140px); }
.section.sink { background: var(--paper-sink); }
.section.bone { background: var(--bone); }
.section.night { background: var(--night); color: var(--ink-on-night); }
.section.tight { padding-block: clamp(48px, 7vh, 96px); }

.night .eyebrow { color: var(--ochre); }
.night .lead, .night .body { color: var(--ink-2-night); }
.night .muted { color: var(--ink-3-night); }

.photo {
  position: relative; overflow: hidden; background: var(--slate);
  background-image:
    repeating-radial-gradient(circle at 28% 116%, transparent 0 24px, rgba(194,146,47,0.18) 24px 25px),
    linear-gradient(158deg, #2b4248 0%, #1b3137 55%, #122529 100%);
  border-radius: var(--r-md);
}
.photo[data-label]::after {
  content: attr(data-label); position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,236,224,0.66); max-width: 70%;
}
.photo .pin { position: absolute; top: 14px; right: 16px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; color: var(--ochre); }

.btn {
  font-family: var(--font-sans); font-size: 15px; font-weight: 600; letter-spacing: 0.005em;
  padding: 15px 26px; border-radius: var(--r-sm); border: 1px solid transparent; cursor: pointer;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background .25s, color .25s, border-color .25s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn .ar { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.btn:hover .ar { transform: translateX(5px); }
.btn-primary { background: var(--clay); color: var(--bone); }
.btn-primary:hover { background: var(--clay-deep); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); }
.night .btn-outline { color: var(--ink-on-night); border-color: var(--line-night-strong); }
.night .btn-outline:hover { border-color: var(--ink-on-night); }
.btn-on-clay { background: var(--bone); color: var(--clay-deep); }
.btn-on-clay:hover { background: #fff; }
.btn-ghost-clay { background: transparent; color: var(--bone); border-color: rgba(251,248,242,0.4); }
.btn-ghost-clay:hover { border-color: var(--bone); }

.tlink { display: inline-flex; align-items: center; cursor: pointer; color: var(--ink); font-weight: 500; }
.tlink .rule { height: 1px; width: 8px; background: var(--ink-3); margin: 0 4px;
  transition: width .4s cubic-bezier(.16,1,.3,1), background .3s; }
.tlink .ar { color: var(--ink-3); transition: color .3s, transform .3s cubic-bezier(.16,1,.3,1); }
.tlink:hover { color: var(--clay); }
.tlink:hover .rule { width: 44px; background: var(--clay); }
.tlink:hover .ar { color: var(--clay); }
.night .tlink { color: var(--ink-on-night); }
.night .tlink .rule, .night .tlink .ar { color: var(--ink-2-night); background: var(--ink-2-night); }
.night .tlink:hover, .night .tlink:hover .ar { color: var(--ochre); }
.night .tlink:hover .rule { background: var(--ochre); }

.wordmark { display: inline-flex; align-items: center; gap: 11px; }
.wordmark svg { width: 26px; height: 26px; }
.wordmark .wm-text { font-family: var(--font-sans); font-size: 24px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.025em; line-height: 1; }

.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
.hdr.scrolled { background: rgba(242,236,224,0.78); backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: var(--line); padding-top: 14px; padding-bottom: 14px; }
.hdr-right { display: flex; align-items: center; gap: clamp(16px, 3vw, 34px); }
.hdr-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--ink-3); text-transform: uppercase; }
@media (max-width: 760px) { .hdr-tag { display: none; } }
.menu-trigger { display: flex; align-items: center; gap: 13px; cursor: pointer; background: none; border: 0; padding: 0; }
.menu-trigger .mt-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink); }
.menu-trigger .mt-lines { display: flex; flex-direction: column; gap: 5px; width: 28px; }
.menu-trigger .mt-lines span { height: 1.5px; background: var(--ink); display: block;
  transition: transform .35s cubic-bezier(.16,1,.3,1), width .35s, background .35s; }
.menu-trigger .mt-lines span:last-child { width: 17px; background: var(--clay); }
.menu-trigger:hover .mt-lines span:last-child { width: 28px; }
.menu-trigger:hover .mt-lines span:first-child { width: 17px; }

.menu { position: fixed; inset: 0; z-index: 100; background: var(--bone); color: var(--ink);
  clip-path: inset(0 0 100% 0); pointer-events: none;
  transition: clip-path .62s cubic-bezier(.76,0,.24,1); }
.menu.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.menu-inner { height: 100%; display: flex; flex-direction: column;
  padding: 22px clamp(20px, 4vw, 56px) clamp(28px, 4vw, 48px); }
.menu-top { display: flex; align-items: center; justify-content: space-between; }
.menu-close { display: flex; align-items: center; gap: 12px; cursor: pointer; background: none; border: 0;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.menu-close .x { font-size: 22px; line-height: 1; color: var(--clay); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.menu-close:hover .x { transform: rotate(90deg); }
.menu-body { flex: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
  align-content: center; align-items: center; padding-block: 4vh; }
@media (max-width: 860px) { .menu-body { grid-template-columns: 1fr; align-content: start; padding-top: 6vh; overflow-y: auto; } }

.menu-nav { display: flex; flex-direction: column; }
.menu-nav a { display: flex; align-items: baseline; gap: 22px; padding: clamp(6px,1.2vh,15px) 0;
  border-top: 1px solid var(--line); position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .6s cubic-bezier(.16,1,.3,1), color .3s; }
.menu-nav a:last-child { border-bottom: 1px solid var(--line); }
.menu.open .menu-nav a { opacity: 1; transform: none; }
.menu.open .menu-nav a:nth-child(1) { transition-delay: .16s; }
.menu.open .menu-nav a:nth-child(2) { transition-delay: .22s; }
.menu.open .menu-nav a:nth-child(3) { transition-delay: .28s; }
.menu.open .menu-nav a:nth-child(4) { transition-delay: .34s; }
.menu.open .menu-nav a:nth-child(5) { transition-delay: .40s; }
.menu.open .menu-nav a:nth-child(6) { transition-delay: .46s; }
.menu-nav .m-idx { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--ink-3); width: 34px; flex: none; transition: color .3s; }
.menu-nav .m-label { font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.03em;
  font-size: clamp(2rem, 5.4vw, 4.4rem); line-height: 1; color: var(--ink);
  transition: transform .4s cubic-bezier(.16,1,.3,1), color .3s; }
.menu-nav .m-ar { margin-left: auto; font-size: clamp(1.2rem,2vw,1.8rem); color: var(--clay);
  opacity: 0; transform: translateX(-12px); transition: opacity .3s, transform .4s cubic-bezier(.16,1,.3,1); }
.menu-nav a:hover .m-label { color: var(--clay); transform: translateX(14px); }
.menu-nav a:hover .m-idx { color: var(--ochre); }
.menu-nav a:hover .m-ar { opacity: 1; transform: none; }
.menu-nav a[aria-current="page"] .m-label { color: var(--clay); }
.menu-nav a[aria-current="page"] .m-idx { color: var(--ochre); }

.menu-aside { display: flex; flex-direction: column; gap: 28px; align-self: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease .42s, transform .6s cubic-bezier(.16,1,.3,1) .42s; }
.menu.open .menu-aside { opacity: 1; transform: none; }
.menu-aside h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clay); margin: 0 0 12px; font-weight: 400; }
.menu-aside .m-email { font-family: var(--font-sans); font-weight: 600; font-size: 21px;
  letter-spacing: -0.02em; color: var(--ink); }
.menu-aside .m-line { font-size: 1rem; color: var(--ink-2); line-height: 1.5; max-width: 34ch; }
.menu-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 22px; }

.page-hero { position: relative; padding: clamp(150px, 22vh, 280px) 0 clamp(48px, 7vh, 96px); }
.page-hero .eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.page-hero .eyebrow-row .rule { height: 1px; width: 56px; background: var(--clay); }
.page-hero h1 { font-weight: 700; font-size: clamp(2.8rem, 7vw, 6.4rem); line-height: 0.94;
  letter-spacing: -0.04em; color: var(--ink); max-width: 16ch; }
.page-hero .ph-lead { margin: 30px 0 0; max-width: 52ch; font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.45; letter-spacing: -0.01em; color: var(--ink-2); text-wrap: pretty; }
.page-hero .ph-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.hero { position: relative; min-height: 100vh; background: var(--paper); color: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(20px, 4vw, 56px) clamp(36px, 5vh, 60px); overflow: hidden; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(24px, 4vw, 64px); align-items: end; padding-top: 18vh; }
.hero-grid.solo { grid-template-columns: 1fr; }
.hero-grid.solo h1 { font-size: clamp(3rem, 9.4vw, 9rem); }
.hero-grid.solo .hero-lead { max-width: 62ch; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.hero-eyebrow .rule { height: 1px; width: 56px; background: var(--clay); }
.hero h1 { margin: 0; font-weight: 700;
  font-size: clamp(2.9rem, 7.4vw, 6.8rem); line-height: 0.92; letter-spacing: -0.04em; color: var(--ink); }
.hero h1 .clay { color: var(--clay); }
.hero-lead { margin: 30px 0 32px; max-width: 40ch; font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.45; letter-spacing: -0.01em; color: var(--ink-2); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { align-self: stretch; min-height: 46vh; }
@media (max-width: 900px) { .hero-photo { min-height: 34vh; margin-top: 10px; } }
.hero-foot { position: relative; z-index: 2; display: flex; justify-content: space-between;
  align-items: flex-end; gap: 16px; margin-top: clamp(28px, 5vh, 56px);
  border-top: 1px solid var(--line); padding-top: 20px; flex-wrap: wrap; }
.hero-foot .scroll-cue { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
.hero-foot .scroll-cue .dash { width: 30px; height: 1px; background: var(--clay); animation: cue 2.4s infinite; }
@keyframes cue { 0%,100% { transform: scaleX(.3); opacity:.5; } 50% { transform: scaleX(1); opacity:1; } }
.hero-idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-3); }
@media (prefers-reduced-motion: reduce) { .hero-foot .scroll-cue .dash { animation: none; } }

.lead-grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(24px,4vw,72px); }
@media (max-width: 760px) { .lead-grid { grid-template-columns: 1fr; gap: 22px; } .lead-grid > :empty { display: none; } }

.split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px,5vw,90px); align-items: start; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 20px; } }
.split-head .h2 { text-wrap: balance; }
.split-body > * + * { margin-top: 20px; }
.split-body .lead { max-width: 56ch; }
.split-body .body { max-width: 60ch; }
.lead-grid .marginalia { display: flex; flex-direction: column; gap: 14px; }
.lead-grid .marginalia p { font-family: var(--font-mono); font-size: 12px; line-height: 1.7;
  letter-spacing: 0.02em; color: var(--ink-3); margin: 0; }
.night .lead-grid .marginalia p { color: var(--ink-3-night); }
.big-statement { font-weight: 600; font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  line-height: 1.14; letter-spacing: -0.03em; color: var(--ink); margin: 0; text-wrap: balance; }
.night .big-statement { color: var(--ink-on-night); }
.big-statement .clay { color: var(--clay); }
.night .big-statement .clay { color: var(--ochre); }

.section-head { margin-bottom: clamp(32px, 5vw, 64px); max-width: 60ch; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head .h2 { margin-bottom: 18px; }

.approach-row { display: grid; grid-template-columns: 130px 1fr 1.1fr; gap: clamp(20px,3vw,48px);
  align-items: start; padding: clamp(28px,4vh,46px) 0; border-top: 1px solid var(--line); }
.approach-row:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 820px) { .approach-row { grid-template-columns: 64px 1fr; } .approach-row .ap-body { grid-column: 2; } }
.approach-row .ap-num { font-weight: 700; font-size: clamp(2.4rem,4vw,3.4rem);
  line-height: 1; color: var(--clay); letter-spacing: -0.04em; }
.approach-row .ap-title { font-weight: 600; font-size: clamp(1.5rem,2.4vw,2.1rem);
  letter-spacing: -0.03em; line-height: 1.08; color: var(--ink); margin: 0; }
.approach-row .ap-body { color: var(--ink-2); margin: 0; }

.list-rows { border-top: 1px solid var(--line); }
.list-row { display: grid; grid-template-columns: 56px 1fr; gap: clamp(16px,3vw,40px);
  align-items: start; padding: clamp(22px,3vh,34px) 0; border-bottom: 1px solid var(--line);
  transition: padding-left .35s cubic-bezier(.16,1,.3,1); }
.list-row:hover { padding-left: 12px; }
.list-row .lr-idx { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--ochre); padding-top: 6px; }
.list-row > div { display: flex; flex-direction: column; gap: 10px; }
.list-row .lr-title { font-weight: 600; font-size: clamp(1.3rem,2vw,1.85rem); letter-spacing: -0.03em;
  line-height: 1.1; color: var(--ink); margin: 0; }
.list-row .lr-body { color: var(--ink-2); margin: 0; max-width: 64ch; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--bone); }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
.svc { padding: clamp(28px,3.4vw,44px); border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line); position: relative; transition: background .35s; }
.svc:nth-child(2n) { border-right: 0; }
.svc:nth-last-child(-n+2):nth-child(odd) { border-bottom: 0; }
.svc:last-child { border-bottom: 0; }
.svc:hover { background: var(--paper-sink); }
.svc .svc-idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ochre); }
.svc .svc-title { font-weight: 600; letter-spacing: -0.03em;
  font-size: clamp(1.4rem,2vw,1.9rem); color: var(--ink); margin: 0 0 12px; line-height: 1.08; }
.svc .svc-body { font-size: 1rem; line-height: 1.6; color: var(--ink-2); margin: 0; }

.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,40px); }
@media (max-width: 860px) { .three-grid { grid-template-columns: 1fr; gap: 4px; } }
.q-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,2.6vw,36px); }
@media (max-width: 980px) { .q-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .q-grid { grid-template-columns: 1fr; gap: 8px; } }
.q-card { padding-top: 22px; border-top: 1px solid var(--line-strong); }
.q-card .q-idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ochre); text-transform: uppercase; }
.q-card .q-title { font-weight: 600; font-size: clamp(1.4rem,2.2vw,1.9rem); letter-spacing: -0.03em;
  color: var(--ink); margin: 16px 0 12px; }
.q-card .q-body { color: var(--ink-2); margin: 0; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,40px); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; gap: 8px; } }
.stat { padding-top: 22px; border-top: 1px solid var(--line-strong); }
.stat .num { font-weight: 700; font-size: clamp(3rem,6vw,5rem);
  line-height: 0.9; color: var(--clay); letter-spacing: -0.05em; }
.stat .lbl { font-size: 1rem; color: var(--ink-2); margin-top: 14px; max-width: 28ch; }

.quote-block { max-width: 24ch; }
.pquote { font-weight: 500; font-size: clamp(1.9rem,4.2vw,3.4rem);
  line-height: 1.16; letter-spacing: -0.035em; color: var(--ink); margin: 0; text-wrap: balance; }
.night .pquote { color: var(--ink-on-night); }
.pquote .clay { color: var(--clay); }
.night .pquote .clay { color: var(--ochre); }
.pquote-by { margin-top: 28px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); }
.night .pquote-by { color: var(--ink-3-night); }

.region-row { display: grid; grid-template-columns: 56px 1.3fr 1.4fr; gap: 18px; align-items: center;
  padding: clamp(18px,2.4vh,26px) 0; border-top: 1px solid var(--line);
  transition: padding-left .35s cubic-bezier(.16,1,.3,1); }
.region-row:last-child { border-bottom: 1px solid var(--line); }
.region-row:hover { padding-left: 14px; }
@media (max-width: 720px) { .region-row { grid-template-columns: 40px 1fr; } .region-row .r-note { display: none; } }
.region-row .r-idx { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.region-row .r-name { font-weight: 600; letter-spacing: -0.03em;
  font-size: clamp(1.4rem,2.4vw,2rem); color: var(--ink); transition: color .3s; }
.region-row:hover .r-name { color: var(--clay); }
.region-row .r-note { font-size: 0.95rem; color: var(--ink-3); }
.region-row .r-coord { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); text-align: right; }

.sector-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,80px); align-items: start;
  padding: clamp(40px,7vh,100px) 0; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
@media (max-width: 860px) { .sector-detail { grid-template-columns: 1fr; gap: 28px; } }
.sector-detail .sd-head .sd-idx { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--ochre); }
.sector-detail .sd-head h3 { font-weight: 700; font-size: clamp(2rem,4vw,3.4rem); letter-spacing: -0.035em;
  line-height: 1; color: var(--ink); margin: 16px 0 0; }
.sd-block { margin-bottom: 26px; }
.sd-block:last-child { margin-bottom: 0; }
.sd-block .sd-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay); display: block; margin-bottom: 8px; }
.sd-block p { margin: 0; color: var(--ink-2); }

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px,2.4vw,30px); }
@media (max-width: 820px) { .case-grid { grid-template-columns: 1fr; } }
.case-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; background: var(--bone);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .3s; }
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.case-card .cc-photo { height: 230px; }
.case-card .cc-photo image-slot { width: 100%; height: 100%; border-radius: 0; }
.case-card .cc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-card .cc-meta { padding: clamp(24px,3vw,34px); display: flex; flex-direction: column; gap: 14px; flex: 1;
  background: var(--bone); border-top: 1px solid var(--line); }
.case-card .cc-sector { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ochre); }
.case-card .cc-title { font-weight: 600; font-size: clamp(1.3rem,1.9vw,1.75rem); letter-spacing: -0.03em;
  line-height: 1.12; color: var(--ink); margin: 0; }
.case-card .cc-open { margin-top: auto; background: none; border: 0; padding: 0; font-family: inherit;
  font-size: 1rem; cursor: pointer; align-self: flex-start; }

.case-detail { display: none; }
.modal { position: fixed; inset: 0; z-index: 120; display: none; }
.modal.open { display: block; }
.modal-scrim { position: absolute; inset: 0; background: rgba(12,15,16,0.55); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .4s ease; }
.modal.open .modal-scrim { opacity: 1; }
.modal-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(760px, 100%);
  background: var(--bone); overflow-y: auto; transform: translateX(40px); opacity: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s ease;
  box-shadow: var(--shadow-lg); }
.modal.open .modal-panel { transform: none; opacity: 1; }
.modal-head { position: sticky; top: 0; background: rgba(251,248,242,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px clamp(24px,4vw,48px); border-bottom: 1px solid var(--line); z-index: 2; }
.modal-head .mh-sector { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); }
.modal-close { background: none; border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  width: 40px; height: 40px; cursor: pointer; font-size: 20px; color: var(--ink); display: flex;
  align-items: center; justify-content: center; transition: border-color .3s, transform .3s; }
.modal-close:hover { border-color: var(--ink); transform: rotate(90deg); }
.modal-content { padding: clamp(28px,4vw,52px); }
.modal-content .mc-photo { min-height: 220px; margin-bottom: 32px; }
.modal-content h2 { font-weight: 700; font-size: clamp(1.8rem,3.4vw,2.7rem); letter-spacing: -0.035em;
  line-height: 1.04; color: var(--ink); margin: 0 0 24px; }
.modal-content .mc-intro { font-size: 1.15rem; line-height: 1.5; color: var(--ink-2); margin: 0 0 36px; }
.mc-block { margin-bottom: 32px; }
.mc-block .mc-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay); display: block; margin-bottom: 12px; }
.mc-block p { margin: 0 0 12px; color: var(--ink-2); }
.mc-block ul { margin: 0; padding: 0; list-style: none; }
.mc-block ul li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--ink-2); }
.mc-block ul li::before { content: "→"; position: absolute; left: 0; color: var(--clay); font-weight: 600; }

.cta-band { background: var(--clay); border-radius: var(--r-lg); padding: clamp(48px,7vw,92px) clamp(28px,5vw,72px);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-band .cta-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(251,248,242,0.8); }
.cta-head { font-weight: 700; font-size: clamp(2.2rem,5.4vw,4.4rem);
  line-height: 1; letter-spacing: -0.04em; color: var(--bone); margin: 0; max-width: 18ch; text-wrap: balance; }
.cta-sub { color: rgba(251,248,242,0.86); max-width: 52ch; margin: 0; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,24px); }
@media (max-width: 760px) { .partner-grid { grid-template-columns: 1fr; } }
.partner { border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(24px,3vw,36px);
  background: var(--bone); display: flex; flex-direction: column; gap: 16px; transition: border-color .3s, background .3s; }
.partner:hover { border-color: var(--line-strong); background: var(--paper-sink); }
.partner .p-name { font-weight: 600; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--ink); }
.partner .p-url { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); }
.partner .p-url:hover { color: var(--clay); }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,80px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-aside h2 { margin-bottom: 24px; }
.contact-aside .ca-block { margin-top: 30px; }
.contact-aside .ca-block h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--clay); margin: 0 0 10px; font-weight: 400; }
.form { display: grid; gap: 22px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .form .row2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 1rem; color: var(--ink); background: var(--bone);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 14px 16px;
  transition: border-color .25s, background .25s; width: 100%; }
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); background: #fff; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236E6657' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-note { font-size: 0.85rem; color: var(--ink-3); max-width: 36ch; }
.form-success { display: none; border: 1px solid var(--clay); border-radius: var(--r-md);
  padding: clamp(28px,4vw,44px); background: var(--clay-tint); }
.form-success.show { display: block; }
.form-success h3 { color: var(--clay-deep); margin: 0 0 12px; }
.form-success p { margin: 0; color: var(--ink-2); }

.prose { max-width: 72ch; }
.prose h2 { font-weight: 600; font-size: clamp(1.5rem,2.4vw,2rem); letter-spacing: -0.025em;
  color: var(--ink); margin: 48px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-weight: 600; font-size: 1.25rem; color: var(--ink); margin: 32px 0 12px; }
.prose p { color: var(--ink-2); margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); }
.prose ul li { margin-bottom: 10px; }
.prose a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.prose .placeholder-note { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-3); border: 1px dashed var(--line-strong); border-radius: var(--r-sm);
  padding: 18px 20px; background: var(--bone); }

.ftr { background: var(--paper-sink); color: var(--ink-2); padding: clamp(56px,7vh,90px) clamp(20px,4vw,56px) 36px; }
.ftr-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 36px; padding-bottom: 48px;
  border-bottom: 1px solid var(--line); }
@media (max-width: 820px) { .ftr-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .ftr-top { grid-template-columns: 1fr; } }
.ftr-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 18px; font-weight: 400; }
.ftr-col a { display: block; padding: 7px 0; color: var(--ink-2); font-size: 1rem; transition: color .25s; }
.ftr-col a:hover { color: var(--clay); }
.ftr-addr { display: block; padding: 7px 0; margin: 0; font-style: normal; color: var(--ink-2);
  font-size: 1rem; line-height: 1.5; max-width: 30ch; }
.ftr-blurb { font-size: 1.2rem; line-height: 1.5; color: var(--ink-2); max-width: 34ch; margin: 22px 0 0;
  letter-spacing: -0.01em; }
.ftr-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.ftr-bottom a:hover { color: var(--clay); }

image-slot { display: block; background: var(--slate);
  background-image:
    repeating-radial-gradient(circle at 28% 116%, transparent 0 24px, rgba(194,146,47,0.18) 24px 25px),
    linear-gradient(158deg, #2b4248 0%, #1b3137 55%, #122529 100%);
  border-radius: var(--r-md); }
.about-mid-img { width: 100%; height: 46vh; min-height: 320px; object-fit: cover;
  border-radius: var(--r-md); display: block; }

.section.bg-image { position: relative; overflow: hidden; }
.section-bg { position: absolute; inset: 0; z-index: 0; }
.section-bg image-slot { width: 100%; height: 100%; border-radius: 0; }
.section-bg::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, rgba(12,15,16,0.74), rgba(12,15,16,0.5)); }
.section.bg-image > .wrap { position: relative; z-index: 1; pointer-events: none; }
.section.bg-image > .wrap a, .section.bg-image > .wrap button { pointer-events: auto; }

.cookie { position: fixed; left: clamp(16px,3vw,32px); bottom: clamp(16px,3vw,32px);
  z-index: 130; width: min(400px, calc(100vw - 32px)); background: var(--bone);
  border: 1px solid var(--line-strong); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: clamp(22px,2.4vw,28px); transform: translateY(24px) scale(.98); opacity: 0; pointer-events: none;
  transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .5s ease; }
.cookie.show { transform: none; opacity: 1; pointer-events: auto; }
.cookie-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.cookie-head svg { width: 22px; height: 22px; flex: none; }
.cookie .ck-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--clay); }
.cookie p { margin: 0 0 22px; font-size: 0.95rem; line-height: 1.6; color: var(--ink-2); }
.cookie p a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 12px 24px; font-size: 14px; flex: 1; justify-content: center; }
.cookie .btn-outline { flex: 0 0 auto; }

@media (max-width: 560px) {
  .page-hero { padding-top: clamp(120px, 18vh, 160px); }
  .approach-row { grid-template-columns: 56px 1fr; }
  .approach-row .ap-title { grid-column: 2; }
}

/* ---- Photographic backgrounds (image heroes, CTA, parallax) ---- */

/* Homepage CTA band — photo behind a dark wash */
.cta-band.cta-photo { position: relative; overflow: hidden; background-color: var(--night);
  background-image: linear-gradient(180deg, rgba(18,15,12,0.50) 0%, rgba(18,15,12,0.66) 100%), url("../assets/cta-bg.jpg");
  background-size: cover; background-position: center; background-repeat: no-repeat; }
.cta-band.cta-photo > * { position: relative; z-index: 1; }

/* Page heroes — photo full-bleed behind a left-weighted paper wash so dark text stays crisp */
.page-hero.hero-photo { overflow: hidden;
  background-size: cover, cover; background-position: center, 70% center; background-repeat: no-repeat, no-repeat; }
.page-hero.hero-photo-services { background-image: linear-gradient(92deg, var(--paper) 0%, var(--paper) 40%, rgba(242,236,224,0.93) 56%, rgba(242,236,224,0.55) 78%, rgba(242,236,224,0.22) 100%), url("../assets/services-hero.jpg"); }
.page-hero.hero-photo-sectors { background-image: linear-gradient(92deg, var(--paper) 0%, var(--paper) 40%, rgba(242,236,224,0.93) 56%, rgba(242,236,224,0.55) 78%, rgba(242,236,224,0.22) 100%), url("../assets/sectors-hero.jpg"); background-position: center, 72% center; }
.page-hero.hero-photo-about { background-image: linear-gradient(92deg, var(--paper) 0%, var(--paper) 40%, rgba(242,236,224,0.93) 56%, rgba(242,236,224,0.55) 78%, rgba(242,236,224,0.22) 100%), url("../assets/about-hero.jpg"); background-position: center, 62% center; }
@media (max-width: 760px) {
  .page-hero.hero-photo { background-position: center, 66% center; }
  .page-hero.hero-photo-services { background-image: linear-gradient(180deg, var(--paper) 0%, rgba(242,236,224,0.96) 46%, rgba(242,236,224,0.78) 78%, rgba(242,236,224,0.6) 100%), url("../assets/services-hero.jpg"); }
  .page-hero.hero-photo-sectors { background-image: linear-gradient(180deg, var(--paper) 0%, rgba(242,236,224,0.96) 46%, rgba(242,236,224,0.78) 78%, rgba(242,236,224,0.6) 100%), url("../assets/sectors-hero.jpg"); }
  .page-hero.hero-photo-about { background-image: linear-gradient(180deg, var(--paper) 0%, rgba(242,236,224,0.96) 46%, rgba(242,236,224,0.78) 78%, rgba(242,236,224,0.6) 100%), url("../assets/about-hero.jpg"); }
}

/* Sectors closing CTA — night section over a photo, strong dark wash for light text */
.section.night.cta-photo { position: relative; overflow: hidden; background-color: var(--night);
  background-image: linear-gradient(180deg, rgba(16,13,11,0.74) 0%, rgba(16,13,11,0.86) 100%), url("../assets/sectors-cta.jpg");
  background-size: cover; background-position: center; background-repeat: no-repeat; }
.section.night.cta-photo > .wrap { position: relative; z-index: 1; }

/* About — full-bleed fixed-attachment parallax band */
.about-parallax { height: clamp(360px, 58vh, 620px);
  background-image: url("../assets/newYork2.jpg");
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-attachment: fixed; }
@media (max-width: 900px) {
  .about-parallax { background-attachment: scroll; height: clamp(280px, 46vh, 420px); }
}
