:root {
  --ink: #0b1518;
  --ink-soft: #142328;
  --ivory: #f4f0e7;
  --paper: #fbf9f4;
  --sand: #d8c7a9;
  --gold: #c19a5b;
  --gold-bright: #d6b270;
  --line: rgba(11, 21, 24, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --muted: #596267;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", sans-serif;
  --display: "Manrope", "Helvetica Neue", sans-serif;
  --shell: min(1240px, calc(100vw - 80px));
  --section-space: clamp(96px, 10vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, blockquote { margin-top: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-150%);
  padding: 10px 14px; background: var(--gold); color: var(--ink); font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin-bottom: 24px;
  color: #7c6849;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .19em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-bright); }
h1, h2, h3 { font-weight: 500; }
h1, h2 {
  font-family: var(--serif);
  letter-spacing: -.035em;
  line-height: .98;
}
h1 em, h2 em { color: var(--gold-bright); font-weight: 400; }
h2 { font-size: clamp(46px, 5.1vw, 76px); }
h3 { font-family: var(--display); line-height: 1.25; letter-spacing: -.025em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-bright); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--ink-soft); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-bright); outline-offset: 4px;
}
.text-link {
  display: inline-flex; gap: 14px; align-items: center; padding-block: 8px;
  border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 500;
}
.text-link-light { color: rgba(255,255,255,.88); }
.button-row { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: white;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header::after {
  content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.14);
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251,249,244,.96);
  box-shadow: 0 6px 28px rgba(11,21,24,.06);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled::after { background: var(--line); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-symbol { position: relative; display: block; flex: 0 0 38px; width: 38px; height: 38px; }
.brand-mark { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.brand-mark-dark { display: none; }
.site-header.is-scrolled .brand-mark-light { display: none; }
.site-header.is-scrolled .brand-mark-dark { display: block; }
.brand-name { font-family: var(--display); font-size: 16px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.brand-name b { font-weight: 400; opacity: .7; }
.primary-nav { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 42px); }
.primary-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .035em;
}
.primary-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; right: 0; bottom: 4px; left: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s ease;
}
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 18px; min-height: 42px; padding-inline: 18px !important;
  border: 1px solid rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em !important;
}
.site-header.is-scrolled .nav-cta { border-color: var(--line); }
.nav-cta:hover { border-color: var(--gold) !important; background: var(--gold); color: var(--ink); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .25s ease; }

/* Hero */
.hero, .page-hero, .legal-hero { position: relative; overflow: hidden; background: var(--ink); color: white; }
.hero-grid {
  position: absolute; inset: 0; opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.home-hero { min-height: max(760px, 100svh); display: grid; align-items: center; padding: 150px 0 102px; }
.home-hero::before, .page-hero::before {
  content: ""; position: absolute; width: 720px; height: 720px; right: -240px; top: -220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,154,91,.17), transparent 68%); pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-content .eyebrow { margin-bottom: 34px; }
.hero-content h1 { max-width: 960px; margin-bottom: 68px; font-size: clamp(66px, 8.5vw, 128px); }
.hero-footer { display: grid; grid-template-columns: minmax(320px, 520px) auto; align-items: end; gap: 80px; }
.hero-footer > p { margin: 0; color: rgba(255,255,255,.67); font-size: clamp(16px, 1.4vw, 19px); }
.hero-meta {
  position: absolute; z-index: 2; right: 0; bottom: 26px; left: 0;
  display: flex; gap: 28px; align-items: center; color: rgba(255,255,255,.43);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
}
.hero-meta span + span { position: relative; padding-left: 28px; }
.hero-meta span + span::before { content: ""; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-orbit { position: absolute; z-index: 1; right: -3vw; top: 11%; width: min(52vw, 760px); aspect-ratio: 1; opacity: .56; }
.orbit { position: absolute; border: 1px solid rgba(214,178,112,.25); border-radius: 50%; transform: rotate(-24deg); }
.orbit-one { inset: 10%; }
.orbit-two { inset: 25% 0; }
.orbit-three { inset: 0 34%; transform: rotate(38deg); }
.orbit-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 20px var(--gold); }
.dot-one { top: 17%; left: 28%; }
.dot-two { top: 61%; right: 11%; }
.dot-three { bottom: 17%; left: 37%; }

