/* ==========================================================================
   CS GROUP — Design System
   Ivory / Navy / Burgundy / Gold — light, editorial, precision-engineered.
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: local('Fraunces');
  font-display: swap;
}

:root{
  /* ---- Palette ---- */
  --ivory:        #F7F3EA;
  --ivory-deep:   #EEE6D6;
  --paper:        #FFFDF9;
  --white:        #FFFFFF;

  --ink:          #12203A;
  --ink-2:        #333F58;
  --ink-soft:     #6B7385;
  --ink-faint:    #98A0B0;

  --navy:         #16385F;
  --navy-deep:    #0B2340;
  --navy-soft:    #E7EDF3;

  --burgundy:     #7C1F2C;
  --burgundy-deep:#54121C;
  --burgundy-soft:#F3E6E4;

  --signal:       #C21C2E;
  --gold:         #AC8A4E;
  --gold-soft:    #E7DCC2;
  --gold-deep:    #86682F;

  --line:         rgba(18,32,58,0.11);
  --line-strong:  rgba(18,32,58,0.22);
  --scrim:        rgba(18,32,58,0.55);

  --shadow-sm: 0 2px 14px rgba(18,32,58,0.07);
  --shadow-md: 0 16px 44px rgba(18,32,58,0.11);
  --shadow-lg: 0 36px 90px rgba(18,32,58,0.18);

  /* ---- Type ---- */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Space Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;

  /* ---- Layout ---- */
  --container: 1360px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.16,.84,.24,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
  --dur: .7s;
}

/* ---------------------------------- Reset --------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  -webkit-text-size-adjust: 100%;
}
body{
  margin:0;
  background: var(--ivory);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5,p,figure{ margin:0; }
button{ font:inherit; background:none; border:none; cursor:pointer; color:inherit; }
input,textarea,select{ font:inherit; color:inherit; }
svg{ display:block; }
::selection{ background: var(--burgundy); color: var(--ivory); }
html{ scroll-behavior: smooth; }

/* ------------------------------- Typography -------------------------------- */
.kicker{
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--burgundy);
  display:flex;
  align-items:center;
  gap:.6em;
  font-weight:700;
}
.kicker::before{
  content:'';
  width: 28px; height:1px;
  background: var(--gold-deep);
  display:inline-block;
}
.kicker.on-light{ color: var(--gold-deep); }

h1, .h1{
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}
h2, .h2{
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}
h3, .h3{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.16;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
h4, .h4{
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}
.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
}
.eyebrow-num{
  font-family: var(--font-mono);
  color: var(--gold-deep);
  font-size:.8rem;
  letter-spacing:.08em;
}
.italic-serif{ font-family: var(--font-display); font-style: italic; color: var(--burgundy); }
p.muted{ color: var(--ink-soft); }
.text-center{ text-align:center; }

/* ---------------------------------- Layout --------------------------------- */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section{ padding: clamp(72px,10vw,150px) 0; position:relative; }
.section--tight{ padding: clamp(48px,6vw,96px) 0; }
.section--alt{ background: var(--ivory-deep); }
.section--navy{ background: var(--navy); color: var(--navy-soft); }
.section--navy h2, .section--navy h3{ color:#fff; }
.section--paper{ background: var(--paper); }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:40px;
  margin-bottom: clamp(36px,5vw,64px);
}
.section-head .lede{ max-width:460px; }
.grid{ display:grid; gap: 28px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
.grid-5{ grid-template-columns: repeat(5,1fr); }
.hr{ height:1px; background: var(--line); border:none; margin: 0; }
.divider-gold{ height:2px; width:64px; background: linear-gradient(90deg,var(--gold),transparent); }

/* ---------------------------------- Buttons --------------------------------- */
.btn{
  position:relative;
  display:inline-flex; align-items:center; gap:.6em;
  padding: 1em 1.7em;
  border-radius: 999px;
  font-size:.86rem;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
  overflow:hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), color .4s ease;
}
.btn span{ position:relative; z-index:2; }
.btn svg{ position:relative; z-index:2; width:15px; height:15px; transition: transform .5s var(--ease); }
.btn:hover svg{ transform: translate(3px,-3px); }
.btn--primary{
  background: var(--ink);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}
