/* ============================================================
   Keshia Schipper — Occupational Health & Workforce Transformation
   Design system. Editorial, calm, precise. No gradients.
   Accent palette derived from the Dutch flag: ink navy + signal red,
   on warm paper white. Purple is deliberately absent.
   ============================================================ */

:root {
  /* Core palette */
  --paper:      #FBFAF7;   /* warm off-white page */
  --paper-2:    #F3F1EC;   /* sand panel */
  --ink:        #14213A;   /* deep navy ink (Dutch blue, darkened) */
  --ink-soft:   #3C4763;   /* secondary text */
  --ink-mute:   #6B7488;   /* muted text */
  --line:       #E4E0D7;   /* hairline border on paper */
  --line-2:     #D6D1C5;   /* stronger hairline */
  --white:      #FFFFFF;

  /* Accents */
  --blue:       #1B3A6B;   /* Dutch flag blue, usable */
  --blue-deep:  #14213A;
  --red:        #C8102E;   /* Dutch flag red (signal accent) */
  --red-deep:   #A50D26;

  /* Dark section */
  --night:      #101A30;   /* near-navy section bg */
  --night-2:    #18243F;
  --on-night:   #EDEFF4;
  --on-night-mute: #93A0BB;

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Metrics */
  --maxw: 1200px;
  --hdr: 84px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }

