:root {
  --ink: #10253d;
  --ink-2: #27405a;
  --muted: #637286;
  --line: #dfe6ed;
  --line-strong: #cbd5df;
  --paper: #f7f9fb;
  --white: #ffffff;
  --accent: #315dbb;
  --accent-deep: #244995;
  --accent-soft: #edf2ff;
  --navy-soft: #e9eef5;
  --warm: #f5f1e8;
  --success: #1a7151;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(16, 37, 61, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(49,93,187,.30);
  outline-offset: 4px;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.03em; }
h1 { font-size: clamp(3rem, 5.2vw, 5rem); max-width: 13ch; font-weight: 720; }
h2 { font-size: clamp(2.1rem, 4.5vw, 4rem); max-width: 16ch; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin: 0; }
.lead { color: var(--ink-2); font-size: clamp(1.08rem, 1.8vw, 1.35rem); max-width: 760px; }
.section { padding: 108px 0; }
.section.soft { background: var(--paper); }
.section.dark { background: var(--ink); color: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; }
.section-head p { max-width: 560px; color: var(--muted); }
.section.dark .section-head p { color: #c3ced9; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,37,61,.16); }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button.secondary:hover { background: var(--paper); }
.button.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 750; color: var(--accent-deep); }
.text-link::after { content: '→'; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(3px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223,230,237,.9);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--white);
  font-size: .9rem; letter-spacing: -.05em;
}
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--ink-2); font-size: .95rem; font-weight: 650; }
.nav-links a:hover { color: var(--accent-deep); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep) !important; }
.mobile-toggle { display: none; border: 0; background: none; color: var(--ink); font-size: 1.6rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 76px;
  background:
    radial-gradient(circle at 85% 12%, rgba(10,111,114,.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.95fr); gap: 58px; align-items: center; }
.hero-copy .lead { margin-top: 28px; }
.hero-copy .button-row { margin-top: 34px; }
.hero-note { margin-top: 28px; color: var(--muted); font-size: .94rem; max-width: 700px; }
.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}
.hero-signal { position: absolute; inset: 0; }
.signal-line { position: absolute; height: 1px; background: rgba(255,255,255,.16); transform-origin: left center; }
.signal-dot {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: #6fc4c5; box-shadow: 0 0 0 8px rgba(111,196,197,.12);
}
.insight-card {
  position: absolute;
  background: rgba(255,255,255,.97);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  color: var(--ink);
  width: min(270px, 72%);
}
.insight-card strong { display: block; font-size: 1rem; margin-bottom: 5px; }
.insight-card span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.45; }
.insight-card.one { top: 52px; right: 34px; }
.insight-card.two { top: 218px; left: 28px; }
.insight-card.three { right: 40px; bottom: 42px; }
.hero-caption { position: absolute; left: 34px; bottom: 28px; color: rgba(255,255,255,.56); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }

.credibility { padding: 30px 0; border-block: 1px solid var(--line); background: var(--white); }
.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof { padding: 0 24px; border-right: 1px solid var(--line); }
.proof:first-child { padding-left: 0; }
.proof:last-child { border-right: 0; }
.proof strong { display: block; font-size: 1.35rem; letter-spacing: -.02em; }
.proof span { color: var(--muted); font-size: .9rem; }

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cap-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  min-height: 300px;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.cap-card .number { color: var(--accent-deep); font-weight: 800; font-size: .8rem; margin-bottom: 46px; }
.cap-card h3 { margin-bottom: 14px; }
.cap-card .promise { color: var(--ink-2); font-size: 1.05rem; margin-bottom: 14px; }
.cap-card .detail { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }
.cap-card .text-link { margin-top: auto; }
.section-more { margin-top: 28px; }

.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; border-top: 1px solid var(--line-strong); }
.approach-step { padding: 32px 28px 0 0; position: relative; }
.approach-step::before {
  content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); top: -5px; left: 0;
}
.approach-step .step-num { color: var(--muted); font-size: .78rem; font-weight: 750; margin-bottom: 28px; }
.approach-step h3 { margin-bottom: 12px; }
.approach-step p { color: var(--muted); font-size: .94rem; }
.approach-note { margin-top: 42px; padding: 22px 24px; background: var(--accent-soft); border-radius: 14px; color: var(--accent-deep); max-width: 860px; }

