/* ============================================================
   JOI Consulting — Kazakhstan & Central Asia
   Design system
   Palette derived from the JOI Consulting Group brand tokens:
   navy hsl(213 68% 12%) · bronze hsl(25 29% 61%) · warm grey hsl(26 41% 97%)
   ============================================================ */

:root {
  --navy-900: #0a1d35;
  --navy-800: #102844;
  --navy-700: #1b3a55;
  --navy-600: #2b4c69;

  --bronze: #b8967e;
  --bronze-mid: #a37f66;
  --bronze-deep: #82624b; /* AA on white */
  --bronze-soft: #e8dcd2;

  --cream: #faf6f3;
  --cream-2: #f3ece6;
  --line: #e4dbd3;
  --line-dark: rgba(184, 150, 126, 0.28);

  --ink: #0a1d35;
  --ink-70: #445468;
  --ink-55: #5c6b7d;
  --on-dark: #f4f1ee;
  --on-dark-70: #b9c3cf;

  --white: #ffffff;

  --maxw: 1220px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --sec-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 2px;

  --f-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --t: 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.65;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.14; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

::selection { background: var(--bronze); color: var(--navy-900); }

:focus-visible {
  outline: 2px solid var(--bronze-deep);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--navy-900); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 0.75rem 1.25rem;
}
.skip:focus { left: 0; }

/* ---------- typography ---------- */
.display { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.015em; }
.h1 { font-family: var(--f-display); font-weight: 500; font-size: clamp(2.55rem, 6.2vw, 5rem); line-height: 1.04; letter-spacing: -0.02em; }
.h2 { font-family: var(--f-display); font-weight: 500; font-size: clamp(2rem, 3.9vw, 3.15rem); line-height: 1.1; letter-spacing: -0.015em; }
.h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.22; }
.h4 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.005em; line-height: 1.35; }

.eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bronze-deep); margin: 0 0 1.25rem;
}
.section--dark .eyebrow { color: var(--bronze); }

.lead { font-size: clamp(1.0625rem, 1.35vw, 1.1875rem); line-height: 1.68; color: var(--ink-70); }
.section--dark .lead { color: var(--on-dark-70); }
.muted { color: var(--ink-55); }
.small { font-size: 0.875rem; line-height: 1.6; }
.xs { font-size: 0.8125rem; line-height: 1.6; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.section--dark .rule { background: var(--line-dark); }

.sec-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.sec-head p.lead { margin-top: 1.25rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--f-sans); font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 0.95rem 1.75rem; border: 1px solid transparent; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy-900); color: #fff; }
.btn--primary:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy-900); background: var(--cream); }
.section--dark .btn--primary { background: var(--bronze); color: var(--navy-900); }
.section--dark .btn--primary:hover { background: #c9a892; }
.section--dark .btn--ghost { color: var(--on-dark); border-color: rgba(244, 241, 238, 0.28); }
.section--dark .btn--ghost:hover { border-color: var(--bronze); background: rgba(184, 150, 126, 0.1); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.875rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.9375rem; font-weight: 500; text-decoration: none;
  color: var(--bronze-deep); border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color var(--t), gap var(--t), color var(--t);
}
.arrow-link:hover { border-color: currentColor; gap: 0.85rem; }
.section--dark .arrow-link { color: var(--bronze); }
.arrow-link svg { flex: none; }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; height: 74px; }
.header.is-solid, body:not(.has-hero) .header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
  text-decoration: none; margin-right: auto; flex: none; white-space: nowrap; line-height: 1.1;
}
.brand__mark { font-family: var(--f-display); font-size: 1.4rem; letter-spacing: 0.02em; font-weight: 600; }
.brand__sub { font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-deep); white-space: nowrap; }
body.has-hero .header:not(.is-solid) .brand { color: #fff; }
body.has-hero .header:not(.is-solid) .brand__sub { color: var(--bronze); }

.nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.3vw, 1.5rem); flex: none; }
.nav a {
  font-size: 0.9rem; text-decoration: none; color: var(--ink-70); white-space: nowrap;
  padding: 0.35rem 0; border-bottom: 1px solid transparent; transition: color var(--t), border-color var(--t);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--bronze); }