/* Visible keyboard focus everywhere */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-color: var(--ink); outline-offset: 3px; }
.hero :focus-visible, .quoteband :focus-visible, .ctacard :focus-visible,
.section--night :focus-visible, .contact-aside :focus-visible, .site-footer :focus-visible,
.has-dark-hero .site-header:not(.is-scrolled) :focus-visible { outline-color: #fff; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Type scale ---------- */
.display {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lede {
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 400;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--red);
  display: inline-block;
}
.eyebrow.on-night { color: #FF8095; }
.eyebrow.on-night::before { background: #FF8095; }

.muted { color: var(--ink-mute); }
.serif { font-family: var(--serif); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--paper2 { background: var(--paper-2); }
.section--night { background: var(--night); color: var(--on-night); }
.section--night h1,.section--night h2,.section--night h3 { color: var(--on-night); }
.section--night .lede { color: var(--on-night-mute); }

.stack > * + * { margin-top: 1.1rem; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }
.center { text-align: center; margin-inline: auto; }

.grid { display: grid; gap: clamp(20px, 3vw, 40px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .cols-2,.cols-3,.cols-4 { grid-template-columns: 1fr; }
  .cols-3.keep-2-md,.cols-4.keep-2-md { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .cols-3.keep-2-md,.cols-4.keep-2-md { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.5em;
  font-family: var(--sans);
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { background: var(--blue); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-deep); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--paper-2); }
.btn--on-night { border: 1px solid rgba(255,255,255,.28); color: var(--on-night); }
.btn--on-night:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.txtlink {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.txtlink:hover { color: var(--red); border-color: var(--red); }
.txtlink .arr { transition: transform .25s var(--ease); }
.txtlink:hover .arr { transform: translateX(3px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,247,.82);
  -webkit-backdrop-filter: saturate(150%) blur(14px); backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 12px 34px -28px rgba(20,33,58,.5); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--hdr, 84px);
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .nav { height: 70px; }

/* Transparent glass header over a dark hero (home), until scrolled */
.has-dark-hero .site-header:not(.is-scrolled) {
  background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-color: transparent;
}
.has-dark-hero .site-header:not(.is-scrolled) .brand { color: #fff; }
.has-dark-hero .site-header:not(.is-scrolled) .brand .dot { color: var(--red); }
.has-dark-hero .site-header:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,.82); }
.has-dark-hero .site-header:not(.is-scrolled) .nav-links a:hover,
.has-dark-hero .site-header:not(.is-scrolled) .nav-links a.active { color: #fff; }
.has-dark-hero .site-header:not(.is-scrolled) .nav-cta .btn--primary {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff;
}
.has-dark-hero .site-header:not(.is-scrolled) .nav-cta .btn--primary:hover { background: #fff; color: var(--ink); }
.has-dark-hero .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }

/* Animated underline on nav links + active state */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0.9em; right: 0.9em; bottom: 0.28em; height: 2px;
  background: var(--red); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* CTA arrow */
.nav-cta .btn::after { content: "→"; font-size: 1.05em; line-height: 1; transition: transform .25s var(--ease); }
.nav-cta .btn:hover::after { transform: translateX(3px); }

/* Scroll progress bar (injected by JS) */
.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; z-index: 2; pointer-events: none; }
.scroll-progress i { display: block; height: 100%; width: 0; background: var(--red); transition: width .12s linear; }
@media (max-width: 920px) { .nav-links a::after { display: none; } }
.brand { display: flex; align-items: baseline; gap: 0; font-family: var(--serif); font-size: 1.32rem; letter-spacing: -0.01em; color: var(--ink); }
.brand b { font-weight: 600; }
.brand .dot { color: var(--red); }
.brand__sub { font-family: var(--sans); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute); align-self: center; margin-left: 9px; padding-left: 9px;
  border-left: 1px solid var(--line-2); }
.has-dark-hero .site-header:not(.is-scrolled) .brand__sub { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.25); }
@media (max-width: 420px) { .brand__sub { display: none; } }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--sans); font-weight: 500; font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.5em 0.9em; border-radius: var(--radius);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-cta { margin-left: 12px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display:block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease), opacity .2s; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 14px var(--gutter) 28px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 0.85em 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-open span:nth-child(2){ opacity: 0; }
  .nav-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   Hero — glass / cinematic
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  background: var(--night); color: #fff;
  isolation: isolate;
}
.has-dark-hero .hero { margin-top: calc(-1 * var(--hdr, 84px)); }
.hero__bg { position: absolute; top: -18%; left: 0; right: 0; height: 136%; z-index: 0; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 28%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,16,30,.86);
  box-shadow: inset 0 0 260px 80px rgba(0,0,0,.55);
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1; opacity: .5; pointer-events: none; }
.hero__orb--1 { width: 420px; height: 420px; background: rgba(27,58,107,.55); top: -120px; right: -80px; }
.hero__orb--2 { width: 360px; height: 360px; background: rgba(200,16,46,.22); bottom: -120px; left: -60px; }

.hero__inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: calc(var(--hdr, 84px) + 46px) var(--gutter) 150px;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(30px, 5vw, 76px); align-items: center;
}
.hero .display { font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.03; color: #fff; letter-spacing: -0.025em; }
.hero .display .hl { text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 5px; text-underline-offset: 9px; }
.hero__copy .display { margin-top: 0.45em; }
.hero__copy .lede { margin-top: 1.15em; color: rgba(255,255,255,.82); max-width: 46ch; }
.pill-glass {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 9px 16px; border-radius: 100px;
}
.pill-glass::before { display: none; }

.hero__facts {
  margin-top: 2em; padding-top: 1.5em; border-top: 1px solid rgba(255,255,255,.18);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.hero__facts li { display: flex; flex-direction: column; gap: 3px; }
.hero__facts b { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; color: #fff; }
.hero__facts span { font-size: 0.82rem; color: rgba(255,255,255,.6); line-height: 1.35; }

.hero__trust { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.hero__trust .seal { width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.hero__trust .seal svg { width: 20px; height: 20px; }
.hero__trust p { font-size: 0.86rem; color: rgba(255,255,255,.72); max-width: 34ch; }

/* Glass lead form */
.lead-glass {
  position: relative; z-index: 3; color: #fff;
  background: rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.22); border-radius: 20px;
  padding: clamp(24px, 2.3vw, 34px);
  box-shadow: 0 40px 80px -34px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.18);
}
.lead-glass__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #FF8095; border: 1px solid rgba(255,128,149,.45); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.lead-glass__title { font-family: var(--serif); font-size: clamp(1.5rem,2.4vw,1.9rem); color: #fff; }
.lead-glass__sub { color: rgba(255,255,255,.74); font-size: .92rem; margin: 8px 0 22px; }
.lg-field { position: relative; margin-bottom: 13px; }
.lg-field input, .lg-field select {
  width: 100%; font: inherit; font-size: .96rem; color: #fff;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); border-radius: 11px;
  padding: 20px 14px 8px; transition: border-color .2s var(--ease), background .2s var(--ease);
}
/* Select field: small label stacked above the value (no overlap) */
.lg-sel { margin-bottom: 13px; padding: 9px 14px 7px; border-radius: 11px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22);
  transition: border-color .2s var(--ease), background .2s var(--ease); }
.lg-sel:focus-within { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.13); }
.lg-sel label { display: block; font-size: .68rem; letter-spacing: .04em; color: rgba(255,255,255,.72); margin-bottom: 2px; }
.lg-sel select { width: 100%; font: inherit; font-size: .96rem; color: #fff; line-height: 1.3;
  background: transparent; border: 0; outline: none; padding: 0 24px 0 0;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23ffffff' stroke-width='1.6'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right center; }
.lg-sel select option { color: #14213A; }
.lg-field input::placeholder { color: transparent; }
.lg-field input:focus, .lg-field select:focus { outline: none; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.13); }
.lg-field label { position: absolute; left: 14px; top: 15px; color: rgba(255,255,255,.6); font-size: .95rem; pointer-events: none; transition: .18s var(--ease); }
.lg-field input:focus + label, .lg-field input:not(:placeholder-shown) + label { top: 7px; font-size: .68rem; letter-spacing: .04em; color: rgba(255,255,255,.85); }
.lg-label-static { position: absolute; left: 14px; top: 7px; font-size: .68rem; letter-spacing: .04em; color: rgba(255,255,255,.72); pointer-events: none; }
.lg-submit { width: 100%; justify-content: center; margin-top: 8px; }
.lg-note { margin-top: 14px; color: #BFE9C8; font-weight: 600; font-size: .92rem; }
.lg-fine { margin-top: 13px; font-size: .76rem; color: rgba(255,255,255,.58); text-align: center; }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.hero__scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.hero__scroll-line i { position: absolute; top: -50%; left: 0; width: 1px; height: 50%; background: var(--red); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{ transform: translateY(0);} 100%{ transform: translateY(300%);} }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; padding-top: calc(var(--hdr,84px) + 30px); padding-bottom: 110px; }
  .hero__scroll { display: none; }
  .lead-glass { order: 3; }
}
@media (max-width: 560px) { .hero__facts { grid-template-columns: 1fr; gap: 12px; } }

/* ============================================================
   Floating glass stat bar
   ============================================================ */
.statwrap { position: relative; z-index: 5; margin-top: -78px; }
.statbar {
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7); border-radius: 18px;
  box-shadow: 0 40px 80px -40px rgba(20,33,58,.55);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.statbar .stat { padding: 28px clamp(20px,2vw,30px); border-right: 1px solid var(--line); transition: background .3s var(--ease); }
.statbar .stat:last-child { border-right: 0; }
.statbar .stat:hover { background: rgba(255,255,255,.6); }
.stat .n { font-family: var(--serif); font-size: clamp(1.6rem,2.4vw,2.2rem); color: var(--ink); line-height: 1; }
.stat .n em { font-style: normal; color: var(--red); }
.stat .t { font-size: 0.88rem; color: var(--ink-mute); margin-top: 10px; }
@media (max-width: 820px){ .statbar { grid-template-columns: 1fr 1fr; }
  .statbar .stat:nth-child(2){ border-right: 0; }
  .statbar .stat:nth-child(1),.statbar .stat:nth-child(2){ border-bottom: 1px solid var(--line); } }
@media (max-width: 480px){ .statbar { grid-template-columns: 1fr; }
  .statwrap { margin-top: -56px; }
  .statbar .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .statbar .stat:last-child { border-bottom: 0; } }

/* ============================================================
   Approach (framed image + floating card)
   ============================================================ */
.approach { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 92px); align-items: stretch; }
.approach__media { position: relative; display: flex; }
.framewrap { position: relative; width: 100%; border-radius: 18px; overflow: hidden; box-shadow: 0 40px 80px -44px rgba(20,33,58,.5); }
.framewrap img { width: 100%; height: 100%; min-height: 440px; max-height: 600px; object-fit: cover; object-position: 50% 22%; display: block; }
.framewrap .tri { position: absolute; left: 0; top: 0; bottom: 0; width: 8px; display: flex; flex-direction: column; z-index: 2; }
.framewrap .tri i { flex: 1; } .framewrap .tri i:nth-child(1){background:var(--red)} .framewrap .tri i:nth-child(2){background:#fff} .framewrap .tri i:nth-child(3){background:var(--blue)}
.float-card {
  position: absolute; right: -20px; bottom: 26px; z-index: 3; width: 252px;
  background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.85); border-radius: 16px; padding: 20px 22px;
  box-shadow: 0 34px 64px -34px rgba(20,33,58,.55);
}
.float-card__head { display: flex; align-items: center; gap: 14px; }
.float-card__n { font-family: var(--serif); font-size: 3rem; line-height: .9; color: var(--red); }
.float-card__lead { font-family: var(--serif); font-size: 1.18rem; line-height: 1.12; color: var(--ink); }
.fc-tags { margin-top: 15px; padding-top: 13px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--ink-soft); }
.approach__body > .eyebrow + .h2 { margin-top: 0; }
.approach--rev .approach__media { order: 2; }
.float-card--left { right: auto; left: -20px; }
@media (max-width: 860px) {
  .approach { grid-template-columns: 1fr; }
  .approach--rev .approach__media { order: -1; }
  .approach__media { max-width: 460px; }
  .float-card { right: 10px; left: auto; }
  .float-card--left { left: 10px; right: auto; }
}
.faq-wrap { max-width: 820px; }

