/* =========================================================
   OLZHAS BEKTENOV — OFFICIAL PORTAL
   Master Stylesheet — Premium Executive Government Identity
   ========================================================= */

:root {
  --c-ink: #0a1024;
  --c-ink-2: #0f1733;
  --c-deep: #0b2a59;
  --c-royal: #133b86;
  --c-blue: #1f55b5;
  --c-azure: #2f80ed;
  --c-gold: #c9a44c;
  --c-gold-soft: #e3c884;
  --c-gold-deep: #8a6e2a;
  --c-ivory: #f6f2e9;
  --c-paper: #f4f6fb;
  --c-silver: #c8d0dc;
  --c-slate: #5b6577;
  --c-line: rgba(255, 255, 255, 0.10);
  --c-line-dark: rgba(10, 16, 36, 0.12);
  --c-glass: rgba(255, 255, 255, 0.06);
  --c-glass-2: rgba(255, 255, 255, 0.10);

  --shadow-soft: 0 24px 60px -28px rgba(10, 16, 36, 0.45);
  --shadow-strong: 0 40px 80px -30px rgba(10, 16, 36, 0.6);

  --grad-royal: linear-gradient(135deg, #0a1024 0%, #0b2a59 50%, #133b86 100%);
  --grad-gold: linear-gradient(135deg, #8a6e2a 0%, #c9a44c 50%, #e3c884 100%);
  --grad-paper: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, rgba(201,164,76,0.18), transparent 60%),
               radial-gradient(1000px 500px at -10% 110%, rgba(31,85,181,0.35), transparent 60%),
               linear-gradient(135deg, #050918 0%, #0a1024 50%, #0b2a59 100%);

  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 9vw, 140px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--c-gold); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--c-gold); color: var(--c-ink); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}
.h-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.on-dark .h-eyebrow { color: var(--c-gold-soft); }

.h-display {
  font-size: clamp(44px, 6.5vw, 96px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.h-1 { font-size: clamp(36px, 4.6vw, 64px); }
.h-2 { font-size: clamp(28px, 3.2vw, 44px); }
.h-3 { font-size: clamp(22px, 2.2vw, 30px); }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--c-slate);
  max-width: 720px;
}
.on-dark .lead { color: rgba(246,242,233,0.78); }

.muted { color: var(--c-slate); }

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding: var(--section-y) 0; position: relative; }
.section.tight { padding: clamp(60px, 7vw, 100px) 0; }
.section.dark { background: var(--c-ink); color: var(--c-ivory); }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.section.paper { background: var(--grad-paper); }
.section.royal { background: var(--grad-royal); color: var(--c-ivory); }
.section.royal h1, .section.royal h2, .section.royal h3 { color: #fff; }
.section.ivory { background: var(--c-ivory); }

.split { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; gap: 80px; } }
.split.flip > :first-child { order: 2; }
@media (min-width: 900px) { .split.flip > :first-child { order: initial; } .split.flip > :last-child { order: -1; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .35s ease, color .35s ease;
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-gold {
  background: var(--grad-gold);
  color: #1a1409;
  box-shadow: 0 14px 30px -14px rgba(201,164,76,0.7);
}
.btn-gold:hover { color: #1a1409; box-shadow: 0 22px 40px -14px rgba(201,164,76,0.85); }

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.btn-ghost:hover { background: var(--c-ivory); color: var(--c-ink); }
.on-dark .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

.btn-dark {
  background: var(--c-ink);
  color: #fff;
}
.btn-dark:hover { background: var(--c-deep); color: #fff; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 16, 36, 0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  transition: background .35s ease;
}
.nav.scrolled { background: rgba(8, 12, 28, 0.92); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-serif);
  color: #fff;
}
.brand-mark {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f55b5, #0a1024);
  border: 1px solid rgba(201,164,76,0.5);
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 30%, rgba(201,164,76,0.45), transparent 60%);
}
.brand-mark span {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  color: var(--c-gold-soft);
  position: relative;
}
.brand-text { line-height: 1; }
.brand-text strong {
  display: block;
  font-weight: 600; font-size: 16px;
  letter-spacing: 0.02em;
}
.brand-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin-top: 4px;
}

