/* =====================================================
   BOSSWAVE — Stylesheet
   Editorial / institutional aesthetic.
   ===================================================== */

:root {
  --ink: #0a1426;
  --ink-2: #101e36;
  --paper: #f4f1ea;
  --paper-2: #ece7da;
  --gold: #c89c4b;
  --gold-bright: #e3b96a;
  --rule: rgba(10, 20, 38, 0.18);
  --muted: #5a6478;
  --signal: #2d8f6f;
  --danger: #d56d6d;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 0 0, rgba(200, 156, 75, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(10, 20, 38, 0.04) 0%, transparent 50%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.18'/></svg>");
}

/* === TICKER === */
.ticker {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 10px 0;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  width: max-content;
}
.ticker-item { display: inline-flex; align-items: center; gap: 12px; }
.ticker-item .up { color: var(--signal); }
.ticker-item .down { color: var(--danger); }
.ticker-item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo-mark { width: 28px; height: 28px; position: relative; }
.logo-mark svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* === HERO === */
.hero {
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.8s ease both;
}
.hero-meta::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
h1.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  animation: fadeUp 0.8s 0.1s ease both;
}
h1.hero-title em { font-style: italic; font-weight: 400; color: var(--gold); }
h1.hero-title .underline {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
}
.hero-right { animation: fadeUp 0.8s 0.3s ease both; }
.hero-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-lede strong { font-weight: 500; }
.hero-actions { display: flex; gap: 16px; align-items: center; }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 28px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.hero-blueprint {
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to left, black, transparent);
  -webkit-mask-image: linear-gradient(to left, black, transparent);
}

/* === STATS BAR === */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 48px;
}
.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat { border-left: 1px solid rgba(255,255,255,0.15); padding-left: 24px; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-num sup { font-size: 24px; color: var(--paper); }
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.6);
}

/* === SECTION COMMONS === */
section { padding: 100px 48px; position: relative; }
.container { max-width: 1400px; margin: 0 auto; }
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 900px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 64px;
}

/* === CAPABILITIES === */
.capabilities { background: var(--paper); border-bottom: 1px solid var(--rule); }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.cap-card {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background 0.3s;
  position: relative;
  cursor: default;
}
.cap-card:hover { background: var(--paper-2); }
.cap-card:hover .cap-num { color: var(--gold); }
.cap-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  transition: color 0.3s;
}
.cap-icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--ink); }
.cap-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cap-desc { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* === TRACK RECORD === */
.track-record { background: var(--ink); color: var(--paper); }
.track-record .section-title { color: var(--paper); }
.track-record .section-sub { color: rgba(244, 241, 234, 0.7); }
.track-record .section-tag { color: var(--gold-bright); }
.track-record .section-tag::before { background: var(--gold-bright); }

.case-list { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,0.15); }
.case {
  display: grid;
  grid-template-columns: 120px 1.4fr 1fr 200px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: start;
  transition: padding 0.3s ease;
}
.case:hover { padding-left: 16px; }
.case:hover .case-arrow { transform: translateX(8px); opacity: 1; }

.case-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}
.case-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.case-title small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(244, 241, 234, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 400;
}
.case-desc { font-size: 14.5px; color: rgba(244, 241, 234, 0.75); line-height: 1.6; }
.case-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold-bright);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.case-meta .val {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--paper);
  font-weight: 400;
}
.case-arrow {
  display: inline-block;
  opacity: 0.4;
  transition: all 0.3s ease;
  margin-left: 8px;
}