/* ============================================================
   Premium pillar cards
   ============================================================ */
.pillars .pillar { padding: clamp(26px, 3vw, 40px); }
.pillar__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.pillar__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--paper-2); color: var(--blue); margin: 0; transition: background .35s var(--ease), color .35s var(--ease); }
.pillar__icon svg { width: 28px; height: 28px; }
.pillar:hover .pillar__icon { background: var(--ink); color: #fff; }
.pillar__num { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--line-2); transition: color .35s var(--ease); }
.pillar:hover .pillar__num { color: var(--red); }
.pillar__list { grid-template-columns: 1fr 1fr; display: grid; gap: 8px 18px; }
@media (max-width: 520px){ .pillar__list { grid-template-columns: 1fr; } }

/* ============================================================
   Process strip / timeline
   ============================================================ */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,2.5vw,34px); }
.process__line { position: absolute; top: 28px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); }
.pstep { position: relative; text-align: center; padding: 0 6px; }
.pstep__node { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 20px;
  display: grid; place-items: center; background: var(--ink); color: #fff;
  font-family: var(--serif); font-size: 1.15rem; border: 5px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line-2); transition: background .3s var(--ease), transform .3s var(--ease); position: relative; z-index: 1; }
.pstep:hover .pstep__node { background: var(--red); transform: translateY(-3px); }
.pstep h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 8px; }
.pstep p { font-size: .92rem; color: var(--ink-soft); }
@media (max-width: 820px){ .process { grid-template-columns: 1fr 1fr; gap: 36px 24px; } .process__line { display: none; } }
@media (max-width: 480px){ .process { grid-template-columns: 1fr; } }