.menu {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}
@media (min-width: 1024px) { .menu { display: flex; } }
.menu a {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.menu a:hover, .menu a.active { color: #fff; }
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }

.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  width: 18px; height: 1.5px;
  background: currentColor; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,28,0.96), rgba(8,12,28,0.99));
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: 100px var(--pad-x) 60px;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.7,0,.3,1);
  color: #fff;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-serif);
  font-size: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-close {
  position: absolute; top: 22px; right: var(--pad-x);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
}

/* =========================================================
   PASSCODE GATE
   ========================================================= */
.gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
  color: #fff;
}
.gate::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(31,85,181,0.45), transparent 70%),
    radial-gradient(40% 50% at 30% 20%, rgba(201,164,76,0.20), transparent 70%),
    radial-gradient(40% 50% at 80% 30%, rgba(31,85,181,0.30), transparent 70%);
  z-index: 0;
}
/* Skyline silhouette */
.gate .skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 240px;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
  display: block;
}
.gate::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent 39px, rgba(255,255,255,0.04) 40px),
    linear-gradient(90deg, transparent 0, transparent 39px, rgba(255,255,255,0.04) 40px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
.gate-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
}
.gate-orb.a { width: 460px; height: 460px; background: #1f55b5; top: -120px; left: -100px; }
.gate-orb.b { width: 380px; height: 380px; background: #c9a44c; bottom: -100px; right: -80px; }

.gate-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  background: rgba(10, 14, 32, 0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 56px 44px;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.7);
  text-align: center;
}
.gate-card .crest {
  width: 78px; height: 78px;
  margin: 0 auto 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #133b86, #0a1024);
  border: 1px solid rgba(201,164,76,0.4);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 700;
  color: var(--c-gold-soft);
  position: relative;
}
.gate-card .crest::after {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid rgba(201,164,76,0.25);
  border-radius: 16px;
}
.gate-card .gate-eyebrow {
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--c-gold-soft);
}
.gate-card h1 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(28px, 4vw, 38px);
  margin: 14px 0 8px;
  letter-spacing: -0.01em;
}
.gate-card p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 32px; }

.gate-form { display: flex; flex-direction: column; gap: 14px; }
.gate-input-wrap {
  position: relative;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 4px 6px 4px 18px;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.gate-input-wrap.error { border-color: #e76d6d; box-shadow: 0 0 0 6px rgba(231,109,109,0.15); animation: shake .45s; }
.gate-input-wrap.success { border-color: var(--c-gold-soft); box-shadow: 0 0 0 6px rgba(201,164,76,0.20); }
.gate-input-wrap:focus-within { border-color: var(--c-gold-soft); box-shadow: 0 0 0 6px rgba(201,164,76,0.18); }
.gate-input-wrap svg { width: 18px; height: 18px; color: var(--c-gold-soft); }
.gate-input-wrap input {
  flex: 1;
  padding: 18px 12px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.18em;
  font-family: var(--font-sans);
}
.gate-input-wrap input::placeholder { color: rgba(255,255,255,0.45); letter-spacing: 0.12em; }
.gate-toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
}
.gate-toggle:hover { color: #fff; background: rgba(255,255,255,0.08); }

.gate-submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

.gate-msg {
  min-height: 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #ffb4b4;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease;
}
.gate-msg.show { opacity: 1; transform: translateY(0); }
.gate-msg.success { color: var(--c-gold-soft); }

.gate-foot {
  margin-top: 28px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* =========================================================
   HERO — HOME
   ========================================================= */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--c-ivory);
  overflow: hidden;
  padding-top: clamp(60px, 7vw, 110px);
  padding-bottom: clamp(60px, 7vw, 110px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent 79px, rgba(255,255,255,0.04) 80px),
    linear-gradient(90deg, transparent 0, transparent 79px, rgba(255,255,255,0.04) 80px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 60px; } }

.hero-flag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--c-gold-soft);
  margin-bottom: 24px;
}
.hero-flag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold); box-shadow: 0 0 0 6px rgba(201,164,76,0.18); }