.page-hero { min-height: 640px; display: flex; align-items: end; padding: 180px 0 92px; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-inner h1 { max-width: 940px; margin-bottom: 32px; font-size: clamp(62px, 8vw, 112px); }
.page-hero-inner > p:last-child { max-width: 640px; margin: 0; color: rgba(255,255,255,.65); font-size: 18px; }
.contact-hero .page-hero-inner > p:last-child { margin-left: auto; }

/* Shared sections */
.section { padding-block: var(--section-space); }
.section-ink { background: var(--ink); color: white; }
.split-heading, .section-heading { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(300px, .68fr); gap: clamp(60px, 10vw, 150px); }
.split-heading h2, .section-heading h2 { max-width: 780px; margin-bottom: 0; }
.split-heading .prose { max-width: 590px; }
.prose p { margin-bottom: 24px; color: var(--muted); }
.prose .lead { color: var(--ink); font-family: var(--serif); font-size: 25px; line-height: 1.35; }
.section-heading { align-items: end; margin-bottom: 78px; }
.section-heading > p { max-width: 510px; margin: 0; color: var(--muted); }
.section-heading.inverse > p { color: rgba(255,255,255,.58); }

/* Capabilities */
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.capability-card { min-height: 540px; padding: clamp(36px, 5vw, 64px); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.card-number { margin-bottom: 70px; color: var(--gold); font-size: 11px; letter-spacing: .15em; }
.capability-card h3 { max-width: 440px; margin-bottom: 26px; font-family: var(--serif); font-size: clamp(30px, 3vw, 43px); }
.capability-card > p { max-width: 490px; margin-bottom: 36px; color: rgba(255,255,255,.58); }
.line-list { margin: 0; padding: 0; list-style: none; }
.line-list li { position: relative; padding: 10px 0 10px 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.77); font-size: 13px; }
.line-list li::before { content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 1px; background: var(--gold); }

/* Audiences */
.audience-list { border-top: 1px solid var(--line); }
.audience-row { display: grid; grid-template-columns: 80px minmax(260px, .8fr) minmax(300px, 1fr); gap: 32px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); }
.audience-index { color: #9a8057; font-family: var(--serif); font-size: 18px; font-style: italic; }
.audience-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(25px, 2.4vw, 35px); }
.audience-row p { max-width: 520px; margin: 0; color: var(--muted); }