/* ============================================================
   Cinematic quote band
   ============================================================ */
.quoteband { position: relative; overflow: hidden; padding-block: clamp(80px, 12vw, 150px); color: #fff; isolation: isolate; }
.quoteband__bg { position: absolute; top: -20%; left: 0; right: 0; height: 140%; z-index: 0; will-change: transform; }
.quoteband__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.quoteband__overlay { position: absolute; inset: 0; z-index: 1; background: rgba(10,16,30,.82); box-shadow: inset 0 0 240px 70px rgba(0,0,0,.5); }
.quoteband__inner { position: relative; z-index: 2; max-width: 660px; }
.quoteband .big { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.quoteband .big { color: #fff; }
.quoteband .quote-cite { color: rgba(255,255,255,.8); }

/* ============================================================
   Audience cards
   ============================================================ */
.aud { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px,3vw,38px); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.aud::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.aud:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(20,33,58,.45); }
.aud:hover::before { transform: scaleX(1); }
.aud__icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--paper-2); color: var(--blue); margin-bottom: 20px; }
.aud__icon svg { width: 26px; height: 26px; }
.aud h3 { margin-bottom: 10px; }
.aud p { color: var(--ink-soft); font-size: .96rem; }

/* ============================================================
   CTA card
   ============================================================ */