body.has-hero .header:not(.is-solid) .nav a { color: rgba(244, 241, 238, 0.8); }
body.has-hero .header:not(.is-solid) .nav a:hover { color: #fff; }

.lang { display: flex; align-items: center; gap: 0.15rem; }
.lang a {
  font-size: 0.75rem; letter-spacing: 0.08em; text-decoration: none; padding: 0.3rem 0.45rem;
  color: var(--ink-55); border-radius: var(--radius); transition: color var(--t), background var(--t);
}
.lang a:hover { color: var(--ink); }
.lang a[aria-current="true"] { color: var(--ink); font-weight: 600; }
body.has-hero .header:not(.is-solid) .lang a { color: rgba(244, 241, 238, 0.65); }
body.has-hero .header:not(.is-solid) .lang a[aria-current="true"],
body.has-hero .header:not(.is-solid) .lang a:hover { color: #fff; }
.lang__sep { color: var(--line); font-size: 0.7rem; }

.header .btn { padding: 0.7rem 1.15rem; font-size: 0.85rem; white-space: nowrap; }
.header__inner { gap: clamp(0.9rem, 2vw, 1.5rem); }
body.has-hero .header:not(.is-solid) .btn--primary { background: var(--bronze); color: var(--navy-900); }

.burger {
  display: none; width: 44px; height: 44px; margin-right: -10px; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; color: inherit;
}
.burger span { display: block; width: 22px; height: 1px; background: currentColor; position: relative; transition: background var(--t); }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: currentColor; transition: transform var(--t), top var(--t);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }
body.has-hero .header:not(.is-solid) .burger { color: #fff; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99; background: var(--navy-900); color: var(--on-dark);
  transform: translateY(-100%); visibility: hidden; transition: transform var(--t), visibility var(--t);
  display: flex; flex-direction: column; padding: 96px var(--gutter) 2rem; overflow-y: auto;
}
body.menu-open .drawer { transform: translateY(0); visibility: visible; }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: var(--f-display); font-size: 1.75rem; text-decoration: none; color: #fff;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer .drawer__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 1rem; }
.drawer .lang a { color: rgba(244, 241, 238, 0.7); font-size: 0.875rem; }
.drawer .lang a[aria-current="true"] { color: #fff; }

/* dark-ground buttons outside .section--dark */
.hero .btn--primary { background: var(--bronze); color: var(--navy-900); }
.hero .btn--primary:hover { background: #c9a892; }
.hero .btn--ghost { color: var(--on-dark); border-color: rgba(244, 241, 238, 0.3); }
.hero .btn--ghost:hover { border-color: var(--bronze); background: rgba(184, 150, 126, 0.12); }

/* ---------- hero ---------- */
.hero {
  position: relative; background: var(--navy-900); color: var(--on-dark);
  min-height: min(92vh, 900px); display: flex; align-items: flex-end;
  padding-top: 140px; padding-bottom: clamp(2.5rem, 5vw, 4rem); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 82% 12%, rgba(184, 150, 126, 0.22) 0%, rgba(10, 29, 53, 0) 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(43, 76, 105, 0.5) 0%, rgba(10, 29, 53, 0) 70%);
}
.hero__grid {
  position: absolute; inset: 0; opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(184, 150, 126, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(184, 150, 126, 0.06) 1px, transparent 1px);
  background-size: clamp(80px, 12vw, 160px) clamp(80px, 12vw, 160px);
  mask-image: radial-gradient(120% 100% at 70% 20%, #000 20%, transparent 78%);
}
.hero .wrap { position: relative; width: 100%; }
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__mark { display: flex; justify-content: center; align-items: center; position: relative; }
.hero__mark::before {
  content: ""; position: absolute; width: 118%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 156, 70, 0.20) 0%, rgba(10, 29, 53, 0) 68%);
}
.hero__mark img {
  position: relative; width: min(100%, 400px); height: auto;
  filter: drop-shadow(0 26px 55px rgba(0, 0, 0, 0.45));
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze);
}
.hero__eyebrow::before { content: ""; width: 2.5rem; height: 1px; background: var(--bronze); }
.hero h1 { color: #fff; max-width: 17ch; }
.hero__lead { margin-top: clamp(1.5rem, 2.6vw, 2rem); max-width: 46ch; color: var(--on-dark-70); font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); line-height: 1.68; }
.hero .btn-row { margin-top: clamp(2rem, 3.5vw, 2.75rem); }
.hero__foot {
  margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 1.5rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; align-items: baseline; justify-content: space-between;
}
.hero__geo { display: flex; flex-wrap: wrap; gap: 0.5rem 1.35rem; list-style: none; }
.hero__geo li { font-size: 0.8125rem; letter-spacing: 0.06em; color: var(--on-dark-70); text-transform: uppercase; }
.hero__trust { font-size: 0.8125rem; color: rgba(185, 195, 207, 0.75); max-width: 46ch; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.2vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.split--article { grid-template-columns: minmax(0, 1.62fr) minmax(0, 0.85fr); }
.split--aside { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.62fr); }