/* Sectors */
.sector-section { position: relative; overflow: hidden; padding-block: var(--section-space); background: #16262a; color: white; }
.sector-section::before {
  content: ""; position: absolute; inset: 0 50% 0 0; opacity: .25;
  background: repeating-linear-gradient(125deg, transparent 0 58px, rgba(255,255,255,.08) 59px 60px);
}
.sector-grid { position: relative; display: grid; grid-template-columns: .72fr 1fr; gap: clamp(70px, 10vw, 150px); }
.sector-intro { position: sticky; top: 140px; align-self: start; }
.sector-intro h2 { max-width: 510px; }
.sector-intro > p:last-child { max-width: 430px; color: rgba(255,255,255,.56); }
.sector-list { border-top: 1px solid var(--line-light); }
.sector-item { display: grid; grid-template-columns: 48px 1fr; gap: 28px; padding: 38px 0; border-bottom: 1px solid var(--line-light); }
.sector-item > span { color: var(--gold); font-size: 10px; letter-spacing: .15em; }
.sector-item h3 { margin-bottom: 12px; font-family: var(--serif); font-size: clamp(27px, 2.6vw, 38px); }
.sector-item p { max-width: 550px; margin: 0; color: rgba(255,255,255,.56); }

/* Approach */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.process-step { min-height: 340px; padding: 34px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step > span { display: block; margin-bottom: 76px; color: #987b4f; font-size: 10px; letter-spacing: .18em; }
.process-step h3 { margin-bottom: 18px; font-family: var(--serif); font-size: 33px; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

/* Controls */
.control-section { background: var(--ivory); }
.control-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.control-visual { position: relative; min-height: 520px; }
.control-ring { position: absolute; border: 1px solid rgba(11,21,24,.2); border-radius: 50%; }
.ring-a { inset: 8% 9%; }
.ring-b { inset: 24%; border-color: rgba(193,154,91,.55); }
.control-core {
  position: absolute; inset: 36%; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white;
  text-align: center; font-family: var(--serif); font-size: 20px; line-height: 1.15; box-shadow: 0 18px 60px rgba(11,21,24,.16);
}
.control-tag { position: absolute; padding: 6px 10px; background: var(--ivory); color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.tag-a { top: 7%; left: 43%; }
.tag-b { top: 45%; right: 1%; }
.tag-c { bottom: 8%; left: 43%; }
.tag-d { top: 45%; left: 1%; }
.control-copy h2 { max-width: 680px; margin-bottom: 38px; }
.control-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); }

/* Why */
.why-section { background: var(--paper); }
.why-header { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 70px; }
.why-header .eyebrow { margin-bottom: 0; }
.why-header h2 { max-width: 700px; margin-bottom: 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.why-card { min-height: 330px; padding: 30px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-card > span, .team-model-card > span { display: block; margin-bottom: 68px; color: #987b4f; font-size: 10px; letter-spacing: .15em; }
.why-card h3 { font-family: var(--serif); font-size: 28px; }
.why-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* CTA + footer */
.cta-section { position: relative; overflow: hidden; padding-block: clamp(110px, 13vw, 190px); background: #111f23; color: white; text-align: center; }
.cta-section::after { content: ""; position: absolute; inset: 14% 18%; border: 1px solid rgba(193,154,91,.18); border-radius: 50%; transform: rotate(-9deg); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 30px; font-size: clamp(56px, 7vw, 100px); }
.cta-inner > p:not(.eyebrow) { max-width: 660px; margin: 0 auto 40px; color: rgba(255,255,255,.6); }
.site-footer { padding: 84px 0 28px; background: var(--ink); color: white; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 80px; padding-bottom: 70px; }
.brand-light { color: white; }
.footer-logo-link { display: inline-block; }
.footer-logo { width: 154px; height: auto; }
.footer-brand > p { max-width: 410px; margin: 28px 0 0; color: rgba(255,255,255,.46); font-size: 14px; }
.footer-label { margin-bottom: 24px !important; color: var(--gold) !important; font-size: 10px !important; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-nav a, .footer-contact a, .footer-contact p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; }
.footer-nav a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 26px; }
.disclaimer { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); font-size: 10px; line-height: 1.6; }
.compact-footer { padding-top: 0; }

/* Leadership */
.founder-grid { display: grid; grid-template-columns: minmax(320px, .78fr) 1.18fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.founder-card { position: sticky; top: 130px; }
.founder-portrait { position: relative; aspect-ratio: 1; overflow: hidden; background: #19292d; }
.founder-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.founder-card-meta { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.founder-card-meta p { margin: 0; }
.founder-copy h2 { margin-bottom: 14px; }
.role-title { margin-bottom: 40px; color: #8a7047; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.career-section { padding-block: var(--section-space); background: #16262a; color: white; }
.career-grid { display: grid; grid-template-columns: .72fr 1.2fr; gap: clamp(70px, 10vw, 150px); }
.career-heading { position: sticky; top: 130px; align-self: start; }
.career-heading h2 { font-size: clamp(46px, 4.8vw, 70px); }
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 8px; bottom: 8px; left: 7px; width: 1px; background: rgba(255,255,255,.15); }
.timeline-item { position: relative; display: grid; grid-template-columns: 118px 1fr; gap: 28px; padding: 0 0 55px 38px; }
.timeline-marker { position: absolute; top: 6px; left: 3px; width: 9px; height: 9px; border: 2px solid var(--gold); border-radius: 50%; background: #16262a; }
.timeline-label { color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.timeline-item h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 27px; }
.timeline-item p { margin: 0; color: rgba(255,255,255,.55); font-size: 14px; }

.philosophy-section { background: var(--ivory); }
.philosophy-grid { display: grid; grid-template-columns: .86fr 1fr; gap: clamp(70px, 10vw, 150px); }
.philosophy-copy > p { color: var(--muted); }
.philosophy-copy blockquote { margin: 48px 0 0; padding: 34px 0 0; border-top: 1px solid rgba(193,154,91,.6); font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-style: italic; line-height: 1.25; }
.team-section { background: var(--ink); color: white; }
.team-model-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.team-model-card { min-height: 340px; padding: 30px 26px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.team-model-card h3 { font-family: var(--serif); font-size: 28px; }
.team-model-card p { margin: 0; color: rgba(255,255,255,.55); font-size: 14px; }

/* Contact */
.enquiry-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(70px, 9vw, 130px); align-items: start; }
.enquiry-intro { position: sticky; top: 130px; }
.enquiry-intro h2 { margin-bottom: 34px; font-size: clamp(44px, 4.5vw, 66px); }
.enquiry-intro > p:not(.eyebrow) { color: var(--muted); }
.contact-panel { margin-top: 55px; padding: 32px; background: var(--ivory); border-top: 2px solid var(--gold); }
.contact-panel h3 { margin-bottom: 16px; font-family: var(--serif); font-size: 27px; }
.contact-panel p, .contact-panel a { color: var(--muted); font-size: 14px; }
.contact-panel a { display: inline-block; margin-bottom: 15px; color: var(--ink); font-weight: 600; }
.contact-panel .small { margin-bottom: 0; font-size: 11px; }
.form-panel { padding: clamp(34px, 5vw, 64px); background: white; box-shadow: 0 28px 80px rgba(11,21,24,.08); }
.form-heading { display: flex; justify-content: space-between; gap: 30px; margin-bottom: 42px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.form-heading .eyebrow { margin: 0; }
.form-heading > p:last-child { max-width: 300px; margin: 0; color: var(--muted); font-size: 12px; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 26px; }
.field { margin-bottom: 27px; }
.field label { display: block; margin-bottom: 9px; color: #4b5559; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.field label span { color: #a16939; }
.field label small { float: right; color: #93999b; font-size: 9px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 47px; padding: 10px 0; border: 0; border-bottom: 1px solid #b7babc; border-radius: 0; background: transparent; color: var(--ink); outline: none;
}
.field textarea { padding: 12px; border: 1px solid #b7babc; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); outline: none; box-shadow: 0 1px 0 var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: #a0a5a7; }
.file-field input { padding-top: 12px; font-size: 12px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 30px; color: var(--muted); font-size: 11px; }
.consent input { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 3px; accent-color: var(--gold); }
.consent a { border-bottom: 1px solid var(--gold); }
.honeypot { position: absolute; left: -9999px; }
.transaction-form button:disabled { cursor: wait; opacity: .68; }
.form-status { min-height: 22px; margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.form-status[data-state="error"] { color: #9c3f32; }
.form-status[data-state="pending"] { color: #725b37; }
.transaction-form .button { border: 0; cursor: pointer; }
.confidentiality-section { padding-block: 90px; background: #16262a; color: white; }
.confidentiality-grid { display: grid; grid-template-columns: .45fr 1fr; gap: 80px; }
.confidentiality-grid h2 { margin-bottom: 24px; font-size: clamp(38px, 4vw, 58px); }
.confidentiality-grid > div p { max-width: 740px; color: rgba(255,255,255,.55); }

/* Legal + confirmation */
.legal-hero { padding: 180px 0 72px; }
.legal-hero h1 { margin-bottom: 20px; font-size: clamp(58px, 7vw, 94px); }
.legal-hero p:last-child { color: rgba(255,255,255,.5); font-size: 12px; }
.legal-content { max-width: 800px; padding-top: 90px; padding-bottom: 110px; }
.legal-lead { margin-bottom: 60px; font-family: var(--serif); font-size: 27px; line-height: 1.4; }
.legal-content h2 { margin: 44px 0 14px; font-size: 30px; letter-spacing: -.02em; }
.legal-content p { color: var(--muted); }
.legal-content a { color: #80633d; border-bottom: 1px solid var(--gold); }
.confirmation-page { min-height: 100svh; display: grid; place-items: center; padding: 40px; background: var(--ink); color: white; }
.confirmation-card { width: min(680px, 100%); text-align: center; }
.confirmation-logo-link { display: inline-block; margin-bottom: 58px; }
.confirmation-logo { width: 172px; height: auto; }
.confirmation-mark { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 34px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-size: 24px; }
.confirmation-card h1 { margin-bottom: 24px; font-size: 88px; }
.confirmation-card > p:not(.eyebrow) { max-width: 580px; margin: 0 auto 38px; color: rgba(255,255,255,.58); }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  :root { --shell: min(100% - 48px, 940px); }
  .hero-footer { grid-template-columns: 1fr; gap: 32px; }
  .hero-orbit { opacity: .35; right: -18vw; top: 20%; width: 75vw; }
  .split-heading, .section-heading, .sector-grid, .career-grid, .philosophy-grid { gap: 60px; }
  .why-grid, .team-model-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card, .team-model-card { min-height: 300px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .7fr .8fr; gap: 44px; }
  .enquiry-grid { grid-template-columns: .58fr 1.3fr; gap: 50px; }
  .form-panel { padding: 40px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 40px); --section-space: 92px; }
  .site-header { color: white; }
  .header-inner { min-height: 72px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav {
    position: fixed; inset: 72px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 24px 20px 34px; background: var(--ink); color: white; border-top: 1px solid rgba(255,255,255,.12);
    transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .28s ease, opacity .2s ease, visibility .28s;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
  .primary-nav a::after { display: none; }
  .nav-cta { margin-top: 18px; justify-content: space-between; border: 1px solid rgba(255,255,255,.3) !important; }
  .site-header.is-scrolled .primary-nav { color: white; }
  .home-hero { min-height: 760px; padding-top: 132px; }
  .hero-content h1 { margin-bottom: 46px; font-size: clamp(58px, 13vw, 82px); }
  .hero-meta span:last-child { display: none; }
  .page-hero { min-height: 560px; padding-bottom: 72px; }
  .page-hero-inner h1 { font-size: clamp(55px, 12vw, 78px); }
  .split-heading, .section-heading, .sector-grid, .control-grid, .founder-grid, .career-grid, .philosophy-grid, .enquiry-grid, .confidentiality-grid { grid-template-columns: 1fr; }
  .split-heading, .section-heading { gap: 46px; }
  .section-heading { align-items: start; margin-bottom: 56px; }
  .capability-card { min-height: 500px; padding: 40px; }
  .audience-row { grid-template-columns: 40px .8fr 1fr; }
  .sector-intro, .career-heading, .founder-card, .enquiry-intro { position: static; }
  .process-step { min-height: 300px; }
  .control-visual { min-height: 480px; max-width: 520px; width: 100%; margin-inline: auto; }
  .why-header { display: block; }
  .why-header .eyebrow { margin-bottom: 24px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .founder-grid { gap: 70px; }
  .founder-card { max-width: 520px; width: 100%; }
  .career-grid, .philosophy-grid, .enquiry-grid { gap: 70px; }
  .field-grid { grid-template-columns: 1fr; }
  .form-heading { display: block; }
  .form-heading .eyebrow { margin-bottom: 14px; }
  .contact-hero .page-hero-inner > p:last-child { margin-left: 0; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); --section-space: 76px; }
  body { font-size: 15px; }
  .brand-name { font-size: 14px; }
  .brand-symbol { flex-basis: 34px; width: 34px; height: 34px; }
  .home-hero { min-height: 720px; padding: 120px 0 92px; }
  .hero-content .eyebrow { max-width: 290px; margin-bottom: 26px; }
  .hero-content h1 { margin-bottom: 36px; font-size: clamp(51px, 16vw, 70px); }
  .hero-footer > p { font-size: 15px; }
  .button-row { gap: 18px; align-items: flex-start; flex-direction: column; }
  .hero-meta { gap: 18px; }
  .hero-meta span + span { padding-left: 18px; }
  .page-hero { min-height: 500px; padding: 142px 0 64px; }
  .page-hero-inner h1 { font-size: 52px; }
  .page-hero-inner > p:last-child { font-size: 15px; }
  h2 { font-size: 43px; }
  .prose .lead { font-size: 22px; }
  .capability-grid, .why-grid, .team-model-grid, .process-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: auto; padding: 34px 26px 40px; }
  .card-number { margin-bottom: 44px; }
  .capability-card h3 { font-size: 31px; }
  .audience-row { grid-template-columns: 32px 1fr; gap: 16px; align-items: start; padding: 30px 0; }
  .audience-row p { grid-column: 2; }
  .sector-grid { gap: 50px; }
  .sector-item { grid-template-columns: 34px 1fr; gap: 16px; }
  .process-step, .why-card, .team-model-card { min-height: auto; padding: 30px 24px 36px; }
  .process-step > span, .why-card > span, .team-model-card > span { margin-bottom: 44px; }
  .control-visual { min-height: 340px; }
  .control-core { inset: 34%; font-size: 16px; }
  .control-tag { font-size: 8px; }
  .why-header { margin-bottom: 46px; }
  .cta-section { padding-block: 100px; }
  .cta-inner h2 { font-size: 49px; }
  .site-footer { padding-top: 68px; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .founder-card-meta { flex-direction: column; gap: 4px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; padding-left: 32px; }
  .form-panel { padding: 30px 20px; }
  .confidentiality-grid { gap: 30px; }
  .confirmation-page { padding: 24px; }
  .confirmation-card h1 { font-size: 65px; }
  .legal-hero { padding: 142px 0 58px; }
  .legal-content { padding-top: 70px; }
}

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