/* Congruent — site styles
   Palette: pearl #F7F5F2 · nacre sheen (blush/aqua/lilac) · blue ink #1E2B4A · cobalt #2E5AA8 · mute #6F7A93
   Type:    Newsreader (display) · Geist (body) · Geist Mono (labels) */
:root {
  --ink: #F7F5F2;            
  --navy: #EEF1F5;
  --panel: #F1EFF3;          
  --bone: #1E2B4A;           
  --bone-dim: rgba(30, 43, 74, 0.66);
  --mute: #6F7A93;
  --brass: #2E5AA8;          
  --gold: #C9A24A;
  --line: rgba(30, 43, 74, 0.12);
  --line-strong: rgba(30, 43, 74, 0.28);
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --body: "Geist", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(90% 60% at 6% 4%, rgba(246, 226, 218, 0.45) 0%, transparent 58%),
    radial-gradient(80% 55% at 98% 14%, rgba(184, 214, 232, 0.7) 0%, transparent 58%),
    radial-gradient(70% 50% at 58% 48%, rgba(250, 240, 226, 0.4) 0%, transparent 60%),
    radial-gradient(90% 60% at 40% 100%, rgba(214, 212, 236, 0.45) 0%, transparent 62%),
    radial-gradient(60% 45% at 90% 90%, rgba(206, 230, 228, 0.45) 0%, transparent 60%),
    var(--ink);
  background-attachment: fixed;
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 1.5px solid var(--brass); outline-offset: 4px; }
img, video, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 242, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 26px; width: auto; }
.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bone-dim); transition: color 0.2s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--bone); }
.site-nav a[aria-current="page"] { position: relative; }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--brass);
}
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  padding: 0 0 clamp(48px, 8vh, 96px);
  overflow: hidden; isolation: isolate;
}
.hero-still {
  background:
    radial-gradient(60% 70% at 15% 20%, rgba(255, 200, 190, 0.55) 0%, transparent 60%),
    radial-gradient(55% 60% at 85% 25%, rgba(150, 205, 235, 0.7) 0%, transparent 60%),
    radial-gradient(50% 50% at 55% 70%, rgba(255, 226, 196, 0.5) 0%, transparent 60%),
    radial-gradient(60% 50% at 30% 95%, rgba(200, 190, 240, 0.6) 0%, transparent 60%),
    linear-gradient(180deg, #FBFAF8, #F4F1EF);
}
.hero-copy { position: relative; max-width: 880px; }
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(52px, 7.6vw, 112px); line-height: 0.96; letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--brass); }
.hero-lead {
  margin-top: 32px; max-width: 560px;
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: var(--bone-dim);
  text-wrap: pretty;
}
.hero-actions { margin-top: 40px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass); display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--brass); }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 22px; border: 1px solid var(--line-strong); border-radius: 999px;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { border-color: var(--brass); background: rgba(46,90,168,0.06); }
.btn--solid { background: var(--bone); color: #fff; border-color: var(--bone); }
.btn--solid:hover { background: var(--brass); color: #fff; border-color: var(--brass); }
.btn .arrow { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.link-quiet {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bone-dim); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.link-quiet:hover { color: var(--bone); border-bottom-color: var(--brass); }
.band { padding: clamp(88px, 12vw, 168px) 0; }
.band + .band { border-top: 1px solid var(--line); }
.band--panel { background: rgba(255,255,255,0.42); }
h2.display {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4.8vw, 68px); line-height: 1.04; letter-spacing: -0.018em;
  text-wrap: balance;
}
h2.display em { font-style: italic; color: var(--brass); }
.functions-head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 120px); align-items: end; margin-bottom: clamp(48px, 6vw, 88px); }
.functions-head .eyebrow { margin-bottom: 24px; }
.functions-head p { color: var(--bone-dim); font-size: 18px; max-width: 44ch; }
.serve-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(32px, 5vw, 80px); margin-top: clamp(48px, 6vw, 80px); }
.serve-item { border-top: 1px solid var(--line-strong); padding-top: 26px; }
.serve-item .who { font-family: var(--display); font-size: 30px; line-height: 1.05; letter-spacing: -0.01em; }
.serve-item .sub { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-top: 12px; }
.serve-item p { color: var(--bone-dim); margin-top: 20px; font-size: 16px; line-height: 1.55; }
.close { text-align: left; display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: clamp(32px, 6vw, 120px); align-items: end; }
.close .eyebrow { margin-bottom: 28px; }
.close h2.display { font-size: clamp(44px, 7vw, 108px); line-height: 0.98; }
.close-copy { color: var(--bone-dim); font-size: 18px; max-width: 40ch; }
.close-actions { margin-top: 32px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.site-footer { border-top: 1px solid var(--line); padding: 26px var(--gutter) 28px; }
.site-footer .wrap { display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: center; }
.footer-meta, .footer-copy { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.footer-mail { font-size: 15px; color: var(--bone-dim); transition: color 0.2s; }
.footer-mail:hover { color: var(--bone); }
.sub-hero { padding: clamp(160px, 22vh, 240px) 0 clamp(56px, 8vw, 96px); }
.sub-hero .eyebrow { margin-bottom: 28px; }
.sub-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(48px, 7.4vw, 108px); line-height: 0.98; letter-spacing: -0.02em; text-wrap: balance; max-width: 14ch;
}
.sub-lead { margin-top: 32px; max-width: 60ch; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; color: var(--bone-dim); text-wrap: pretty; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
@media (max-width: 760px) {
.thesis, .functions-head, .operate, .close, .letter-row { grid-template-columns: 1fr; }
.serve-grid { grid-template-columns: 1fr; gap: 36px; }
.hero { padding-top: 120px; }
.site-footer .wrap { grid-template-columns: 1fr; gap: 14px; }

}
@media (max-width: 600px) {
body { font-size: 16px; }
.site-nav { gap: 20px; }

}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
[data-reveal] { opacity: 1; transform: none; transition: none; }
.btn .arrow { transition: none; }

}
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 120px); align-items: start; padding-bottom: clamp(88px, 12vw, 168px); }
.form { display: grid; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.field { position: relative; padding: 22px 0 14px; border-bottom: 1px solid var(--line-strong); }
.field label {
  position: absolute; left: 0; top: 22px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute); transition: transform 0.25s var(--ease), color 0.25s; pointer-events: none; transform-origin: left top;
}
.field input, .field textarea, .field select {
  width: 100%; border: 0; background: transparent; font: inherit; color: var(--bone); padding: 16px 0 0; outline: none;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; padding-right: 28px; }