.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  padding: clamp(1.6rem, 2.4vw, 2.15rem); display: flex; flex-direction: column; gap: 0.85rem;
  text-decoration: none; color: inherit; border-radius: var(--radius);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
a.card:hover { border-color: var(--bronze); transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(10, 29, 53, 0.35); }
.card__num { font-family: var(--f-display); font-size: 0.95rem; color: var(--bronze-deep); letter-spacing: 0.06em; }
.card p { color: var(--ink-70); font-size: 0.9375rem; }
.card__cta { margin-top: auto; padding-top: 0.85rem; color: var(--bronze-deep); font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.5rem; }
a.card:hover .card__cta { gap: 0.8rem; }
.section--cream .card { background: var(--white); }
.section--dark .card { background: rgba(255, 255, 255, 0.035); border-color: var(--line-dark); }
.section--dark .card p { color: var(--on-dark-70); }

/* numbered list blocks */
.numbers { list-style: none; display: grid; gap: 0; }
.numbers li { display: grid; grid-template-columns: 4.25rem minmax(0, 1fr); gap: clamp(1rem, 2vw, 2rem); padding: clamp(1.4rem, 2.4vw, 1.9rem) 0; border-top: 1px solid var(--line); }
.numbers li:last-child { border-bottom: 1px solid var(--line); }
.section--dark .numbers li { border-color: var(--line-dark); }
.numbers .n { font-family: var(--f-display); font-size: 1.1rem; color: var(--bronze-deep); letter-spacing: 0.08em; padding-top: 0.15rem; }
.section--dark .numbers .n { color: var(--bronze); }
.numbers h3 { margin-bottom: 0.45rem; font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
.numbers p { color: var(--ink-70); font-size: 0.9375rem; max-width: 62ch; }
.section--dark .numbers p { color: var(--on-dark-70); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.stats div { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.stats .v { font-family: var(--f-display); font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; letter-spacing: -0.01em; }
.stats .l { font-size: 0.8125rem; color: var(--ink-55); margin-top: 0.5rem; }

/* pillars */
.pillars { list-style: none; display: grid; gap: 1.75rem; }
.pillars li { padding-left: 1.5rem; border-left: 1px solid var(--bronze-soft); }
.pillars h3 { font-family: var(--f-sans); font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.pillars p { font-size: 0.9375rem; color: var(--ink-70); }

.quote {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0; padding: clamp(1.75rem, 3vw, 2.5rem) 0 0; border-top: 1px solid var(--line);
}
.quote blockquote { margin: 0; font-family: var(--f-display); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.3; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-deep); }

/* tag list */
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags li {
  font-size: 0.8125rem; padding: 0.45rem 0.9rem; border: 1px solid var(--line);
  border-radius: 999px; color: var(--ink-70); background: var(--white);
}
.section--dark .tags li { border-color: var(--line-dark); color: var(--on-dark-70); background: transparent; }

/* checklist */
.checks { list-style: none; display: grid; gap: 0.85rem; }
.checks li { display: grid; grid-template-columns: 1.4rem minmax(0, 1fr); gap: 0.65rem; font-size: 0.9375rem; color: var(--ink-70); }
.checks li::before { content: ""; width: 7px; height: 7px; margin-top: 0.62rem; background: var(--bronze); border-radius: 50%; }
.section--dark .checks li { color: var(--on-dark-70); }

/* mandate cards */
.mandate { border: 1px solid var(--line); padding: clamp(1.6rem, 2.4vw, 2.15rem); background: var(--white); display: flex; flex-direction: column; gap: 0.9rem; }
.mandate__geo { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze-deep); }
.mandate p { font-size: 0.9375rem; color: var(--ink-70); }
.mandate__role { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.mandate__role span { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 0.35rem; }
.mandate__role strong { font-weight: 500; font-size: 0.875rem; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.person { display: flex; flex-direction: column; }
.person__ph {
  position: relative; width: clamp(150px, 15vw, 200px); aspect-ratio: 1; border-radius: 50%;
  background: var(--cream-2); overflow: hidden; margin-bottom: 1.5rem;
  box-shadow: 0 0 0 1px var(--line), 0 14px 34px rgba(10, 29, 53, 0.10);
}
.person__ph::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  box-shadow: inset 0 0 0 3px rgba(184, 150, 126, 0.30);
}
.person__ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.96) contrast(1.02); transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1); }
.person:hover .person__ph img { transform: scale(1.04); }
.person__ph--empty { display: grid; place-items: center; font-family: var(--f-display); font-size: 2.5rem; color: var(--bronze); background: var(--navy-900); }
.person__role { font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-deep); margin-bottom: 0.55rem; }
.person h3 { margin-bottom: 0.5rem; }
.person__place { font-size: 0.8125rem; color: var(--ink-55); margin-bottom: 0.9rem; }
.person__bio { font-size: 0.9375rem; color: var(--ink-70); }
.person__spec { margin-top: 1rem; }
.person__links { margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: grid; gap: 0.5rem; }
.person__links a { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; text-decoration: none; color: var(--ink); transition: color var(--t); }
.person__links a:hover { color: var(--bronze-deep); }
.person__links svg { flex: none; color: var(--bronze-deep); }