/* === PROCESS === */
.process { background: var(--paper); overflow: hidden; }
.process-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.process-visual {
  position: sticky;
  top: 120px;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  padding: 32px;
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.8;
}
.process-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,156,75,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,156,75,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.process-visual-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }
.pv-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
  margin-bottom: 16px;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
}
.pv-line { display: flex; gap: 16px; opacity: 0.85; }
.pv-line .k { color: var(--gold-bright); min-width: 70px; }
.pv-line .v { color: var(--paper); }
.pv-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 12px 0; }
.pv-block-graphic {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}
.pv-block {
  aspect-ratio: 1;
  background: rgba(227, 185, 106, 0.15);
  border: 1px solid rgba(227, 185, 106, 0.3);
}
.pv-block.active {
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.process-steps { display: flex; flex-direction: column; gap: 48px; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* === OFFICES === */
.offices { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.office-card {
  background: var(--paper);
  padding: 32px 24px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,20,38,0.08);
}
.office-card.office-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  position: relative;
}
.office-card.office-featured::after {
  content: 'NEW';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  font-weight: 500;
}
.office-flag { font-size: 28px; margin-bottom: 12px; }
.office-city {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.office-country {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.office-featured .office-country { color: rgba(244,241,234,0.6); }
.office-address {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.office-featured .office-address { color: rgba(244,241,234,0.85); }
.office-phone {
  display: inline-block;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.office-phone:hover { text-decoration: underline; }
.office-featured .office-phone { color: var(--gold-bright); }
.office-reg {
  margin-top: auto;
  padding-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  border-top: 1px solid var(--rule);
}
.office-featured .office-reg {
  color: rgba(244,241,234,0.5);
  border-top-color: rgba(255,255,255,0.1);
}

/* Kenya spotlight */
.kenya-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.kenya-spotlight-content { padding: 48px; }
.kenya-spotlight h3 {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 8px 0 24px;
  line-height: 1.1;
}
.kenya-spotlight p {
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 32px;
  font-size: 15.5px;
}
.kenya-spotlight strong { color: var(--ink); font-weight: 500; }
.kenya-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.kenya-detail { display: flex; flex-direction: column; gap: 8px; }
.kenya-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.kenya-value {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.kenya-phone {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 15px !important;
  color: var(--gold) !important;
  font-weight: 500 !important;
}
.kenya-phone:hover { text-decoration: underline; }
.kenya-map {
  min-height: 420px;
  background: var(--ink);
  position: relative;
}
.kenya-map iframe { display: block; filter: grayscale(0.2) contrast(1.05); }

/* === TRUST === */
.trust {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px 48px;
}
.trust-header { text-align: center; margin-bottom: 48px; }
.trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-logo {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.3s;
  letter-spacing: -0.01em;
  border-left: 1px solid var(--rule);
  padding-left: 24px;
}
.trust-logo:first-child { border-left: none; }
.trust-logo:hover { opacity: 1; }
.trust-logo small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

/* === CTA === */
.cta {
  background: var(--paper);
  text-align: center;
  padding: 140px 48px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.cta-inner { position: relative; z-index: 2; }
.cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 32px;
}
.cta h2 em { color: var(--gold); font-style: italic; }
.cta p {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 40px;
}

/* === CONTACT PAGE === */
.contact-page {
  padding: 80px 48px 120px;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-offices {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-office h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-office p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.contact-office a { color: var(--gold); text-decoration: none; font-family: 'JetBrains Mono', monospace; }
.contact-office a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-row input, .form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus {
  border-bottom-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.contact-form button {
  align-self: flex-start;
  margin-top: 16px;
}
.form-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.form-status.success { color: var(--signal); }
.form-status.error { color: var(--danger); }

/* === FOOTER === */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 48px 32px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--paper); margin-bottom: 16px; }
.footer-brand p {
  color: rgba(244, 241, 234, 0.5);
  font-size: 13px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(244, 241, 234, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(244, 241, 234, 0.4);
  letter-spacing: 0.05em;
}

/* === REVEAL === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .kenya-spotlight { grid-template-columns: 1fr; }
  .kenya-map { min-height: 320px; }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section, .hero, .stats { padding: 64px 24px; }
  .hero-grid, .process-stack, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cap-grid { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; gap: 12px; }
  .case-meta { text-align: left; align-items: flex-start; }
  .trust-logos { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-logo { border-left: none; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .process-visual { position: static; }
  .offices-grid { grid-template-columns: 1fr; }
  .kenya-details { grid-template-columns: 1fr; }
  .kenya-spotlight-content { padding: 32px 24px; }
  .contact-offices { grid-template-columns: 1fr; }
}