.experience-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.experience-copy p { color: #c3ced9; margin-top: 24px; max-width: 560px; }
.outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.outcome-card { border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 24px; min-height: 170px; background: rgba(255,255,255,.045); }
.outcome-card strong { display: block; font-size: 2rem; line-height: 1.05; margin-bottom: 12px; }
.outcome-card span { color: #c3ced9; font-size: .92rem; }
.dark .text-link { color: #8bd4d5; }

.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.way-card { padding: 30px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.way-card .tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--navy-soft); color: var(--ink-2); font-size: .74rem; font-weight: 800; margin-bottom: 32px; }
.way-card h3 { margin-bottom: 12px; }
.way-card p { color: var(--muted); }

.parsora-panel {
  display: grid; grid-template-columns: 1fr .85fr; gap: 50px; align-items: center;
  padding: 58px; border-radius: 28px; background: linear-gradient(135deg, #10253d, #183952); color: var(--white); overflow: hidden; position: relative;
}
.parsora-panel::after {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -170px; top: -200px; background: rgba(111,196,197,.10);
}
.parsora-copy p { color: #c8d4df; margin-top: 20px; max-width: 680px; }
.parsora-copy .bridge { margin-top: 26px; padding-left: 18px; border-left: 2px solid #6fc4c5; color: var(--white); font-weight: 650; }
.parsora-copy .button-row { margin-top: 30px; }
.parse-stack { position: relative; z-index: 1; }
.parse-mini { background: var(--white); color: var(--ink); border-radius: 14px; padding: 18px; margin-bottom: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.16); }
.parse-mini:last-child { margin-bottom: 0; }
.parse-mini .parse-label { color: var(--accent-deep); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.parse-mini strong { display: block; margin: 6px 0 4px; font-size: .95rem; }
.parse-mini span { color: var(--muted); font-size: .82rem; }

.about-band { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.about-band .about-fact { font-size: clamp(5rem, 11vw, 9rem); line-height: .86; letter-spacing: -.08em; color: var(--accent); font-weight: 700; }
.about-band .lead { margin: 20px 0 26px; }

.final-cta { padding: 90px 0; background: var(--warm); }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.final-cta h2 { max-width: 15ch; }
.final-cta p { color: var(--muted); max-width: 560px; margin: 18px 0 26px; }

.site-footer { background: #0b1b2d; color: var(--white); padding: 56px 0 26px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; align-items: start; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-top p { color: #9fb0c1; margin-top: 10px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px 28px; color: #c5d0db; font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: #8194a6; font-size: .82rem; }

.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 100;
  max-width: 760px; margin: 0 auto; padding: 18px 18px 18px 22px;
  background: #ffffff; border: 1px solid var(--line-strong); border-radius: 16px; box-shadow: 0 18px 50px rgba(16,37,61,.18);
  display: none; align-items: center; gap: 18px;
}
.cookie-banner[data-visible="true"] { display: flex; }
.cookie-banner p { color: var(--muted); font-size: .88rem; flex: 1; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions button { min-height: 40px; border-radius: 999px; padding: 0 14px; border: 1px solid var(--line-strong); background: white; color: var(--ink); font-weight: 700; cursor: pointer; }
.cookie-actions button.accept { background: var(--ink); color: white; border-color: var(--ink); }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links[data-open="true"] {
    position: absolute; display: flex; flex-direction: column; align-items: flex-start; gap: 0; top: 76px; left: 0; right: 0; padding: 10px 20px 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(16,37,61,.08);
  }
  .nav-links[data-open="true"] a { width: 100%; padding: 13px 0; }
  .nav-cta { background: none; padding: 13px 0 !important; }
  .hero-grid, .experience-layout, .parsora-panel, .about-band { grid-template-columns: 1fr; }
  .hero { padding-top: 80px; }
  .hero-visual { min-height: 450px; }
  .proof-strip { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .proof:nth-child(2) { border-right: 0; }
  .proof:nth-child(3) { padding-left: 0; }
  .card-grid, .ways-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; gap: 28px; border-top: 0; }
  .approach-step { border-top: 1px solid var(--line-strong); padding-top: 28px; }
  .outcomes { grid-template-columns: 1fr 1fr; }
  .section-head, .final-cta-inner, .footer-top { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .proof-strip { grid-template-columns: 1fr; }
  .proof { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof:last-child { border-bottom: 0; padding-bottom: 0; }
  .hero-visual { min-height: 480px; }
  .insight-card { width: calc(100% - 40px); left: 20px !important; right: auto !important; }
  .insight-card.one { top: 32px; }
  .insight-card.two { top: 186px; }
  .insight-card.three { bottom: 34px; top: auto; }
  .approach-grid, .outcomes { grid-template-columns: 1fr; }
  .parsora-panel { padding: 32px 24px; }
  .about-band .about-fact { font-size: 6rem; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}


/* Interior pages */
.page-hero { padding: 96px 0 82px; background: radial-gradient(circle at 85% 16%, rgba(10,111,114,.10), transparent 34%), linear-gradient(180deg,#fff 0%,#f8fafc 100%); border-bottom:1px solid var(--line); }
.page-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(420px,.9fr); gap:58px; align-items:center; }
.page-title { font-size:clamp(2.6rem,4.5vw,4.6rem); max-width:14ch; }
.page-lead { margin-top:26px; max-width:740px; }
.page-buttons { margin-top:32px; }
.page-kicker { margin-top:24px; color:var(--muted); font-size:.9rem; }
.page-hero-panel { min-height:410px; border-radius:28px; background:var(--ink); padding:34px; position:relative; overflow:hidden; box-shadow:var(--shadow); display:flex; flex-direction:column; justify-content:center; gap:14px; }
.page-hero-panel::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size:46px 46px; }
.panel-label { position:relative; z-index:2; width:max-content; background:white; color:var(--ink); border-radius:999px; padding:12px 18px; font-weight:750; box-shadow:0 12px 26px rgba(0,0,0,.14); }
.panel-label:nth-child(2){ margin-left:22%; }.panel-label:nth-child(3){ margin-left:45%; }
.panel-axis { position:absolute; left:56px; right:56px; top:50%; height:1px; background:linear-gradient(90deg,rgba(111,196,197,.2),#6fc4c5,rgba(111,196,197,.2)); transform:rotate(15deg); }
.service-map { display:grid; grid-template-columns:1fr 1fr; gap:14px; align-content:center; }
.service-node { position:relative; z-index:2; background:rgba(255,255,255,.95); color:var(--ink); border-radius:14px; padding:18px; text-align:center; font-weight:750; }
.service-core { position:absolute; z-index:3; inset:50% auto auto 50%; transform:translate(-50%,-50%); width:112px; height:112px; border-radius:50%; display:grid; place-items:center; background:#6fc4c5; color:#0b2637; font-weight:850; box-shadow:0 0 0 16px rgba(111,196,197,.13); }
.split-section { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.prose { color:var(--ink-2); font-size:1.08rem; }
.prose p + p { margin-top:20px; }
.prose .text-link { margin-top:24px; }
.light-prose { color:#c5d1dc; }
.light-link { color:#8bd4d5; }
.service-overview .cap-card { min-height:330px; }
.principle-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:42px; }
.principle-grid article { border:1px solid var(--line); border-radius:var(--radius); padding:28px; background:white; }
.principle-grid p { margin-top:12px; color:var(--muted); }
.deliverable-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.deliverable-grid article { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:28px; min-height:230px; }
.deliverable-grid h3 { margin-top:18px; }
.deliverable-grid p { margin-top:12px; color:var(--muted); }
.tag { display:inline-flex; border-radius:999px; padding:6px 10px; background:var(--accent-soft); color:var(--accent-deep); font-size:.72rem; font-weight:850; letter-spacing:.05em; text-transform:uppercase; }
.outcome-list { margin-top:42px; border-top:1px solid var(--line); }
.outcome-list div { display:grid; grid-template-columns:.55fr 1.45fr; gap:30px; padding:24px 0; border-bottom:1px solid var(--line); }
.outcome-list strong { font-size:1.08rem; }.outcome-list span { color:var(--muted); }
.question-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:40px; }
.question-grid article { border:1px solid var(--line); border-radius:var(--radius); padding:26px; font-weight:700; font-size:1.08rem; background:var(--paper); }
.contrast-box { margin-top:40px; display:grid; grid-template-columns:1fr auto 1.3fr; gap:22px; align-items:stretch; }
.contrast-box > div:not(.contrast-arrow) { border:1px solid var(--line); border-radius:var(--radius); padding:28px; background:var(--paper); }
.contrast-box span { display:block; color:var(--muted); font-size:.76rem; font-weight:850; letter-spacing:.08em; text-transform:uppercase; margin-bottom:10px; }
.contrast-box strong { display:block; font-size:1.35rem; line-height:1.35; }
.contrast-box .contrast-answer { background:var(--ink); color:white; border-color:var(--ink); }
.contrast-box .contrast-answer span { color:#8bd4d5; }
.contrast-arrow { display:grid; place-items:center; font-size:2rem; color:var(--accent); }
.metric-band { display:grid; grid-template-columns:repeat(4,1fr); margin-top:42px; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.metric-band div { padding:26px; border-right:1px solid var(--line); }.metric-band div:last-child{border-right:0}.metric-band strong{display:block;font-size:1.15rem}.metric-band span{color:var(--muted);font-size:.9rem}
.proof-panel { display:grid; grid-template-columns:1fr; align-content:center; gap:0; color:white; }
.proof-panel > div { position:relative; z-index:2; }
.proof-panel strong { position:relative; z-index:2; display:block; font-size:3rem; letter-spacing:-.05em; margin-top:20px; }
.proof-panel span { position:relative; z-index:2; color:#b7c5d3; }
.engagement-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.engagement-grid article { border:1px solid var(--line); border-radius:var(--radius); padding:26px; min-height:230px; }
.engagement-grid .org { color:var(--accent-deep); font-size:.78rem; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
.engagement-grid h3 { margin-top:14px; }.engagement-grid p{margin-top:12px;color:var(--muted)}
.dark-intro { margin-top:18px; color:#c5d1dc; max-width:720px; }
.large-outcomes { margin-top:42px; grid-template-columns:repeat(3,1fr); }
.verification-note { margin-top:20px; color:#8fa2b5; font-size:.85rem; }
.skill-cloud { display:flex; flex-wrap:wrap; gap:10px; margin-top:36px; }.skill-cloud span{padding:9px 13px;border:1px solid var(--line);border-radius:999px;background:white;color:var(--ink-2);font-weight:650;font-size:.9rem}
.parsora-hero { background:radial-gradient(circle at 78% 14%,rgba(105,89,214,.12),transparent 35%),radial-gradient(circle at 90% 44%,rgba(10,111,114,.12),transparent 26%),linear-gradient(180deg,#fff,#f8fafc); }
.page-parse-stack { min-height:410px; padding:22px; background:var(--ink); border-radius:28px; box-shadow:var(--shadow); }
.page-parse-stack .parse-mini { transform:none; }
.parsora-steps { margin-top:44px; }
.big-contrast { margin-top:44px; }.contrast-note{margin-top:24px;color:var(--muted);font-weight:700}
.duo-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:42px; }.dark-card{border:1px solid rgba(255,255,255,.14);border-radius:var(--radius);padding:32px;background:rgba(255,255,255,.045)}.dark-card h3{font-size:1.6rem;margin-top:18px}.dark-card p{color:#c5d1dc;margin:14px 0 24px}.dark-tag{background:rgba(139,212,213,.14);color:#8bd4d5}.parsora-brand-section{background:radial-gradient(circle at 50% 0%,rgba(105,89,214,.08),transparent 40%)}
.centre-copy { text-align:center; }.centre-copy h2,.centre-copy .lead{margin-left:auto;margin-right:auto;}.centre-copy .lead{margin-top:20px;}.centre-buttons{justify-content:center;margin-top:28px}
.history-panel { color:white; }.history-panel strong{position:relative;z-index:2;font-size:4rem;letter-spacing:-.06em}.history-panel span{position:relative;z-index:2;color:#c4d0db;margin-bottom:20px}.history-line{position:relative;z-index:2;width:1px;height:46px;background:#6fc4c5;margin:4px 0 12px 14px}
.leadership-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:start; }.role{margin-top:10px;color:var(--accent-deep);font-weight:750}
.contact-card { border:1px solid var(--line); border-radius:28px; padding:34px; background:white; box-shadow:var(--shadow); }.contact-card h3{font-size:1.7rem;margin-top:18px}.contact-card p{margin:16px 0 24px;color:var(--muted)}
.compact-grid article{min-height:190px}.three-ways{grid-template-columns:repeat(3,1fr)}
.legal-hero{padding:88px 0 54px;background:var(--paper);border-bottom:1px solid var(--line)}.narrow{max-width:820px}.legal-title{font-size:clamp(2.7rem,6vw,4.8rem);max-width:15ch}.legal-updated{margin-top:20px;color:var(--muted);font-size:.9rem}.legal-section{padding-top:70px}.legal-copy h2{font-size:1.55rem;max-width:none;margin:40px 0 12px}.legal-copy h2:first-child{margin-top:0}.legal-copy p{color:var(--ink-2)}.legal-copy p+p{margin-top:14px}.legal-copy a{color:var(--accent-deep);font-weight:700}
.nav-links a[aria-current="page"]{color:var(--accent-deep)}

@media(max-width:940px){.page-hero-grid,.split-section,.leadership-grid{grid-template-columns:1fr;gap:44px}.page-hero-panel{min-height:330px}.principle-grid{grid-template-columns:1fr 1fr}.deliverable-grid,.engagement-grid{grid-template-columns:1fr 1fr}.large-outcomes{grid-template-columns:1fr 1fr}.metric-band{grid-template-columns:1fr 1fr}.metric-band div:nth-child(2){border-right:0}.metric-band div:nth-child(-n+2){border-bottom:1px solid var(--line)}.duo-grid,.three-ways{grid-template-columns:1fr}.contrast-box{grid-template-columns:1fr}.contrast-arrow{transform:rotate(90deg)}}
@media(max-width:620px){.page-hero{padding:68px 0 58px}.page-title{font-size:clamp(2.55rem,13vw,4rem)}.page-hero-panel{min-height:290px;padding:24px}.principle-grid,.deliverable-grid,.engagement-grid,.large-outcomes,.question-grid,.metric-band{grid-template-columns:1fr}.metric-band div{border-right:0;border-bottom:1px solid var(--line)}.metric-band div:last-child{border-bottom:0}.outcome-list div{grid-template-columns:1fr;gap:6px}.service-core{width:92px;height:92px}.service-node{padding:14px;font-size:.88rem}.contrast-box strong{font-size:1.15rem}}


.brand-logo img{height:42px;width:auto;display:block}.footer-logo img{height:36px}.hero-visual{display:flex;align-items:center;justify-content:center}.hero-illustration{display:block;width:100%;max-width:620px;height:auto;border-radius:28px;box-shadow:var(--shadow)}.image-panel{padding:0;min-height:auto;overflow:hidden;background:#0f2438;display:flex;align-items:center;justify-content:center}.panel-image{display:block;width:100%;height:auto}.parse-image-wrap{display:flex;align-items:center;justify-content:center}.parse-image{width:100%;max-width:620px;height:auto;border-radius:28px;box-shadow:var(--shadow)}@media (max-width:920px){.brand-logo img{height:36px}.footer-logo img{height:32px}.hero-illustration,.parse-image{max-width:100%}}

/* v4 brand + visual QA fixes */
.brand-logo img{height:56px!important;width:auto!important;max-width:224px;object-fit:contain}.footer-logo img{height:52px!important;max-width:192px!important;border-radius:2px}.nav{min-height:88px}.hero-visual,.page-hero-panel{overflow:hidden}.hero-illustration,.panel-image,.parse-image{width:100%;height:auto;display:block}.page-hero-panel.image-panel{min-height:0!important}.contrast-box .contrast-answer{background:#10253d!important;color:#fff!important;border-color:#10253d!important}.contrast-box .contrast-answer strong{color:#fff!important}.contrast-box .contrast-answer span{color:#90c3ff!important}.company-details{margin-top:28px;padding-top:22px;border-top:1px solid var(--line);display:grid;gap:5px;color:var(--muted);font-size:.9rem}.company-details strong{color:var(--ink)}.corporate-footer{display:grid!important;gap:8px!important}.corporate-footer span:last-child{text-align:right}.site-footer .brand-logo{display:inline-flex;background:#315dbb;padding:4px 8px;border-radius:4px}.page-hero{padding:84px 0 74px}.hero{padding-top:84px!important;padding-bottom:84px!important}.legal-title{max-width:16ch!important}@media(max-width:1100px){h1{font-size:clamp(2.8rem,5.3vw,4.5rem)}.page-title{font-size:clamp(2.5rem,5vw,4.1rem)}.hero-grid,.page-hero-grid{gap:42px;grid-template-columns:minmax(0,1fr) minmax(360px,.85fr)}}@media(max-width:940px){.hero-grid,.page-hero-grid{grid-template-columns:1fr}.hero-visual,.page-hero-panel{max-width:720px}.corporate-footer span:last-child{text-align:left}}@media(max-width:620px){.brand-logo img{height:46px!important;max-width:174px}.nav{min-height:72px}h1{font-size:clamp(2.6rem,12vw,3.8rem)}.page-title{font-size:clamp(2.4rem,11vw,3.5rem)}.hero,.page-hero{padding-top:58px!important;padding-bottom:58px!important}}

/* v5 supplied visual system */
.hero-photo-panel{padding:0!important;min-height:0!important;background:#eef4fb!important;border-radius:30px;overflow:hidden;box-shadow:var(--shadow);position:relative}.hero-photo-panel::before{display:none!important}.hero-photo{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}.home-hero-photo{object-position:center center}.page-hero-panel.supplied-hero{padding:0!important;min-height:0!important;background:#f5f8fc!important;border-radius:28px;overflow:hidden;box-shadow:0 24px 62px rgba(16,37,61,.14)}.page-hero-panel.supplied-hero::before{display:none!important}.supplied-hero-image{display:block;width:100%;height:auto;aspect-ratio:1536/859;object-fit:cover}.contact-direct{padding-top:76px!important;padding-bottom:38px!important}.contact-direct-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.78fr);gap:64px;align-items:start}.contact-direct .contact-card{box-shadow:0 18px 50px rgba(16,37,61,.09)}@media(max-width:940px){.hero-photo{aspect-ratio:16/10}.contact-direct-grid{grid-template-columns:1fr;gap:34px}.page-hero-panel.supplied-hero{max-width:none}}@media(max-width:620px){.hero-photo{aspect-ratio:4/3}.supplied-hero-image{aspect-ratio:16/10;object-fit:cover}.contact-direct{padding-top:52px!important}}


/* v6 layout, supplied hero, texture, footer and conversion tracking presentation */
.hero,
.page-hero {
  padding-top: 46px !important;
}
.hero { padding-bottom: 70px !important; }
.page-hero { padding-bottom: 60px !important; }

.home-hero-photo {
  aspect-ratio: 1536 / 780 !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
}


.site-footer {
  border-top: 4px solid #315dbb;
}
.site-footer .brand-logo {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.footer-logo img {
  height: 52px !important;
  width: auto !important;
  max-width: 196px !important;
  object-fit: contain;
}
.corporate-footer {
  align-items: start;
}
.footer-contact-details {
  display: grid;
  gap: 5px;
  text-align: right;
  max-width: 410px;
}
.footer-contact-details a {
  color: #d7e4f0;
  font-weight: 750;
}
.footer-contact-details span {
  color: #8194a6;
}
.company-details .company-phone {
  color: var(--accent-deep);
  font-weight: 750;
  width: max-content;
}

@media (max-width: 940px) {
  .hero,
  .page-hero {
    padding-top: 36px !important;
  }
  .hero { padding-bottom: 56px !important; }
  .page-hero { padding-bottom: 50px !important; }
  .footer-contact-details { text-align: left; max-width: none; }
}
@media (max-width: 620px) {
  .hero,
  .page-hero {
    padding-top: 28px !important;
  }
  .hero { padding-bottom: 44px !important; }
  .page-hero { padding-bottom: 42px !important; }
}


/* v7 homepage visual refinement */
.hero-photo-panel{
  aspect-ratio:1536/780!important;
  min-height:0!important;
  background:transparent!important;
  border-radius:26px!important;
}
.home-hero-photo{
  width:100%!important;
  height:100%!important;
  display:block!important;
  object-fit:cover!important;
}
@media(max-width:1100px){
  .hero-grid{grid-template-columns:1fr!important;gap:34px!important;}
  .hero-photo-panel{max-width:820px;width:100%;}
}
@media(max-width:620px){
  .hero-photo-panel{border-radius:20px!important;}
}