/* contacts */
.contact-card { border: 1px solid var(--line-dark); padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row { display: grid; gap: 0.3rem; }
.contact-row span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze); }
.contact-row a, .contact-row p { font-size: 1.0625rem; text-decoration: none; color: var(--white); }
.contact-row a:hover { color: var(--bronze); }
.contact-row address { font-style: normal; font-size: 1.0625rem; color: var(--white); line-height: 1.5; }

/* faq */
.faq { border-top: 1px solid var(--line); }
.section--dark .faq { border-color: var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line); }
.section--dark .faq details { border-color: var(--line-dark); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.35rem 3rem 1.35rem 0; position: relative;
  font-size: clamp(1rem, 1.4vw, 1.0625rem); font-weight: 500; transition: color var(--t);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--bronze-deep); }
.faq summary::after {
  content: ""; position: absolute; right: 0.5rem; top: 1.75rem; width: 11px; height: 11px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg); transition: transform var(--t); opacity: 0.6;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .answer { padding: 0 3rem 1.6rem 0; color: var(--ink-70); font-size: 0.9375rem; max-width: 72ch; }
.section--dark .faq .answer { color: var(--on-dark-70); }

/* breadcrumbs + article pages */
.crumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; font-size: 0.8125rem; color: var(--ink-55); padding-top: 118px; }
.crumbs a { text-decoration: none; color: var(--ink-55); }
.crumbs a:hover { color: var(--bronze-deep); }
.crumbs span[aria-hidden] { opacity: 0.5; }

.page-head { padding-block: clamp(2rem, 4vw, 3.25rem) clamp(2.5rem, 5vw, 4rem); }
.page-head h1 { max-width: 24ch; }
.page-head .lead { margin-top: 1.5rem; max-width: 52rem; }