.hero h1 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.hero h1 .accent {
  display: inline-block;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}

.hero p.lead { color: rgba(246,242,233,0.78); margin-top: 24px; }

.hero-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 540px;
}
.hero-meta .m {
  padding: 18px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.hero-meta .m strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px; color: #fff;
  letter-spacing: -0.01em;
}
.hero-meta .m span {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(246,242,233,0.55);
  margin-top: 6px; display: block;
}

.hero-cta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero-portrait {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a1024;
}
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  transform: scale(1.02);
  transition: transform 1.6s ease;
}
.hero-portrait:hover img { transform: scale(1.06); }
.hero-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,16,36,0.6) 100%);
  pointer-events: none;
}
.hero-portrait .badge {
  position: absolute;
  bottom: 22px; left: 22px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(8, 12, 28, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--c-gold-soft);
}
.hero-portrait .crest-corner {
  position: absolute;
  top: 22px; right: 22px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  font-family: var(--font-serif);
  color: var(--c-gold-soft);
  font-weight: 700; font-size: 18px;
}

.hero-marquee {
  position: relative;
  margin-top: clamp(50px, 6vw, 90px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  z-index: 2;
}
.hero-marquee .track {
  display: flex; gap: 64px;
  padding: 18px 0;
  width: max-content;
  animation: scroll 38s linear infinite;
}
.hero-marquee .item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(246,242,233,0.7);
  white-space: nowrap;
}
.hero-marquee .item .star { color: var(--c-gold); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   PILLARS — HOME
   ========================================================= */
.pillars { background: var(--grad-paper); }
.pillars .head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 900px) { .pillars .head { grid-template-columns: 1fr 1fr; gap: 60px; } }

.pillar {
  position: relative;
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10,16,36,0.06);
  box-shadow: var(--shadow-soft);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -28px rgba(10,16,36,0.45); }
.pillar .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.pillar h3 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar p { color: var(--c-slate); font-size: 14.5px; }
.pillar::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s ease;
}
.pillar:hover::after { transform: scaleY(1); }

/* =========================================================
   STATS / COUNTERS
   ========================================================= */
.stats {
  background: var(--c-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats h1, .stats h2, .stats h3, .stats h4 { color: #fff; }
.stats .lead { color: rgba(246,242,233,0.78); }
.stats .h-eyebrow { color: var(--c-gold-soft); }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1000px 400px at 80% 0%, rgba(201,164,76,0.18), transparent 70%);
  pointer-events: none;
}
.stats-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1000px) { .stats-inner { grid-template-columns: 1fr 1fr; } }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.stat .count {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.4vw, 56px);
  letter-spacing: -0.02em;
  color: #fff;
}
.stat .count em {
  font-style: normal;
  font-size: 0.7em;
  color: var(--c-gold-soft);
  margin-left: 4px;
}
.stat .label {
  margin-top: 12px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =========================================================
   QUOTE / SIGNATURE STRIPES
   ========================================================= */
.quote-block {
  position: relative;
  padding: 60px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}
.quote-block::before {
  content: "“";
  position: absolute;
  top: -30px; left: 36px;
  font-family: var(--font-serif);
  font-size: 160px;
  color: var(--c-gold);
  line-height: 1;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.01em;
}
.quote-block .by {
  margin-top: 22px;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--c-gold-soft);
}

/* =========================================================
   PAGE HEROES (sub-pages)
   ========================================================= */