.btn--primary::before{
  content:'';
  position:absolute; inset:0;
  background: var(--burgundy);
  transform: translateY(101%);
  transition: transform .55s var(--ease);
  z-index:1;
}
.btn--primary:hover::before{ transform: translateY(0); }
.btn--primary:hover{ box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--ghost{
  border:1px solid var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover{ background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--on-navy{ border-color: rgba(255,255,255,.35); color:#fff; }
.btn--on-navy:hover{ background:#fff; color:var(--navy); }
.btn--sm{ padding:.75em 1.3em; font-size:.72rem; }
.link-arrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-weight:700; font-size:.85rem; letter-spacing:.02em;
  color: var(--ink); border-bottom:1px solid var(--line-strong); padding-bottom:.3em;
  transition: border-color .4s ease, color .4s ease, gap .4s ease;
}
.link-arrow svg{ width:13px; height:13px; transition: transform .4s var(--ease); }
.link-arrow:hover{ color: var(--burgundy); border-color: var(--burgundy); gap:.75em; }
.link-arrow:hover svg{ transform: translateX(3px); }

/* ---------------------------------- Chips / badges --------------------------------- */
.chip{
  display:inline-flex; align-items:center; gap:.5em;
  padding:.55em 1em;
  border:1px solid var(--line-strong);
  border-radius: 999px;
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.03em;
  color: var(--ink-2);
  background: rgba(255,255,255,.5);
}
.chip svg{ width:13px; height:13px; color: var(--burgundy); flex:none; }
.chip-row{ display:flex; flex-wrap:wrap; gap:12px; }

/* ---------------------------------- Preloader --------------------------------- */
#preloader{
  position:fixed; inset:0; z-index:9999;
  background: var(--ivory);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
#preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ width:64px; height:64px; margin-bottom:22px; opacity:0; animation: pl-fade .6s var(--ease) .1s forwards; }
.preloader-count{
  font-family: var(--font-mono);
  font-size:.85rem;
  letter-spacing:.2em;
  color: var(--ink-soft);
  display:flex; gap:14px; align-items:center;
}
.preloader-count .bar{ width:140px; height:1px; background: var(--line-strong); position:relative; overflow:hidden; }
.preloader-count .bar i{ position:absolute; inset:0; width:0%; background: var(--burgundy); display:block; }
@keyframes pl-fade{ to{ opacity:1; } }

/* ---------------------------------- Page transition --------------------------------- */
#page-transition{
  position:fixed; inset:0; z-index:9998;
  background: var(--ink);
  transform: translateY(101%);
  pointer-events:none;
}
#page-transition.is-active{ transition: transform .7s var(--ease); transform: translateY(0%); }
#page-transition.is-leaving{ transition: transform .7s var(--ease) .05s; transform: translateY(-101%); }

/* ---------------------------------- Cursor --------------------------------- */
.cursor-dot, .cursor-ring{
  position:fixed; top:0; left:0; z-index:9997;
  pointer-events:none;
  border-radius:50%;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor-dot{ width:6px; height:6px; background: var(--burgundy); }
.cursor-ring{ width:34px; height:34px; border:1px solid var(--ink-soft); transition: width .3s var(--ease), height .3s var(--ease), border-color .3s ease, background .3s ease; }
.cursor-ring.is-hover{ width:64px; height:64px; border-color: var(--burgundy); background: rgba(124,31,44,.06); }
@media (pointer:coarse){ .cursor-dot,.cursor-ring{ display:none; } }

/* ---------------------------------- Nav --------------------------------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:400;
  padding: 26px 0;
  transition: padding .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
}
.nav.is-scrolled{
  padding: 15px 0;
  background: rgba(247,243,234,.86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brandmark{ display:flex; align-items:center; gap:12px; }
.brandmark img{ width:30px; height:30px; object-fit:contain; }
.brandmark-text{ font-family: var(--font-display); font-size:1.18rem; letter-spacing:.01em; color: var(--ink); line-height:1; }
.brandmark-text b{ font-weight:600; }
.brandmark-text small{ display:block; font-family:var(--font-mono); font-size:.56rem; letter-spacing:.18em; color: var(--ink-soft); margin-top:4px; text-transform:uppercase;}
.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  position:relative;
  padding: 10px 16px;
  font-size:.84rem;
  font-weight:600;
  letter-spacing:.01em;
  color: var(--ink-2);
}
.nav-links a::after{
  content:''; position:absolute; left:16px; right:16px; bottom:6px; height:1px;
  background: var(--burgundy); transform: scaleX(0); transform-origin:right; transition: transform .4s var(--ease);
}
.nav-links a:hover::after, .nav-links a.is-active::after{ transform: scaleX(1); transform-origin:left; }
.nav-links a.is-active{ color: var(--ink); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-burger{ display:none; flex-direction:column; gap:5px; width:26px; z-index:600; }
.nav-burger span{ height:2px; background: var(--ink); display:block; transition: transform .4s var(--ease), opacity .3s ease; }

.mobile-menu{
  position:fixed; inset:0; z-index:500;
  background: var(--ivory);
  display:flex; flex-direction:column; justify-content:center; padding: 0 8vw;
  clip-path: circle(0px at calc(100% - 40px) 40px);
  transition: clip-path .7s var(--ease);
}
.mobile-menu.is-open{ clip-path: circle(150% at calc(100% - 40px) 40px); }
.mobile-menu a{
  font-family: var(--font-display);
  font-size: clamp(2rem,8vw,3.2rem);
  padding: 10px 0;
  color: var(--ink);
  border-bottom:1px solid var(--line);
  display:block;
}
.mobile-menu-foot{ margin-top:36px; color:var(--ink-soft); font-size:.85rem; }

/* ---------------------------------- Hero --------------------------------- */
.hero{
  position:relative;
  padding-top: clamp(150px, 20vh, 230px);
  padding-bottom: clamp(60px,8vw,110px);
  overflow:hidden;
}
.hero-canvas{ position:absolute; inset:0; width:100%; height:100%; opacity:.55; }
.hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items:end; position:relative; z-index:2; }
.hero-copy .kicker{ margin-bottom: 26px; }
.hero-copy h1{ margin-bottom: 28px; }
.hero-copy h1 .line{ display:block; overflow:hidden; }
.hero-copy h1 .line span{ display:inline-block; will-change: transform; }
.hero-copy h1 em{ font-style:italic; color: var(--burgundy); font-weight:400; }
.hero-actions{ display:flex; align-items:center; gap:28px; margin-top:38px; flex-wrap:wrap; }
.hero-visual{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; transform: scale(1.16); }
.hero-visual::after{
  content:''; position:absolute; inset:0; border-radius:inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.hero-visual-tag{
  position:absolute; left:18px; bottom:18px; z-index:3;
  background: rgba(247,243,234,.9);
  backdrop-filter: blur(6px);
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size:.72rem; letter-spacing:.04em; color: var(--ink);
  display:flex; align-items:center; gap:10px;
  box-shadow: var(--shadow-sm);
}
.hero-visual-tag i{ width:8px; height:8px; border-radius:50%; background: var(--signal); display:inline-block; animation: pulse 2s infinite; }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }

.hero-stats{ display:flex; gap: clamp(24px,4vw,56px); margin-top: clamp(50px,7vw,84px); flex-wrap:wrap; position:relative; z-index:2; }
.stat b{
  font-family: var(--font-display); font-size: clamp(2rem,3.4vw,3rem); color: var(--ink); display:block; line-height:1;
  font-weight:500;
}
.stat span{ font-size:.78rem; color: var(--ink-soft); letter-spacing:.03em; margin-top:8px; display:block; max-width:160px; }

/* ---------------------------------- Marquee --------------------------------- */
.marquee{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding: 22px 0; overflow:hidden; white-space:nowrap;
}
.marquee-track{ display:inline-flex; gap:56px; will-change: transform; }
.marquee-track span{
  font-family: var(--font-mono); font-size:.8rem; letter-spacing:.14em; text-transform:uppercase;
  color: var(--ink-soft); display:inline-flex; align-items:center; gap:56px;
}
.marquee-track span::after{ content:'—'; color: var(--gold); margin-left:56px; }
.marquee--brand .marquee-track span{ font-family: var(--font-display); font-style:italic; font-size:1.05rem; letter-spacing:.01em; color: var(--ink-2); }

/* ---------------------------------- Cards: capability / sector --------------------------------- */
.cap-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--line-strong); border:1px solid var(--line-strong); border-radius: var(--radius-lg); overflow:hidden; }
.cap-card{
  background: var(--paper); padding: clamp(28px,3vw,44px); position:relative; overflow:hidden;
  min-height: 340px; display:flex; flex-direction:column; justify-content:space-between;
  transition: background .5s var(--ease);
}
.cap-card::before{
  content:''; position:absolute; inset:0; background-image: var(--bg-img,none); background-size:cover; background-position:center;
  opacity:0; transition: opacity .6s var(--ease); z-index:0;
}
.cap-card::after{ content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(18,32,58,.15), rgba(18,32,58,.82)); opacity:0; transition: opacity .6s var(--ease); z-index:0; }
.cap-card:hover::before, .cap-card:hover::after{ opacity:1; }
.cap-card > *{ position:relative; z-index:1; }
.cap-card .eyebrow-num{ transition: color .5s ease; }
.cap-card:hover .eyebrow-num{ color: var(--gold-soft); }
.cap-card h3{ margin:18px 0 14px; transition: color .5s ease; }
.cap-card:hover h3{ color:#fff; }
.cap-card p{ color: var(--ink-soft); transition: color .5s ease; font-size:.94rem; }
.cap-card:hover p{ color: rgba(255,255,255,.85); }
.cap-card .link-arrow{ margin-top:22px; transition: color .5s ease, border-color .5s ease; }
.cap-card:hover .link-arrow{ color:#fff; border-color: rgba(255,255,255,.5); }
.cap-icon{ width:40px; height:40px; color: var(--burgundy); transition: color .5s ease, transform .5s var(--ease); }
.cap-card:hover .cap-icon{ color: var(--gold-soft); transform: translateY(-4px); }

/* ---------------------------------- Companies / leaders --------------------------------- */
.company-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:1px; background:var(--line-strong); border:1px solid var(--line-strong); border-radius: var(--radius-lg); overflow:hidden; }
.company-card{ background: var(--paper); padding: 30px clamp(24px,3vw,40px); display:flex; align-items:center; justify-content:space-between; gap:20px; transition: background .4s ease; }
.company-card:hover{ background: var(--ivory-deep); }
.company-card .name{ font-family: var(--font-display); font-size:1.2rem; color: var(--ink); }
.company-card .role{ font-size:.82rem; color: var(--ink-soft); margin-top:6px; }
.company-card .tag{ font-family: var(--font-mono); font-size:.68rem; color: var(--gold-deep); letter-spacing:.1em; white-space:nowrap; }

.leader-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:26px; }
.leader-card{ text-align:center; }
.leader-avatar{
  width:96px; height:96px; margin:0 auto 18px; border-radius:50%;
  background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1.6rem; position:relative;
  box-shadow: var(--shadow-sm);
}
.leader-avatar::after{ content:''; position:absolute; inset:-6px; border-radius:50%; border:1px solid var(--line-strong); }
.leader-card .name{ font-family: var(--font-display); font-size:1.1rem; color: var(--ink); }
.leader-card .role{ font-size:.78rem; color: var(--ink-soft); margin-top:6px; letter-spacing:.02em; }