.field select option { color: #1E2B4A; }
.field--select::after {
  content: ""; position: absolute; right: 4px; top: 46px; width: 8px; height: 8px;
  border-right: 1px solid var(--mute); border-bottom: 1px solid var(--mute); transform: rotate(45deg);
}
.field:focus-within { border-bottom-color: var(--brass); }
.field:focus-within label, .field.is-filled label { transform: translateY(-12px) scale(0.9); color: var(--brass); }
.field.is-error { border-bottom-color: #B94A48; }
.field-error { display: none; font-size: 13px; color: #B94A48; margin-top: 8px; }
.field.is-error .field-error { display: block; }
.form-foot { margin-top: 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }
.form-done { display: none; padding: 32px 0; border-top: 1px solid var(--line-strong); }
.form-done.is-visible { display: block; }
.form-done h3 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.015em; }
.form-done p { margin-top: 14px; color: var(--bone-dim); max-width: 44ch; }
.form.is-sent { display: none; }
@media (max-width: 760px) {
.contact { grid-template-columns: 1fr; }
.form-row { grid-template-columns: 1fr; }

}
.hero .eyebrow, .hero h1, .hero-lead, .hero-actions, .hero-bleed { opacity: 0; transform: translateY(18px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.hero-bleed { transform: none; transition: opacity 1.8s var(--ease); }
body.is-loaded .hero-bleed { opacity: 1; }
body.is-loaded .hero .eyebrow { opacity: 1; transform: none; transition-delay: 0.15s; }
body.is-loaded .hero h1 { opacity: 1; transform: none; transition-delay: 0.25s; }
body.is-loaded .hero-lead { opacity: 1; transform: none; transition-delay: 0.4s; }
body.is-loaded .hero-actions { opacity: 1; transform: none; transition-delay: 0.5s; }
.hero-bleed { position: absolute; top: 0; right: 0; bottom: 0; width: 62%; z-index: -1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%), linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%), linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect; }
.hero-bleed img { opacity: 0.9; }
.hero { grid-template-columns: none; }
.hero-copy { max-width: 720px; }
.fig-head { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 120px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.fig-head .eyebrow { margin-bottom: 24px; }
.fig-head p { color: var(--bone-dim); font-size: 18px; max-width: 46ch; }
.fig { position: relative; }
.fig svg { width: 100%; height: auto; display: block; overflow: visible; }
.fig .ln { fill: none; stroke: var(--bone); stroke-opacity: 0.35; stroke-width: 1; }
.fig .ln--brass { stroke: var(--brass); stroke-opacity: 0.9; stroke-width: 1.2; }
.fig .node { fill: rgba(255,255,255,0.55); stroke: var(--line-strong); stroke-width: 1; }
.fig .node--core { fill: var(--bone); stroke: var(--bone); }
.fig .draw { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 2.4s var(--ease); }
.fig.is-in .draw { stroke-dashoffset: 0; }
.fig .pop { opacity: 0; transition: opacity 0.8s var(--ease); }
.fig.is-in .pop { opacity: 1; }
.fig-facts { margin-top: clamp(48px, 6vw, 80px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 64px); }
.fact { border-top: 1px solid var(--line-strong); padding-top: 20px; }
.fact .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); }
.fact .v { margin-top: 12px; font-family: var(--display); font-size: clamp(22px, 2vw, 28px); line-height: 1.15; letter-spacing: -0.01em; }
.fact .d { margin-top: 12px; font-size: 15px; color: var(--bone-dim); line-height: 1.5; }
@media (max-width: 760px) {
.hero-bleed { width: 100%; height: 55%; bottom: auto; -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 40%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, #000 40%, transparent 100%); }
.hero { padding-top: 120px; }
.problem, .fig-head { grid-template-columns: 1fr; }
.fig-facts { grid-template-columns: 1fr; }

}
@media (prefers-reduced-motion: reduce) {
.hero .eyebrow, .hero h1, .hero-lead, .hero-actions, .hero-bleed { opacity: 1; transform: none; transition: none; }
.fig .draw { stroke-dashoffset: 0; transition: none; }
.fig .pop { opacity: 1; }

}
.sub-hero--grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 110px); align-items: center; padding-bottom: clamp(40px, 6vw, 80px); }
@media (max-width: 760px) {
.sub-hero--grid { grid-template-columns: 1fr; }

}
.crew-sec { padding-top: clamp(40px, 6vw, 96px); }
.crew { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 80px); align-items: center; }
.crew-copy h2.display { font-size: clamp(34px, 4vw, 56px); max-width: 12ch; }
.crew-copy p { margin-top: 26px; color: var(--bone-dim); font-size: clamp(17px, 1.35vw, 19px); max-width: 40ch; }
.crew-media { margin-right: calc(-1 * var(--gutter)); margin-left: -12%; }
.crew-media { -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%), linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%), linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%); -webkit-mask-composite: source-in; mask-composite: intersect; }
.crew-media img { width: 100%; height: auto; display: block; }
.band--flow { border-top: 0 !important; }
.serve-grid { gap: clamp(28px, 4vw, 72px); }
.serve-item { border-top: 0; padding-top: 0; }
.serve-icon { width: 40px; height: 40px; color: var(--brass); margin-bottom: 22px; }
.serve-icon svg { width: 100%; height: 100%; }
.serve-item p { margin-top: 18px; }
.serve-lines { margin-top: 22px; }
.serve-lines li { font-size: 15px; color: var(--bone-dim); padding: 9px 0; border-top: 1px solid var(--line); }
.serve-lines li:last-child { border-bottom: 1px solid var(--line); }
.band--fig { background: transparent; }
.fig-head { align-items: start; }
.fig .node--core { fill: var(--bone); }
@media (max-width: 760px) {
.crew { grid-template-columns: 1fr; }
.crew-media { margin: 0; }
.serve-grid { grid-template-columns: 1fr; }

}
.hero { display: grid; align-items: center; min-height: 100svh; padding: 140px 0 120px; }
.hero > .wrap { width: auto; margin: 0; padding-left: var(--gutter); padding-right: var(--gutter); }
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { margin-bottom: 56px; }
.hero h1 { font-size: clamp(40px, 4.6vw, 64px); line-height: 1.08; letter-spacing: -0.015em; }
.hero-lead { margin-top: 44px; max-width: 46ch; font-size: 17px; line-height: 1.7; }
.hero-actions { margin-top: 56px; }
.hero-bleed { width: 58%; }
.folio { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 120px); align-items: start; margin-top: clamp(32px, 4vw, 56px); }
.folio-pane { position: sticky; top: 120px; min-height: 520px; }
.spread { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); pointer-events: none; }
.spread.is-active { opacity: 1; transform: none; pointer-events: auto; }
.spread h3 { margin-top: 26px; font-family: var(--display); font-weight: 400; font-size: clamp(34px, 3.8vw, 54px); line-height: 1.04; letter-spacing: -0.018em; max-width: 12ch; }
.spread h3 em { font-style: italic; color: var(--brass); }
.spread-art { margin-top: 40px; width: 220px; color: var(--brass); opacity: 0.85; }
.spread-art svg { width: 100%; height: auto; display: block; overflow: visible; }
.spread-art .k { fill: none; stroke: var(--bone); stroke-width: 1.1; stroke-linecap: round; opacity: 0.55; }
.folio-flow { }
.leaf { padding: clamp(48px, 6vw, 88px) 0; border-top: 1px solid var(--line-strong); min-height: 52vh; }
.leaf:last-child { border-bottom: 1px solid var(--line-strong); }
.leaf-k { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); display: flex; justify-content: space-between; }
.leaf-k span:last-child { color: var(--brass); }
.leaf .lede { margin-top: 22px; color: var(--bone-dim); font-size: clamp(17px, 1.35vw, 19px); line-height: 1.6; max-width: 48ch; }
.leaf .run { margin-top: 40px; }
.leaf .run p.run-k { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 16px; }
.leaf .run p { font-family: var(--display); font-size: clamp(21px, 2vw, 28px); line-height: 1.5; letter-spacing: -0.01em; color: var(--bone-dim); text-wrap: pretty; max-width: 30ch; }
@media (max-width: 760px) {
.hero { padding: 120px 0 80px; }
.folio { grid-template-columns: 1fr; }
.folio-pane { display: none; }
.leaf { min-height: 0; }
.leaf::before { content: attr(data-title); display: block; font-family: var(--display); font-size: 32px; line-height: 1.1; margin-bottom: 18px; }

}
@media (prefers-reduced-motion: reduce) {
.spread { transition: none; }

}
.fig .pop { transition: opacity 0.5s var(--ease); }
.fig .draw { transition: stroke-dashoffset 0.8s var(--ease); }
.sub-hero--grid { align-items: center; }
.about-media { margin-right: calc(-1 * var(--gutter)); margin-left: -6%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%), linear-gradient(180deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%), linear-gradient(180deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect; }
.about-media img { width: 100%; height: auto; display: block; }
@media (max-width: 760px) {
.about-media { margin: 24px 0 0; }

}
.mission .eyebrow { margin-bottom: 32px; }
.mission-statement { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3.3vw, 46px); line-height: 1.18; letter-spacing: -0.015em; max-width: 30ch; text-wrap: pretty; }
.horizon-line { margin-top: clamp(56px, 7vw, 96px); }
.hl-track { position: relative; height: 1px; background: var(--line-strong); }
.hl-fill { position: absolute; left: 0; top: 0; height: 1px; width: 0; background: var(--brass); transition: width 2.2s var(--ease) 0.2s; }
.is-in .hl-fill { width: 100%; }
.hl-dot { position: absolute; left: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); transition: left 2.2s var(--ease) 0.2s; }
.is-in .hl-dot { left: calc(100% - 9px); }
.hl-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 64px); margin-top: 28px; }
.hl-cols p:not(.hl-k) { margin-top: 12px; color: var(--bone-dim); font-size: 15.5px; line-height: 1.6; }
.approach { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 120px); align-items: start; }
.approach .eyebrow { margin-bottom: 28px; }
.approach-side { padding-top: clamp(8px, 2vw, 40px); }
.approach-side > p { color: var(--bone-dim); font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; max-width: 46ch; }
@media (max-width: 760px) {
.hl-cols { grid-template-columns: 1fr; }
.approach { grid-template-columns: 1fr; }

}
.contact-media { margin-left: calc(-1 * var(--gutter)); margin-right: -10%;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 16%, #000 80%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 16%, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect; }
.contact-media img { width: 100%; height: auto; display: block; }
@media (max-width: 760px) {
.contact-media { margin: 0 0 8px; }

}
.hero-copy { max-width: 720px; }
.hero h1 { font-size: clamp(36px, 4.1vw, 58px); line-height: 1.1; }
.hero-lead { max-width: 52ch; }
#who-we-serve { padding-top: clamp(120px, 15vw, 200px); }
#built-to-last { padding: clamp(64px, 8vw, 112px) 0; }
#built-to-last .close h2.display { font-size: clamp(40px, 5.6vw, 84px); }
.fig .d { font-family: var(--body); font-size: 13px; fill: var(--bone-dim); }
.fig .ln--brass { stroke: var(--brass); stroke-opacity: 0.9; stroke-width: 1.4; }
#who-we-serve .serve-grid { margin-top: clamp(72px, 8vw, 120px); }
#who-we-serve { padding-bottom: clamp(120px, 14vw, 180px); }
.site-footer .wrap { grid-template-columns: 1fr auto 1fr; }
.site-footer .footer-mail { justify-self: start; order: 1; }
.site-footer .footer-meta { justify-self: center; order: 2; }
.site-footer .footer-copy { justify-self: end; order: 3; }
.sub-hero--grid .contact-media { margin: 0 calc(-1 * var(--gutter)) 0 0; align-self: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%), linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%), linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%); }
.contact--single { display: block; max-width: 880px; margin-left: calc((100% - min(var(--wrap), 100% - 2 * var(--gutter))) / 2); }
@media (max-width: 760px) {
.sub-hero--grid .contact-media { margin: 24px 0 0; }

}
.sub-hero--grid.contact-hero { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: end; }
.sub-hero--grid .contact-media { margin: 0 calc(-1 * var(--gutter)) 0 -4%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%), linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%), linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%); }
.sub-hero--grid .contact-media img { opacity: 1; }
.form-head { display: flex; align-items: baseline; justify-content: space-between; border-top: 1.5px solid var(--brass); padding-top: 18px; margin-bottom: 8px; }
.form-head h2 { font-family: var(--display); font-weight: 400; font-size: 26px; letter-spacing: -0.01em; }
.form-head span { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.form .field { border-bottom-color: rgba(30,43,74,0.45); }
.form .field label::after { content: " *"; color: var(--brass); }
.form .field.is-optional label::after { content: ""; }
.form-foot { margin-top: 40px; }
.sub-hero--grid.contact-hero { align-items: center; }
.sub-hero--grid .contact-media { margin: 0 calc(-1 * var(--gutter)) 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%), linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%), linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%); }
.fig .o { font-family: var(--display); font-size: 30px; fill: var(--bone); letter-spacing: -0.01em; }
.fig .d { font-family: var(--body); font-size: 14px; fill: var(--bone-dim); }
.fig .ln--brass { stroke-width: 1.2; }
.contact-hero h1 { font-size: clamp(36px, 4.1vw, 58px); line-height: 1.1; letter-spacing: -0.015em; max-width: 12ch; }
#who-we-serve > .wrap > [data-reveal]:first-child { margin-bottom: clamp(80px, 9vw, 140px) !important; }
#who-we-serve .serve-grid { margin-top: 0 !important; }
#who-we-serve .eyebrow { margin-bottom: 32px; }
.fig .c { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; fill: rgba(255,255,255,0.78); }
.fig .c--brass { fill: #7F9FE0; }
.site-nav a.nav-cta { color: #fff; background: var(--bone); border: 1px solid var(--bone); border-radius: 999px; padding: 11px 18px; margin-left: 8px; transition: background 0.25s, border-color 0.25s; }
.site-nav a.nav-cta:hover { background: var(--brass); border-color: var(--brass); color: #fff; }
.site-nav a.nav-cta[aria-current="page"]::after { display: none; }
.hl-cols--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hl-cols--2 p { color: var(--bone-dim); font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; max-width: 46ch; margin: 0; }
.exp { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 64px); }
.exp-k { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); }
@media (max-width: 760px) {
.hl-cols--2, .exp { grid-template-columns: 1fr; }

}
.sub-hero--grid.contact-hero h1 { max-width: 14ch; }
.exp--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: clamp(32px, 4vw, 48px); }
.exp-card { position: relative; padding: 26px 24px 28px; border-radius: 4px; background: rgba(255,255,255,0.55); border: 1px solid rgba(30,43,74,0.10); box-shadow: 0 18px 40px -30px rgba(30,43,74,0.25); }
.exp-card .exp-k { margin-top: 2px; }
.exp-card p:not(.exp-k) { margin-top: 14px; font-family: var(--body); font-size: 15px; line-height: 1.55; color: var(--bone-dim); }
@media (max-width: 760px) {
.exp--4 { grid-template-columns: 1fr 1fr; }

}
@media (max-width: 600px) {
.exp--4 { grid-template-columns: 1fr; }

}
p.eyebrow, .eyebrow {
  font-family: var(--mono) !important; font-size: 11.5px !important; letter-spacing: 0.16em !important; text-transform: uppercase !important;
  color: var(--brass) !important; line-height: 1.4 !important; max-width: none !important; margin-top: 0 !important;
}
.team-careers { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: minmax(0, 7fr) auto; gap: 32px; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); }
.team-careers p { color: var(--bone-dim); font-size: 17px; line-height: 1.6; max-width: 60ch; }
@media (max-width: 760px) {
.team-careers { grid-template-columns: 1fr; }

}
.principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); }
.principle { border-top: 1px solid var(--line-strong); padding-top: 20px; }
.principle h3 { margin-top: 14px; font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.2vw, 30px); line-height: 1.1; letter-spacing: -0.015em; }
.principle p:not(.exp-k) { margin-top: 12px; color: var(--bone-dim); font-size: 15.5px; line-height: 1.6; }
@media (max-width: 760px) {
.principles { grid-template-columns: 1fr; }

}
.mission-statement { max-width: 52ch; font-size: clamp(26px, 2.9vw, 40px); line-height: 1.22; }
.hl-dot { background: var(--brass); width: 11px; height: 11px; top: -5px; box-shadow: 0 0 0 4px var(--ink); z-index: 1; }
.is-in .hl-dot { left: calc(100% - 11px); }
.spread-art--lu { width: 76px; margin-top: 44px; color: var(--brass); opacity: 1; }
.spread-art--lu svg { width: 100%; height: auto; display: block; }
.spread h3 { margin-top: 0; }
#functions h2.display { font-size: clamp(30px, 3.6vw, 50px); }
.spread h3 { font-size: clamp(28px, 3vw, 42px); }
.spread { transition: opacity 1.1s var(--ease) 0.15s, transform 1.1s var(--ease) 0.15s; }
.plist { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(24px, 3vw, 48px); border-top: 1px solid var(--line-strong); }
.plist li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(17px, 1.45vw, 21px); color: var(--bone-dim); letter-spacing: -0.005em; }
.plist li em { font-style: normal; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); white-space: nowrap; }
.leaf .run p.run-k { margin-bottom: 14px; }
@media (max-width: 600px) {
.plist { grid-template-columns: 1fr; }

}
.plist li { color: var(--bone); }
#who-we-serve h2.display { font-size: clamp(30px, 3.9vw, 54px); }
#who-we-serve > .wrap > [data-reveal]:first-child { margin-bottom: clamp(48px, 6vw, 88px) !important; }
#built-to-last { padding: clamp(44px, 5.5vw, 80px) 0; }
#built-to-last .close h2.display { font-size: clamp(34px, 4.4vw, 64px); }
#who-we-serve { padding-top: clamp(80px, 10vw, 132px); padding-bottom: clamp(64px, 8vw, 110px); }
#how-we-operate { padding-top: clamp(62px, 8.4vw, 118px); }
.site-footer { padding-left: var(--gutter); padding-right: var(--gutter); }
.site-footer .wrap { width: 100%; max-width: none; margin: 0; }
.folio-pane { top: 96px; height: calc(100vh - 192px); max-height: 640px; min-height: 420px; }
.spread { display: flex; flex-direction: column; justify-content: center; }
.spread h3 { max-width: 13ch; }
.spread-art--lu { margin-top: 52px; }
@media (max-width: 760px) {
.folio-pane { height: auto; }

}
@media (max-width: 760px) {
.site-footer .wrap { grid-template-columns: 1fr; gap: 10px; text-align: left; }
.site-footer .footer-mail, .site-footer .footer-meta, .site-footer .footer-copy { justify-self: start; }
.site-footer .footer-copy { white-space: nowrap; font-size: 10.5px; }

}
.leaf-icon { display: none; }
@media (max-width: 760px) {
.site-header .wrap, .site-header { flex-wrap: nowrap; }
.brand { flex: none; }
.brand img { height: 22px !important; width: auto !important; max-width: none; }
.site-nav { gap: 14px; }
.site-nav a { font-size: 10.5px; letter-spacing: 0.1em; }
.site-nav a.nav-cta { padding: 9px 14px; margin-left: 0; }
.leaf-k { display: none; }
.leaf::before { margin-bottom: 6px; }
.leaf-icon { display: block; width: 42px; margin: 14px auto 22px; color: var(--brass); }
.leaf-icon svg { width: 100%; height: auto; display: block; }
.sub-hero--grid, .sub-hero--grid.contact-hero { grid-template-columns: 1fr !important; align-items: start !important; }
.sub-hero--grid h1, .sub-hero--grid.contact-hero h1 { max-width: none; }
.sub-hero--grid .sub-lead { max-width: none; }
.about-media, .sub-hero--grid .contact-media { margin: 30px 0 0 !important;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%) !important; }

}


/* ================= Tablet band (761–1120px): desktop layout, tuned ================= */
@media (min-width: 761px) and (max-width: 1120px) {
  .hero { min-height: min(100svh, 760px); padding: 110px 0 80px; }
  .hero-copy { max-width: 600px; }
  .site-nav { gap: 22px; }
  .folio { gap: clamp(28px, 4vw, 56px); grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .folio-pane { max-height: 560px; }
  .serve-grid { gap: clamp(20px, 3vw, 36px); }
  .exp--4 { grid-template-columns: 1fr 1fr; }
  .sub-hero--grid, .sub-hero--grid.contact-hero { gap: clamp(28px, 4vw, 48px); }
  .functions-head { gap: clamp(24px, 4vw, 48px); }
  .fig-facts { gap: clamp(20px, 3vw, 40px); }
  .contact--single { margin-left: var(--gutter); margin-right: var(--gutter); max-width: none; }
}

/* ================= Tall portrait screens at any width ================= */
@media (min-height: 1100px) {
  .hero { min-height: min(100svh, 820px); }
}