.ctacard { position: relative; overflow: hidden; background: var(--night); color: #fff; border-radius: 24px;
  padding: clamp(36px, 5vw, 70px); display: grid; grid-template-columns: 1.25fr auto; gap: clamp(28px,4vw,56px); align-items: center;
  box-shadow: 0 50px 90px -50px rgba(20,33,58,.7); }
.ctacard .h2 { color: #fff; max-width: 20ch; }
.ctacard__orb { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(200,16,46,.18); filter: blur(90px); right: -80px; top: -120px; z-index: 0; }
.ctacard__copy, .ctacard__actions { position: relative; z-index: 1; }
.ctacard__actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px){ .ctacard { grid-template-columns: 1fr; } }

/* ============================================================
   Section header
   ============================================================ */
.sec-head { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head.split { grid-template-columns: 1fr auto; align-items: end; }
.sec-head .h2 { margin-top: 6px; max-width: 20ch; }
@media (max-width: 760px){ .sec-head.split { grid-template-columns: 1fr; } }

/* ============================================================
   Service / pillar cards
   ============================================================ */
.pillar {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(20,33,58,.45); border-color: var(--line-2); }
.pillar:hover::before { transform: scaleY(1); }
.pillar__num { font-family: var(--serif); font-size: 0.95rem; color: var(--ink-mute); }
.pillar__icon { width: 46px; height: 46px; color: var(--blue); margin-bottom: 20px; }
.pillar__icon svg { width: 100%; height: 100%; }
.pillar .h3 { margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; }
.pillar__list { margin-top: 18px; display: grid; gap: 8px; }
.pillar__list li { font-size: 0.92rem; color: var(--ink-soft); padding-left: 20px; position: relative; }
.pillar__list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; background: var(--red); border-radius: 1px; }
.pillar__more { margin-top: auto; padding-top: 22px; }

/* ============================================================
   Approach / steps
   ============================================================ */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 72px 1fr; gap: clamp(16px,3vw,40px);
  padding-block: clamp(26px,3.5vw,40px);
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { counter-increment: step; font-family: var(--serif); font-size: 1.4rem; color: var(--red); }
.step__n::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); max-width: 60ch; }

/* ============================================================
   Feature list (split image + text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; }
.split__media.wide img { aspect-ratio: 16/10; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split--rev .split__media { order: -1; } }

.ticklist { display: grid; gap: 14px; margin-top: 8px; }
.ticklist li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; color: var(--ink-soft); }
.ticklist svg { width: 22px; height: 22px; color: var(--red); margin-top: 2px; }
.ticklist b { color: var(--ink); font-weight: 600; font-family: var(--sans); }

/* ============================================================
   Quote / testimonial
   ============================================================ */
.quote { max-width: 26ch; }
blockquote.big { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.3rem); line-height: 1.3; letter-spacing: -0.01em; margin: 0; }
blockquote.big .mark { color: var(--red); }
.quote-cite { margin-top: 28px; display: flex; align-items: center; gap: 14px; font-size: 0.95rem; }
.quote-cite .ln { width: 30px; height: 1px; background: currentColor; opacity: .4; }

/* ============================================================
   CTA band
   ============================================================ */