.answer-box {
  background: var(--cream); border-left: 2px solid var(--bronze); padding: clamp(1.5rem, 2.6vw, 2.15rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.answer-box .eyebrow { margin-bottom: 0.8rem; }
.answer-box p { font-size: clamp(1rem, 1.35vw, 1.0938rem); line-height: 1.66; }

.prose h2 { margin-top: clamp(2.75rem, 4.5vw, 4rem); margin-bottom: 1.25rem; font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.6rem; font-family: var(--f-sans); font-size: 1.0625rem; font-weight: 600; }
.prose .numbers h3 { margin-top: 0; }
.prose p + p { margin-top: 1rem; }
.prose p { color: var(--ink-70); max-width: 68ch; }
.prose ul { margin-top: 0.5rem; }

.side { position: sticky; top: 100px; display: grid; gap: 1.75rem; }
.side-box { border: 1px solid var(--line); padding: 1.6rem; background: var(--cream); }
.side-box h3 { font-family: var(--f-sans); font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.9rem; }
.side-box ul { list-style: none; display: grid; gap: 0.6rem; }
.side-box li a, .side-box p a { font-size: 0.9rem; text-decoration: none; color: var(--ink-70); display: inline-flex; gap: 0.4rem; }
.side-box .btn { color: #fff; }
.side-box .btn:hover { color: #fff; }
.side-box li a:hover { color: var(--bronze-deep); }

.source-note { margin-top: clamp(2.5rem, 4vw, 3.5rem); padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: 0.8125rem; color: var(--ink-55); max-width: 70ch; }
.source-note a { color: var(--bronze-deep); }

.kv { list-style: none; display: grid; gap: 0; }
.kv li { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: 1.5rem; padding: 0.95rem 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.kv li span { color: var(--ink-55); }

/* CTA band */
.cta-band { background: var(--navy-900); color: var(--on-dark); }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band .lead { margin-top: 1.35rem; max-width: 48ch; }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: end; }

/* footer */
.footer { background: var(--navy-900); color: var(--on-dark-70); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; border-top: 1px solid var(--line-dark); }
.footer a { color: var(--on-dark-70); text-decoration: none; transition: color var(--t); }
.footer a:hover { color: var(--bronze); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3.5rem); }
.footer__brand .brand__mark { color: #fff; font-size: 1.6rem; }
.footer__brand p { margin-top: 1.1rem; font-size: 0.875rem; max-width: 34ch; }
.footer h3 { font-family: var(--f-sans); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze); margin-bottom: 1.1rem; font-weight: 500; }
.footer ul { list-style: none; display: grid; gap: 0.65rem; font-size: 0.875rem; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.75rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; font-size: 0.8125rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  padding: 0.65rem var(--gutter) calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(10, 29, 53, 0.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line-dark);
  transform: translateY(110%); transition: transform var(--t);
}
.sticky-cta.is-on { transform: translateY(0); }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; padding: 0.85rem; background: var(--bronze); color: var(--navy-900); text-decoration: none; font-size: 0.9375rem; font-weight: 500; border-radius: var(--radius); }

/* reveal animation */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, a.card:hover, .person:hover .person__ph img { transform: none; }
}

.footer__logo { width: 46px; height: 46px; display: block; margin-bottom: 1rem; opacity: 0.9; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1080px) {
  .split--article, .split--aside { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 1080px) {
  .nav, .header .btn, .header .lang { display: none; }
  .burger { display: inline-flex; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .hero__mark { order: -1; justify-content: flex-start; }
  .hero__mark::before { width: 260px; }
  .hero__mark img { width: 200px; }
  .split, .cta-inner { grid-template-columns: minmax(0, 1fr); }
  .cta-inner { align-items: start; }
  .side { position: static; }
  .sticky-cta { display: block; }
  body { padding-bottom: 74px; }
}
@media (max-width: 720px) {
  .grid--2, .grid--3, .grid--4, .team-grid { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
  .numbers li { grid-template-columns: 2.75rem minmax(0, 1fr); gap: 1rem; }
  .kv li { grid-template-columns: minmax(0, 1fr); gap: 0.25rem; }
  .hero { min-height: auto; padding-top: 124px; }
  .hero h1 { max-width: 100%; }
  .hero__mark img { width: 168px; }
  .btn-row .btn { width: 100%; }
  .hero__foot { flex-direction: column; }
  .crumbs { padding-top: 100px; }
  .person__ph { width: 156px; }
}


@media (max-width: 430px) {
  .brand__sub { display: none; }
}

@media print {
  .header, .drawer, .sticky-cta, .btn { display: none !important; }
  body { color: #000; }
}