/* ---------------------------------- Timeline --------------------------------- */
.timeline{ position:relative; padding-left: 40px; }
.timeline::before{ content:''; position:absolute; left:6px; top:6px; bottom:6px; width:1px; background: var(--line-strong); }
.timeline-item{ position:relative; padding-bottom: 52px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:''; position:absolute; left:-40px; top:4px; width:13px; height:13px; border-radius:50%;
  background: var(--paper); border:2px solid var(--burgundy);
}
.timeline-year{ font-family: var(--font-mono); color: var(--gold-deep); font-size:.82rem; letter-spacing:.08em; margin-bottom:8px; display:block; }
.timeline-item h4{ font-family: var(--font-display); font-weight:500; font-size:1.3rem; color: var(--ink); margin-bottom:6px; }
.timeline-item p{ color: var(--ink-soft); max-width: 560px; font-size:.95rem; }

/* ---------------------------------- Process strip --------------------------------- */
.process-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:0; counter-reset: step; }
.process-step{ padding: 0 26px 0 0; position:relative; border-left:1px solid var(--line); padding-left:26px; }
.process-step:first-child{ border-left:none; padding-left:0; }
.process-step .num{ font-family: var(--font-display); font-style:italic; font-size:2.4rem; color: var(--gold-soft); -webkit-text-stroke: 1px var(--gold-deep); }
.process-step h4{ margin:16px 0 10px; }
.process-step p{ font-size:.88rem; color: var(--ink-soft); }