.page-hero {
  position: relative;
  background: var(--grad-royal);
  color: #fff;
  padding: clamp(80px, 8vw, 130px) 0 clamp(60px, 7vw, 100px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 380px at 90% 10%, rgba(201,164,76,0.22), transparent 70%),
    radial-gradient(900px 400px at 0% 100%, rgba(31,85,181,0.6), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent 59px, rgba(255,255,255,0.05) 60px),
    linear-gradient(90deg, transparent 0, transparent 59px, rgba(255,255,255,0.05) 60px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 2;
  display: grid; gap: 36px; grid-template-columns: 1fr; align-items: end;
}
@media (min-width: 900px) { .page-hero-inner { grid-template-columns: 1.3fr 1fr; gap: 80px; } }

.crumbs {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.crumbs .sep { color: var(--c-gold); }

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.4vw, 76px);
  letter-spacing: -0.025em;
  color: #fff;
  margin-top: 22px;
  line-height: 1.04;
}
.page-title .accent {
  display: inline-block;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic; font-weight: 500;
}

.page-hero-meta {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.page-hero-meta div strong {
  display: block;
  font-family: var(--font-serif);
  color: #fff;
  font-size: 24px;
}
.page-hero-meta div span {
  display: block;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.page-hero-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-strong);
}
.page-hero-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.page-hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,16,36,0.55) 100%);
}

/* =========================================================
   TIMELINE — ABOUT
   ========================================================= */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute; left: 7px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, var(--c-gold), rgba(201,164,76,0));
}
.t-item {
  position: relative;
  padding: 0 0 50px 30px;
}
.t-item:last-child { padding-bottom: 0; }
.t-item::before {
  content: "";
  position: absolute; left: -26px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 5px rgba(201,164,76,0.18);
}
.t-year {
  font-family: var(--font-serif);
  font-size: 15px; font-style: italic;
  color: var(--c-gold-deep);
  letter-spacing: 0.04em;
}
.t-title {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 6px 0 8px;
  color: var(--c-ink);
}
.t-body { color: var(--c-slate); font-size: 15px; max-width: 620px; }

/* =========================================================
   FEATURE CARDS (Governance / Integrity / Economy)
   ========================================================= */
.feature {
  position: relative;
  padding: 36px 28px;
  background: #fff;
  border: 1px solid rgba(10,16,36,0.06);
  border-radius: 18px;
  height: 100%;
  transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(201,164,76,0.4); }
.feature .icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-deep), var(--c-royal));
  color: var(--c-gold-soft);
  margin-bottom: 22px;
}
.feature .icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 22px; margin-bottom: 10px; }
.feature p { color: var(--c-slate); font-size: 14.5px; }
.feature .tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--c-gold-deep);
}

.feature.dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--c-ivory);
}
.feature.dark h3 { color: #fff; }
.feature.dark p { color: rgba(246,242,233,0.7); }
.feature.dark:hover { background: rgba(255,255,255,0.06); }

/* =========================================================
   SECTIONS / WIDE BANDS
   ========================================================= */
.banner-img {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(10,16,36,0.06);
}
.banner-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.banner-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,16,36,0.55), transparent 50%);
}
.banner-img .caption {
  position: absolute;
  left: 36px; bottom: 28px; right: 36px;
  color: #fff;
  display: flex; align-items: end; gap: 20px;
}
.banner-img .caption .t {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.01em;
  max-width: 70%;
}

/* Square portrait card */
.card-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
  background: #0a1024;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform 1s ease; }
.card-img:hover img { transform: scale(1.04); }