.cta { position: relative; overflow: hidden; }
.cta__inner { display: grid; grid-template-columns: 1.2fr auto; gap: 40px; align-items: center; }
.cta .h2 { max-width: 18ch; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px){ .cta__inner { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--night); color: var(--on-night); padding-block: clamp(56px,7vw,88px) 36px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand { color: var(--on-night); font-size: 1.5rem; }
.site-footer h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-night-mute); margin-bottom: 16px; font-weight: 600; }
.site-footer a { color: var(--on-night); opacity: .82; font-size: 0.96rem; display: inline-block; padding: 5px 0; transition: opacity .2s, color .2s; }
.site-footer a:hover { opacity: 1; color: #FF8095; }
.foot-about { color: var(--on-night-mute); font-size: 0.96rem; max-width: 34ch; margin-top: 16px; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  color: var(--on-night-mute); font-size: 0.86rem; }
.foot-tricolor { display:flex; gap: 4px; align-items:center; }
.foot-tricolor i { width: 14px; height: 4px; border-radius: 2px; }
.foot-tricolor i:nth-child(1){ background: var(--red); }
.foot-tricolor i:nth-child(2){ background: #fff; }
.foot-tricolor i:nth-child(3){ background: var(--blue); }
@media (max-width: 860px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--night); color: #fff;
  padding: calc(var(--hdr) + 56px) 0 clamp(54px, 6vw, 88px);
}
.has-dark-hero .page-hero { margin-top: calc(-1 * var(--hdr)); }
.page-hero::before { content: ""; position: absolute; z-index: 0; width: 440px; height: 440px; border-radius: 50%;
  background: rgba(27,58,107,.5); filter: blur(95px); top: -170px; right: -90px; pointer-events: none; }
.page-hero::after { content: ""; position: absolute; z-index: 0; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(200,16,46,.15); filter: blur(95px); bottom: -170px; left: -70px; pointer-events: none; }
.page-hero > .wrap { position: relative; z-index: 1; }
.page-hero .display { max-width: 19ch; margin-top: 0.3em; color: #fff; }
.page-hero .lede { margin-top: 1.2em; max-width: 56ch; color: rgba(255,255,255,.82); }
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,.55); }
.crumbs a { color: rgba(255,255,255,.72); }
.crumbs a:hover { color: #FF8095; }

/* In-depth content blocks */
.prose p { color: var(--ink-soft); }
.prose p + p { margin-top: 1.1em; }
.prose h3 { margin-top: 2em; margin-bottom: 0.5em; }

.callout {
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: clamp(20px,3vw,32px);
}
.callout .h3 { margin-bottom: 8px; }

/* Outcome cards */
.outcome { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.outcome .n { font-family: var(--serif); font-size: 2.1rem; color: var(--red); line-height: 1; }
.outcome p { margin-top: 10px; color: var(--ink-soft); font-size: 0.95rem; }

/* Tag chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 7px 15px; background: var(--white); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 0.8em 0.9em; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,58,107,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-aside { background: var(--night); color: var(--on-night); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); }
.contact-aside h3 { color: var(--on-night); }
.contact-aside .row { display: flex; gap: 14px; align-items: start; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-aside .row:first-of-type { border-top: 0; }
.contact-aside .row svg { width: 22px; height: 22px; color: #FF8095; flex: none; margin-top: 2px; }
.contact-aside .row a, .contact-aside .row span { color: var(--on-night); opacity: .9; }
.contact-aside .lbl { font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-night-mute); display:block; margin-bottom: 2px; }

/* Logos / trust */
.trust { display: flex; flex-wrap: wrap; gap: clamp(24px,5vw,56px); align-items: center; justify-content: center; opacity: .8; }
.trust span { font-family: var(--serif); font-size: 1.15rem; color: var(--ink-mute); letter-spacing: .02em; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 40px 24px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.1rem,1.8vw,1.35rem); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 22px; font-size: 1.6rem; color: var(--red); transition: transform .3s var(--ease); font-family: var(--sans); line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 40px 26px 0; color: var(--ink-soft); max-width: 70ch; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.up { transform: translateY(40px); }
.reveal.pop { transform: translateY(26px) scale(.97); }
.reveal.left { transform: translateX(-36px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .10s; }
.reveal.d2 { transition-delay: .20s; }
.reveal.d3 { transition-delay: .30s; }
.reveal.d4 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.up, .reveal.pop, .reveal.left { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll-line i { animation: none; }
  .hero__bg { transform: none !important; }
}

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}.mt-3{margin-top:3rem}
.skip { position:absolute; left:-9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color:#fff; padding:10px 16px; border-radius:6px; z-index:100; }