/* ---------------------------------- Sector list --------------------------------- */
.sector-list{ border-top:1px solid var(--line-strong); }
.sector-row{
  display:grid; grid-template-columns: 90px 1fr 1.3fr 40px; align-items:center; gap:24px;
  padding: 30px 0; border-bottom:1px solid var(--line-strong);
  transition: padding-left .5s var(--ease), background .5s ease;
}
.sector-row:hover{ padding-left: 14px; background: rgba(172,138,78,.05); }
.sector-row .idx{ font-family: var(--font-mono); color: var(--gold-deep); font-size:.85rem; }
.sector-row h3{ font-size: clamp(1.3rem,2.4vw,2rem); }
.sector-row p{ color: var(--ink-soft); font-size:.92rem; }
.sector-row .arrow{ width:20px; height:20px; color: var(--ink-faint); transition: transform .5s var(--ease), color .5s ease; justify-self:end; }
.sector-row:hover .arrow{ transform: rotate(45deg); color: var(--burgundy); }

/* ---------------------------------- Client wall --------------------------------- */
.client-wall{ display:flex; flex-wrap:wrap; gap: 0; border-top:1px solid var(--line); border-left:1px solid var(--line); }
.client-wall span{
  flex:1 1 220px; padding: 26px 22px; border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  font-family: var(--font-display); font-size:1.05rem; color: var(--ink-2); text-align:center;
  transition: color .4s ease, background .4s ease;
}
.client-wall span:hover{ color: var(--burgundy); background: var(--paper); }