/* =========================================================
   GALLERY / LIGHTBOX
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; } }

.g-cell {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
  background: #0a1024;
  border: 1px solid rgba(10,16,36,0.06);
}
.g-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.g-cell:hover img { transform: scale(1.06); }
.g-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,16,36,0.55) 100%);
  opacity: 0; transition: opacity .4s ease;
}
.g-cell:hover::after { opacity: 1; }
.g-cell .meta {
  position: absolute;
  left: 18px; bottom: 14px; right: 18px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 16px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  z-index: 2;
}
.g-cell:hover .meta { transform: translateY(0); opacity: 1; }

.g-cell.tall { grid-row: span 2; }
.g-cell.wide { grid-column: span 2; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,8,20,0.92);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .25s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { top: 50%; left: 24px; right: auto; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 24px; transform: translateY(-50%); }

/* =========================================================
   NEWS
   ========================================================= */
.news-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.article {
  display: block;
  background: #fff;
  border: 1px solid rgba(10,16,36,0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease;
  height: 100%;
}
.article:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); color: inherit; }
.article .img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a1024;
}
.article .img img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 1.2s ease; }
.article:hover .img img { transform: scale(1.06); }
.article .body { padding: 28px; }
.article .cat {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--c-gold-deep);
}
.article h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 12px 0;
  letter-spacing: -0.01em;
}
.article p { color: var(--c-slate); font-size: 14.5px; }
.article .meta {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--c-slate);
  letter-spacing: 0.04em;
}
.article .meta .read {
  display: inline-flex; gap: 6px; align-items: center;
  color: var(--c-deep);
  font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px;
}

.article.feature-news {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .article.feature-news { grid-template-columns: 1.1fr 1fr; } }
.article.feature-news .img { aspect-ratio: auto; min-height: 320px; }
.article.feature-news .body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.article.feature-news h3 { font-size: clamp(26px, 3vw, 36px); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 60px; } }

.contact-card {
  background: #fff;
  border: 1px solid rgba(10,16,36,0.06);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.contact-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 22px;
  margin-top: 26px;
}
.contact-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(10,16,36,0.06);
}
.contact-list li:last-child { border: none; padding-bottom: 0; }
.contact-list .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-deep), var(--c-royal));
  color: var(--c-gold-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-list .ic svg { width: 18px; height: 18px; }
.contact-list h4 {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--c-slate);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-list a, .contact-list span {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--c-ink);
}

.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--c-slate); font-weight: 500;
}
.field input, .field textarea, .field select {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(10,16,36,0.12);
  border-radius: 12px;
  font-family: inherit; font-size: 15px;
  color: var(--c-ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 5px rgba(201,164,76,0.15);
}
.field textarea { min-height: 160px; resize: vertical; }

.map-card {
  margin-top: 24px;
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-deep) 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.map-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(201,164,76,0.25), transparent 70%),
    radial-gradient(500px 260px at 0% 100%, rgba(47,128,237,0.45), transparent 70%);
  pointer-events: none;
}
.map-card .grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(transparent 0, transparent 39px, rgba(255,255,255,0.06) 40px),
    linear-gradient(90deg, transparent 0, transparent 39px, rgba(255,255,255,0.06) 40px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.map-card .pin {
  position: relative; z-index: 2;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 8px rgba(201,164,76,0.18), 0 0 0 18px rgba(201,164,76,0.10);
  display: grid; place-items: center;
  color: #1a1409;
  font-family: var(--font-serif); font-weight: 700;
  margin-bottom: 22px;
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  position: relative;
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--grad-royal);
  color: #fff;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 360px at 90% 50%, rgba(201,164,76,0.2), transparent 70%);
}
.cta-inner {
  position: relative; z-index: 2;
  display: grid; gap: 30px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.3fr auto; } }
.cta-inner h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #050918;
  color: rgba(246,242,233,0.7);
  padding: clamp(60px, 7vw, 90px) 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }

.footer h4 {
  font-family: var(--font-sans);
  color: #fff;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer p, .footer a { font-size: 14.5px; line-height: 1.8; }
.footer a:hover { color: var(--c-gold-soft); }

.footer .brand { color: #fff; margin-bottom: 18px; }

.socials {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.85);
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.socials a:hover { background: var(--c-gold); border-color: var(--c-gold); color: #1a1409; transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: var(--c-gold-soft); }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   ANIMATIONS — REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* =========================================================
   GOVERNANCE / INTEGRITY / ECONOMY SPECIFIC
   ========================================================= */
.kpi-row {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .kpi-row { grid-template-columns: repeat(4, 1fr); } }
.kpi {
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(10,16,36,0.06);
}
.kpi .v {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.4vw, 46px);
  color: var(--c-deep);
  letter-spacing: -0.02em;
}
.kpi .v em { font-style: normal; color: var(--c-gold); font-size: 0.7em; margin-left: 4px; }
.kpi .l {
  margin-top: 8px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--c-slate);
}

.bar-chart {
  background: #fff;
  border: 1px solid rgba(10,16,36,0.06);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.bar-chart h3 { margin-bottom: 26px; font-size: 22px; }
.bar { margin-bottom: 22px; }
.bar:last-child { margin-bottom: 0; }
.bar .lab {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--c-slate);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.bar .lab b { color: var(--c-deep); font-weight: 600; font-family: var(--font-serif); font-size: 16px; }
.bar .track {
  height: 8px;
  background: #eef1f7;
  border-radius: 999px;
  overflow: hidden;
}
.bar .fill {
  height: 100%;
  background: var(--grad-gold);
  width: 0;
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(.2,.8,.2,1);
}

/* Pillar list (integrity) */
.principle-list {
  display: grid; gap: 0;
}
.principle {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 800px) { .principle { grid-template-columns: 100px 1fr 1.4fr; } }
.principle:last-child { border-bottom: 1px solid rgba(255,255,255,0.10); }
.principle .num {
  font-family: var(--font-serif);
  font-size: 36px; color: var(--c-gold);
  font-style: italic;
  letter-spacing: -0.02em;
}
.principle h3 {
  color: #fff; font-size: 24px; letter-spacing: -0.01em;
}
.principle p { color: rgba(246,242,233,0.7); font-size: 15px; }

/* Achievement chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* Strip image band — full-bleed parallax-ish */
.strip {
  position: relative;
  height: clamp(280px, 36vw, 480px);
  overflow: hidden;
}
.strip img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
}
.strip::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,8,20,0.45), rgba(5,8,20,0.65));
}
.strip .strip-text {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  padding: 40px;
}
.strip .strip-text h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  max-width: 800px;
  letter-spacing: -0.01em;
}
.strip .strip-text p { color: rgba(255,255,255,0.8); margin-top: 14px; max-width: 640px; }

/* =========================================================
   BIO MOSAIC (about)
   ========================================================= */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 110px;
  gap: 14px;
}
.mosaic .m {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a1024;
  border: 1px solid rgba(10,16,36,0.06);
}
.mosaic .m img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.mosaic .a { grid-column: span 2; grid-row: span 4; }
.mosaic .b { grid-column: span 2; grid-row: span 2; }
.mosaic .c { grid-column: span 1; grid-row: span 2; }
.mosaic .d { grid-column: span 1; grid-row: span 2; }

@media (max-width: 700px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .mosaic .a { grid-column: span 2; grid-row: span 3; }
  .mosaic .b { grid-column: span 2; grid-row: span 2; }
  .mosaic .c, .mosaic .d { grid-column: span 1; grid-row: span 2; }
}

/* =========================================================
   UTILITY
   ========================================================= */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mt-4 { margin-top: 48px; }
.mt-5 { margin-top: 64px; }
.mt-6 { margin-top: 80px; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 36px; }
.mb-4 { margin-bottom: 48px; }
.mb-5 { margin-bottom: 64px; }
.mxauto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.maxw { max-width: 800px; }
.maxw-sm { max-width: 640px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }

/* On-dark variants helper */
.on-dark, .on-dark p, .on-dark li { color: rgba(246,242,233,0.78); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