/* ---------------------------------- Credentials --------------------------------- */
.cred-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.cred-card{ border:1px solid var(--line-strong); border-radius: var(--radius-md); padding: 28px 24px; background: var(--paper); }
.cred-card svg{ width:30px; height:30px; color: var(--burgundy); margin-bottom:18px; }
.cred-card h4{ margin-bottom:8px; }
.cred-card p{ font-size:.82rem; color: var(--ink-soft); }

/* ---------------------------------- Image reveal --------------------------------- */
.img-reveal{ position:relative; overflow:hidden; border-radius: var(--radius-md); }
.img-reveal img{ width:100%; height:100%; object-fit:cover; transform: scale(1.12); transition: transform 1.4s var(--ease); }
.img-reveal:hover img{ transform: scale(1); }
.img-reveal .veil{ position:absolute; inset:0; background: var(--ivory); transform-origin: top; z-index:2; }

/* ---------------------------------- CTA band --------------------------------- */
.cta-band{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  background: var(--navy); color:#fff; padding: clamp(56px,8vw,110px) clamp(28px,6vw,90px);
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
}
.cta-band h2{ color:#fff; max-width:640px; }
.cta-band .kicker{ color: var(--gold-soft); }
.cta-band .kicker::before{ background: var(--gold-soft); }
.cta-orbit{ position:absolute; right:-120px; top:50%; transform:translateY(-50%); width:420px; height:420px; opacity:.25; }

/* ---------------------------------- Footer --------------------------------- */
.site-footer{ background: var(--ink); color: rgba(247,243,234,.72); padding-top: clamp(64px,8vw,100px); }
.site-footer a{ color: rgba(247,243,234,.72); }
.footer-top{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom:1px solid rgba(247,243,234,.14); }
.footer-brand .brandmark-text{ color:#fff; }
.footer-brand p{ margin-top:20px; max-width:300px; font-size:.88rem; color: rgba(247,243,234,.56); }
.footer-col h5{ font-family: var(--font-mono); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-soft); margin-bottom:20px; }
.footer-col li{ margin-bottom:12px; font-size:.88rem; }
.footer-col a:hover{ color:#fff; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{ width:36px; height:36px; border:1px solid rgba(247,243,234,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; transition: background .4s ease, border-color .4s ease; }
.footer-social a:hover{ background:#fff; color: var(--ink); border-color:#fff; }
.footer-social svg{ width:15px; height:15px; }
.footer-certs{ display:flex; gap:10px; flex-wrap:wrap; padding: 32px 0; border-bottom:1px solid rgba(247,243,234,.14); }
.footer-certs .chip{ border-color: rgba(247,243,234,.22); color: rgba(247,243,234,.75); background:transparent; }
.footer-certs .chip svg{ color: var(--gold-soft); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 26px 0 34px; font-size:.78rem; color: rgba(247,243,234,.45); flex-wrap:wrap; gap:14px; }
.footer-bottom-links{ display:flex; gap:22px; }

/* ---------------------------------- Forms --------------------------------- */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; }
.field{ position:relative; }
.field.full{ grid-column: 1/-1; }
.field label{ display:block; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-soft); margin-bottom:10px; font-weight:600; }
.field input, .field select, .field textarea{
  width:100%; background:transparent; border:none; border-bottom:1px solid var(--line-strong);
  padding: 10px 2px 14px; font-size:1.02rem; color: var(--ink); transition: border-color .4s ease;
}
.field textarea{ resize:vertical; min-height:90px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--burgundy); }
.field input::placeholder, .field textarea::placeholder{ color: var(--ink-faint); }

/* ---------------------------------- Reveal utility (JS-driven) --------------------------------- */
.reveal{ opacity:0; transform: translateY(46px); transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.reveal-fade{ opacity:0; transition: opacity 1.1s var(--ease-soft); }
.reveal-fade.is-visible{ opacity:1; }
.reveal-scale{ opacity:0; transform: scale(.92); transition: opacity 1s var(--ease-soft), transform 1.1s var(--ease-soft); }
.reveal-scale.is-visible{ opacity:1; transform:scale(1); }
.reveal-line .veil{ transition: transform 1.1s var(--ease-soft); }
.reveal-line.is-visible .veil{ transform: scaleY(0); }
.stagger > *{ opacity:0; transform: translateY(30px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
.stagger.is-visible > *{ opacity:1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1){ transition-delay:.05s; }
.stagger.is-visible > *:nth-child(2){ transition-delay:.14s; }
.stagger.is-visible > *:nth-child(3){ transition-delay:.23s; }
.stagger.is-visible > *:nth-child(4){ transition-delay:.32s; }
.stagger.is-visible > *:nth-child(5){ transition-delay:.41s; }
.stagger.is-visible > *:nth-child(6){ transition-delay:.5s; }
[data-parallax]{ will-change: transform; }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-fade, .reveal-scale, .stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
}

/* ---------------------------------- Misc page bits --------------------------------- */
.page-hero{ padding: clamp(150px,20vh,220px) 0 clamp(60px,7vw,90px); position:relative; overflow:hidden; }
.page-hero .h1{ max-width:900px; }
.breadcrumb{ display:flex; align-items:center; gap:10px; font-size:.78rem; color: var(--ink-soft); margin-bottom:26px; }
.breadcrumb svg{ width:11px; height:11px; }
.split-2{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,80px); align-items:center; }
.pinned-media{ position:sticky; top:120px; }
.big-quote{ font-family: var(--font-display); font-style:italic; font-size: clamp(1.5rem,3vw,2.3rem); color: var(--ink); line-height:1.35; }
.big-quote cite{ display:block; font-style:normal; font-family: var(--font-mono); font-size:.72rem; letter-spacing:.1em; color: var(--ink-soft); margin-top:20px; text-transform:uppercase; }
.num-badge{ font-family: var(--font-display); font-style:italic; font-size: clamp(6rem,14vw,11rem); line-height:.8; color: var(--ivory-deep); -webkit-text-stroke: 1.5px var(--line-strong); position:absolute; z-index:0; pointer-events:none; }
.tag-list{ display:flex; flex-wrap:wrap; gap:10px; }

/* ---------------------------------- Scrollbar polish --------------------------------- */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--ivory); }
::-webkit-scrollbar-thumb{ background: var(--ink-faint); border-radius:10px; }
::-webkit-scrollbar-thumb:hover{ background: var(--burgundy); }

/* ---------------------------------- Responsive --------------------------------- */
@media (max-width: 1080px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ aspect-ratio: 16/10; order:-1; }
  .cap-grid{ grid-template-columns: repeat(2,1fr); }
  .company-grid{ grid-template-columns: 1fr; }
  .leader-grid{ grid-template-columns: repeat(2,1fr); gap:36px 20px; }
  .footer-top{ grid-template-columns: 1fr 1fr; gap:40px 20px; }
  .process-grid{ grid-template-columns: repeat(2,1fr); gap:30px 26px; }
  .process-step{ border-left:none; padding-left:0; border-top:1px solid var(--line); padding-top:22px; }
  .process-step:first-child{ border-top:none; padding-top:0; }
  .cred-grid{ grid-template-columns: repeat(2,1fr); }
  .split-2{ grid-template-columns: 1fr; }
  .pinned-media{ position:relative; top:0; }
}
@media (max-width: 760px){
  .nav-links, .nav-cta .btn{ display:none; }
  .nav-burger{ display:flex; }
  .nav-cta{ gap:0; }
  .cap-grid{ grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4, .grid-5{ grid-template-columns: 1fr; }
  .leader-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-top{ grid-template-columns: 1fr; }
  .sector-row{ grid-template-columns: 40px 1fr; }
  .sector-row p{ grid-column: 1/-1; }
  .form-grid{ grid-template-columns: 1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:18px; }
  .cta-band{ flex-direction:column; align-items:flex-start; }
  h1, .h1{ font-size: clamp(2.3rem,9vw,3.4rem); }
}
