@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --blue:       #003F87;
  --blue-deep:  #00265a;
  --blue-mid:   #1a5fa8;
  --red:        #D21034;
  --red-deep:   #8b0a21;
  --gold:       #E8B84B;
  --gold-light: #F5D07A;
  --gold-pale:  #FDF3D9;
  --navy:       #050e1f;
  --cream:      #FAF8F3;
  --cream-dark: #F0EBE0;
  --text:       #18181b;
  --text-muted: #3d3d50;
  --white:      #ffffff;
  --border:     rgba(0,0,0,0.10);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.18);
  --radius:     6px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --max-w:      1140px;
  --logo-h:     58px;
  --nav-h:      58px;
  --header-h:   119px; /* logo banner + nav */
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.75;
  color: var(--text); background: var(--cream);
  padding-top: var(--header-h);
}

/* ═══════════════════════════════════════
   GRADIENT LOGO TEXT DEFINITION
═══════════════════════════════════════ */
.logo-haiti {
  background: linear-gradient(90deg, #ff4444 0%, #ff0000 40%, #cc0022 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-speaks {
  background: linear-gradient(90deg, #1a6fd4 0%, #0055cc 40%, #003F87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;
}
/* Fallback for nav (small size) */
.logo-haiti-sm {
  color: #ff3333;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.logo-speaks-sm {
  color: #1a6fd4;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   FULL-WIDTH LOGO BANNER (Concept B)
═══════════════════════════════════════ */
.site-logo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--logo-h);
  z-index: 300;
  display: flex;
  overflow: hidden;
  background: #ffffff;
}

/* LEFT HALF — deep navy/blue (Haiti written in red here) */
.banner-blue {
  flex: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1.5rem 0 1.25rem;
  position: relative;
  gap: 1rem;
  overflow: hidden;
}
/* RIGHT HALF — deep red (Speaks written in blue here) */
.banner-red {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 2.5rem 0 2.5rem;
  position: relative;
}

/* Gold vertical divider rule — the Concept B signature */
.banner-divider {
  width: 1px;
  background: #e5e5e5;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}
/* HS monogram ghost on divider */
.banner-divider::after { display: none; }

/* Decorative circles on blue side */
.banner-blue::before {
  content: '';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.12);
}
.banner-blue::after {
  content: '';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.10);
}

/* Logo text inside banner */
.banner-wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.banner-haiti {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(90deg, #ff6666 0%, #ff2222 50%, #ee0011 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.banner-speaks {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 8px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(90deg, #4499ff 0%, #1a6fd4 50%, #003F87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 4px;
}

/* Tagline on the right side */
.banner-tagline {
  margin-left: auto;
  text-align: right;
}
.banner-tagline .bt-url {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #444;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
  text-transform: lowercase;
}
.banner-tagline .bt-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #888;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

/* Gold rule underneath banner */
.banner-gold-rule {
  position: fixed;
  top: var(--logo-h);
  left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #003F87 0%, #003F87 33%, #E8B84B 33%, #E8B84B 66%, #D21034 66%, #D21034 100%);
  z-index: 299;
}

/* ═══════════════════════════════════════
   NAV — below logo banner
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: calc(var(--logo-h) + 4px);
  left: 0; right: 0;
  z-index: 298;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2rem; gap: 0.25rem;
  background: rgba(5,14,31,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,63,135,0.25);
}
nav.scrolled { background: rgba(5,14,31,1); }

/* Small logo in nav for brand reinforcement */
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-right: auto; flex-shrink: 0;
}
.nav-flag-wrap {
  width: 28px; height: 18px; border-radius: 3px;
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.2);
}
.nav-flag-wrap .fb { background: #003F87; flex: 1; }
.nav-flag-wrap .fr { background: #D21034; flex: 1; }
.nav-brand-text {
  font-size: 1.1rem; line-height: 1; display: flex; align-items: baseline; gap: 2px;
}

.nav-links { display: flex; gap: 0; list-style: none; align-items: center; flex-wrap: wrap; }
.nav-links a {
  display: block; padding: 0.38rem 0.72rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none; font-size: 14px; font-weight: 500;
  border-radius: var(--radius); transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta-btn {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 600 !important; border-radius: 24px !important;
  padding: 0.42rem 1.1rem !important; margin-left: 0.5rem;
  font-size: 14px !important;
}
.nav-cta-btn:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none; background: none;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 6px;
  padding: 5px 9px; cursor: pointer; color: white;
  font-size: 1rem; margin-left: auto;
}

/* ═══════════════════════════════════════
   PARALLAX HERO SYSTEM — TALLER
═══════════════════════════════════════ */
.parallax-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -15%;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  will-change: transform;
  z-index: 0;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,14,31,0.82) 0%,
    rgba(0,38,90,0.70) 40%,
    rgba(210,16,52,0.35) 100%
  );
}
.parallax-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,14,31,0.90) 0%, transparent 60%);
}
.parallax-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 7rem 2.5rem 6rem;
}

/* Page sub-hero — also taller */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.page-hero .parallax-bg { background-attachment: fixed; }
.page-hero .parallax-overlay {
  background: linear-gradient(
    135deg,
    rgba(5,14,31,0.90) 0%,
    rgba(0,38,90,0.78) 50%,
    rgba(210,16,52,0.45) 100%
  );
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 6rem 2.5rem 5rem;
  width: 100%;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: var(--font-mono);
  animation: bounce 2s infinite;
}
.scroll-indicator::after { content: '↓'; font-size: 1.2rem; color: var(--gold); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════
   HERO TYPOGRAPHY
═══════════════════════════════════════ */
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 17px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem; font-weight: 600;
}
.hero-kicker::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900; line-height: 1.06;
  color: var(--white); margin-bottom: 1.75rem;
  max-width: 820px; letter-spacing: -0.02em;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-lead {
  font-size: 1.25rem; color: rgba(255,255,255,0.95);
  max-width: 600px; margin-bottom: 2.75rem; line-height: 1.80;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.breadcrumb {
  font-size: 15px; color: rgba(255,255,255,0.80);
  margin-bottom: 1.5rem; font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.9rem 2.2rem; font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; border-radius: 40px;
  text-decoration: none; transition: all 0.25s;
  cursor: pointer; border: 2px solid transparent; letter-spacing: 0.02em;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(232,184,75,0.40); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--blue-deep); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-deep); transform: translateY(-3px); }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 16px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem; font-weight: 600;
}
.section-kicker::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 900; line-height: 1.12;
  color: var(--navy); margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--gold); font-style: italic; }
.section-lead {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; line-height: 1.78;
}
.section-lead.light { color: rgba(255,255,255,0.88); max-width: 600px; }

/* ═══════════════════════════════════════
   FLAG ACCENT BAR
═══════════════════════════════════════ */
.flag-bar { height: 5px; display: flex; }
.flag-bar .fb { flex:1; background: var(--blue); }
.flag-bar .fr { flex:1; background: var(--red); }

/* ═══════════════════════════════════════
   STAT BAND
═══════════════════════════════════════ */
.stat-band {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--navy) 60%, var(--red-deep) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.stat-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  );
}
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
}
.stat-item { background: rgba(255,255,255,0.04); padding: 2.5rem 2rem; text-align: center; transition: background 0.25s; }
.stat-item:hover { background: rgba(232,184,75,0.10); }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.03em;
}
.stat-num sup { font-size: 1.6rem; vertical-align: super; }
.stat-label { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; line-height: 1.4; }

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.3s; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--blue), var(--red));
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,63,135,0.25);
}
.card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3; }
.card p { color: var(--text-muted); font-size: 15px; line-height: 1.72; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: 15px; text-decoration: none; margin-top: 1.25rem; transition: gap 0.2s; }
.card-link:hover { gap: 10px; }

/* ═══════════════════════════════════════
   FINANCIAL / MONEY CARDS
═══════════════════════════════════════ */
.money-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.25rem; }
.money-card { border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden; transition: transform 0.3s; }
.money-card:hover { transform: translateY(-4px); }
.money-card.blue-card { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); }
.money-card.red-card  { background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%); }
.money-card.gold-card { background: linear-gradient(135deg, #7a5200 0%, #c47f00 100%); }
.money-card.dark-card { background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%); }
.money-card .mc-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.80); margin-bottom: 1rem; }
.money-card .mc-num  { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 0.6rem; letter-spacing: -0.03em; }
.money-card .mc-text { font-size: 15px; color: rgba(255,255,255,0.90); line-height: 1.65; }
.money-card .mc-source { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 1rem; letter-spacing: 0.05em; }

/* Compare bars */
.compare-bar { margin: 0.75rem 0; }
.compare-bar-label { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 0.35rem; }
.compare-bar-label .country { font-weight: 600; color: var(--navy); }
.compare-bar-label .value { color: var(--gold); font-family: var(--font-mono); font-weight: 500; }
.compare-bar-track { height: 10px; background: var(--cream-dark); border-radius: 99px; overflow: hidden; }
.compare-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--gold)); transition: width 1.2s ease; }
.compare-bar-fill.red { background: linear-gradient(90deg, var(--red), var(--gold)); }

/* ═══════════════════════════════════════
   PULL QUOTE
═══════════════════════════════════════ */
.pull-quote {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl); padding: 4rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(232,184,75,0.2);
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--font-display); font-size: 16rem; line-height: 0.7;
  color: rgba(232,184,75,0.08);
  position: absolute; top: 2rem; left: 2rem;
  pointer-events: none;
}
.pull-quote blockquote { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--white); line-height: 1.55; position: relative; z-index: 1; margin-bottom: 1.5rem; max-width: 780px; }
.pull-quote blockquote em { color: var(--gold); }
.pull-quote cite { color: var(--gold); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; font-family: var(--font-mono); position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   ARTICLE BODY
═══════════════════════════════════════ */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-wrap h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--navy); margin: 3rem 0 1.1rem; line-height: 1.2; }
.article-wrap h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--blue); margin: 2.2rem 0 0.85rem; }
.article-wrap p { margin-bottom: 1.5rem; color: var(--text); line-height: 1.82; font-size: 17px; }
.article-wrap ul { margin: 0 0 1.5rem 1.6rem; }
.article-wrap li { margin-bottom: 0.6rem; color: var(--text); line-height: 1.7; font-size: 16px; }
.article-wrap .callout { border-left: 5px solid var(--gold); padding: 1.25rem 1.5rem; background: var(--gold-pale); border-radius: 0 12px 12px 0; margin: 2.5rem 0; font-size: 16px; color: #3a2800; line-height: 1.72; }
.article-wrap .callout strong { color: #1a1000; }

/* ═══════════════════════════════════════
   LESSON / BRIDGE CARDS
═══════════════════════════════════════ */
.lesson-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 2rem; }
.lesson-card-header { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%); padding: 1.1rem 1.75rem; display: flex; align-items: center; gap: 1rem; }
.lesson-num { background: var(--gold); color: var(--navy); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.lesson-title { color: var(--white); font-weight: 600; font-size: 16px; }
.lesson-subtitle { color: rgba(255,255,255,0.80); font-size: 14px; margin-top: 1px; }
.lesson-body { padding: 1.75rem; }
.lang-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
.lang-box { background: var(--cream); border-radius: 10px; padding: 1.1rem 1.25rem; border-left: 4px solid var(--gold); }
.lang-box.en { border-left-color: var(--blue); }
.lang-box .ltag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #444; margin-bottom: 0.5rem; }
.lang-box .phrase { font-size: 1.1rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.lang-box .note { font-size: 14px; color: #444; margin-top: 0.3rem; font-style: italic; }

/* ═══════════════════════════════════════
   DATA TABLE
═══════════════════════════════════════ */
.data-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin: 2rem 0; }
.data-table thead th { background: var(--navy); color: var(--gold); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; padding: 1.1rem 1.25rem; text-align: left; }
.data-table tbody td { padding: 1rem 1.25rem; font-size: 15px; border-bottom: 1px solid var(--border); background: var(--white); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--gold-pale); }
.data-table .hl { color: var(--red); font-weight: 700; }
.data-table .hl-good { color: #15803d; font-weight: 700; }

/* ═══════════════════════════════════════
   SOLUTION ITEMS
═══════════════════════════════════════ */
.solution-item { display: flex; gap: 1.5rem; align-items: flex-start; background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; transition: all 0.25s; }
.solution-item:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: var(--gold); }
.solution-num { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); color: var(--white); width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; font-family: var(--font-display); }
.solution-item h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; font-size: 17px; }
.solution-item p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════
   RESOURCE CARDS
═══════════════════════════════════════ */
.resource-card { transition: all 0.3s; }
.resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rc-type { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 99px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.rc-free { background: #dcfce7; color: #14532d; }
.rc-paid { background: #fef3c7; color: #7a4500; }

/* ═══════════════════════════════════════
   TEAM CARDS
═══════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all 0.3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--white); position: relative; }
.team-avatar::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--gold); opacity: 0.5; }
.team-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.team-role { font-size: 13px; color: #c47f00; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.85rem; font-family: var(--font-mono); }
.team-bio { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   FORM
═══════════════════════════════════════ */
.form-group { margin-bottom: 1.6rem; }
label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 0.5rem; color: var(--navy); letter-spacing: 0.01em; }
input, textarea, select { width: 100%; padding: 0.9rem 1.1rem; border: 1.5px solid #d4d4d8; border-radius: 10px; font-family: var(--font-body); font-size: 16px; background: var(--white); color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,184,75,0.15); }
textarea { min-height: 150px; resize: vertical; }

/* ═══════════════════════════════════════
   TIMELINE
═══════════════════════════════════════ */
.timeline { position: relative; padding-left: 2.25rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(232,184,75,0.1)); }
.t-item { position: relative; margin-bottom: 2.25rem; }
.t-item::before { content: ''; position: absolute; left: -2.6rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold); }
.t-year { font-family: var(--font-mono); font-size: 13px; color: #c47f00; letter-spacing: 0.1em; margin-bottom: 0.3rem; text-transform: uppercase; font-weight: 700; }
.t-text { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.t-text strong { color: var(--navy); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
details { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
details[open] { box-shadow: var(--shadow); border-color: var(--gold); }
summary { padding: 1.4rem 1.75rem; font-weight: 600; color: var(--navy); font-size: 17px; list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
summary:hover { color: var(--blue); }
summary::after { content: '+'; color: var(--gold); font-size: 1.4rem; font-weight: 300; flex-shrink: 0; }
details[open] summary::after { content: '−'; }
details p { padding: 0 1.75rem 1.4rem; color: var(--text-muted); font-size: 16px; line-height: 1.78; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 5rem 0 2.5rem; border-top: 1px solid rgba(232,184,75,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); font-weight: 900; margin-bottom: 1rem; letter-spacing: -0.02em; }
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-desc { font-size: 15px; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,0.75); }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-mono); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.70); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 14px; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,0.65); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ═══════════════════════════════════════
   TAG / BADGE
═══════════════════════════════════════ */
.tag { display: inline-block; padding: 0.25rem 0.7rem; border-radius: 99px; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin: 0.15rem; }
.tag-gold { background: var(--gold-pale); color: #7a5200; }
.tag-blue { background: #dbeafe; color: #1e3a8a; }
.tag-red  { background: #fee2e2; color: #7f1d1d; }

/* ═══════════════════════════════════════
   DIVIDER
═══════════════════════════════════════ */
.divider-flag { height: 3px; background: linear-gradient(90deg, var(--blue) 50%, var(--red) 50%); border: none; margin: 0; }

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero fade-up — CSS animation for above-the-fold elements */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fade-up[style*="animation-delay:0.1s"] { animation-delay: 0.1s; }
.fade-up[style*="animation-delay:0.2s"] { animation-delay: 0.2s; }
.fade-up[style*="animation-delay:0.3s"] { animation-delay: 0.3s; }
.fade-up[style*="animation-delay:0.4s"] { animation-delay: 0.4s; }

/* ═══════════════════════════════════════
   TEACHING MODEL COMPONENTS
═══════════════════════════════════════ */
.stage-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 3rem; transition: box-shadow 0.3s; }
.stage-card:hover { box-shadow: var(--shadow-lg); }
.stage-header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; padding: 2rem 2.5rem; cursor: pointer; user-select: none; }
.stage-header.blue-hd   { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%); }
.stage-header.navy-hd   { background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%); }
.stage-header.gold-hd   { background: linear-gradient(135deg, #7a5200 0%, #c47f00 100%); }
.stage-header.red-hd    { background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%); }
.stage-header.teal-hd   { background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%); }
.stage-header.purple-hd { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%); }
.stage-age-badge { background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.30); border-radius: 12px; padding: 0.6rem 1rem; text-align: center; flex-shrink: 0; min-width: 90px; }
.stage-age-badge .age-range { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--white); line-height: 1; }
.stage-age-badge .age-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(255,255,255,0.80); text-transform: uppercase; margin-top: 3px; }
.stage-title-block .stage-emoji { font-size: 1.8rem; margin-bottom: 0.25rem; }
.stage-title-block h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1.2; margin: 0; }
.stage-title-block .stage-sub { color: rgba(255,255,255,0.85); font-size: 14px; margin-top: 0.25rem; font-family: var(--font-mono); letter-spacing: 0.04em; }
.stage-toggle { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.30); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.stage-card.open .stage-toggle { transform: rotate(45deg); background: rgba(255,255,255,0.25); }
.stage-body { display: none; padding: 2.5rem; border-top: 1px solid var(--border); }
.stage-card.open .stage-body { display: block; }
.stage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stage-goals h4, .stage-methods h4 { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #444; margin-bottom: 1rem; border-bottom: 2px solid var(--border); padding-bottom: 0.5rem; }
.goal-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 0.75rem; }
.goal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.goal-item p { font-size: 15px; color: var(--text); line-height: 1.6; margin: 0; }
.method-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--cream); border: 1px solid var(--border); border-radius: 99px; padding: 0.35rem 0.85rem; font-size: 14px; font-weight: 500; color: var(--navy); margin: 0.2rem; white-space: nowrap; }

/* 3-language comparison */
.tri-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.tri-table thead th { padding: 1.25rem 1rem; font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-align: center; }
.tri-table thead .th-creole { background: var(--gold); color: var(--navy); }
.tri-table thead .th-english { background: var(--blue); color: var(--white); }
.tri-table thead .th-french  { background: #6b2a2a; color: var(--white); }
.tri-table thead .th-feature { background: var(--navy); color: var(--gold); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-align: left; padding-left: 1.25rem; }
.tri-table tbody td { padding: 1rem; font-size: 15px; border-bottom: 1px solid var(--border); background: var(--white); text-align: center; vertical-align: middle; }
.tri-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--navy); background: var(--cream); font-size: 15px; }
.tri-table tbody tr:last-child td { border-bottom: none; }
.tri-table tbody tr:hover td { background: var(--gold-pale); }
.tri-table tbody tr:hover td:first-child { background: #f0e8c8; }
.tri-table small { font-size: 13px; color: #444; display: block; margin-top: 3px; }
.score-easy   { color: #15803d; font-weight: 700; }
.score-hard   { color: var(--red); font-weight: 700; }
.score-medium { color: #b45309; font-weight: 700; }

/* Difficulty meters */
.diff-meter { margin: 0.75rem 0; }
.diff-track { height: 8px; background: var(--cream-dark); border-radius: 99px; overflow: hidden; margin-top: 4px; }
.diff-fill { height: 100%; border-radius: 99px; transition: width 1.2s ease; }
.diff-easy   { background: linear-gradient(90deg, #22c55e, #86efac); }
.diff-medium { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.diff-hard   { background: linear-gradient(90deg, #ef4444, #fca5a5); }

/* Phonetic grid */
.phonetic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.phonetic-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.phonetic-header { padding: 0.85rem 1.25rem; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.ph-creole-h { background: var(--gold); color: var(--navy); }
.ph-eng-h    { background: var(--blue); color: white; }
.ph-fr-h     { background: #6b2a2a; color: white; }
.phonetic-body { background: var(--white); padding: 1.25rem; }
.sound-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; margin-bottom: 0.75rem; align-items: center; }
.sound-tag { background: var(--cream); border-radius: 8px; padding: 0.6rem 0.75rem; text-align: center; }
.sound-tag .ipa { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.sound-tag .word { font-size: 13px; color: #444; margin-top: 2px; }
.sound-tag.match-good { background: #dcfce7; border: 1px solid #86efac; }
.sound-tag.match-good .ipa { color: #15803d; }
.sound-tag.match-hard { background: #fee2e2; border: 1px solid #fca5a5; }
.sound-tag.match-hard .ipa { color: #b91c1c; }
.sound-arrow { text-align: center; color: #555; font-size: 14px; }

/* Pattern table */
.pattern-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.pattern-table th { background: var(--navy); color: var(--gold); padding: 0.6rem 1rem; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; text-align: left; }
.pattern-table td { padding: 0.7rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pattern-table tr:nth-child(even) td { background: var(--cream); }
.pattern-table .cr { color: #7a5200; font-weight: 600; }
.pattern-table .en { color: #1e3a8a; font-weight: 600; }
.pattern-table .fr { color: #7f1d1d; font-weight: 600; }

/* Roadmap */
.roadmap { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.roadmap-step { padding: 1.5rem 1rem; text-align: center; border-right: 1px solid var(--border); position: relative; }
.roadmap-step:last-child { border-right: none; }
.roadmap-step::after { content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1rem; z-index: 1; font-weight: 700; }
.roadmap-step:last-child::after { display: none; }
.rs-level { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; }
.rs-label { font-size: 13px; color: #555; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
.rs-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Classroom */
.classroom { background: #f8faff; border-radius: var(--radius-xl); border: 2px solid var(--border); overflow: hidden; margin: 2rem 0; box-shadow: var(--shadow-lg); }
.classroom-toolbar { background: var(--navy); padding: 0.65rem 1.25rem; display: flex; align-items: center; gap: 8px; }
.toolbar-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.toolbar-title { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* Whiteboard */
.whiteboard { background: #2d5016; background-image: repeating-linear-gradient(transparent, transparent 31px, rgba(255,255,255,0.06) 31px, rgba(255,255,255,0.06) 32px); padding: 2.5rem 3rem; min-height: 220px; position: relative; }
.whiteboard.dark-board { background: #1a1a2e; }
.whiteboard.light-board { background: #f5f5f0; background-image: none; border-bottom: 3px solid #e0d8c0; }
.wb-text { font-family: 'Playfair Display', Georgia, serif; color: rgba(255,255,255,0.95); line-height: 1.8; font-size: 16px; }
.wb-text.chalklike { font-style: italic; letter-spacing: 0.02em; }
.wb-title { font-size: 1.5rem; font-weight: 700; color: var(--gold-light); margin-bottom: 1rem; letter-spacing: 0.02em; font-family: 'Playfair Display', serif; }
.wb-highlight { color: var(--gold-light); font-weight: 700; }
.wb-red { color: #ff9999; font-weight: 700; }
.wb-green { color: #90ee90; font-weight: 700; }
.wb-blue { color: #87ceeb; font-weight: 700; }
.wb-underline { text-decoration: underline; text-decoration-color: var(--gold); }
.wb-line { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 1rem 0; }

/* Flashcard */
.flashcard-row { display: flex; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 2rem; background: #f0f4ff; border-bottom: 1px solid var(--border); }
.flashcard { perspective: 600px; cursor: pointer; flex: 1; min-width: 110px; max-width: 160px; height: 100px; }
.flashcard-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); border-radius: 12px; }
.flashcard:hover .flashcard-inner, .flashcard.flipped .flashcard-inner { transform: rotateY(180deg); }
.fc-front, .fc-back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.75rem; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.fc-front { background: var(--white); border: 2px solid var(--gold); }
.fc-back { background: var(--navy); border: 2px solid var(--blue); transform: rotateY(180deg); }
.fc-emoji { font-size: 1.8rem; margin-bottom: 0.3rem; line-height: 1; }
.fc-word { font-weight: 700; font-size: 15px; color: var(--navy); }
.fc-trans { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 0.2rem; }
.fc-english { font-weight: 700; font-size: 16px; color: var(--gold); }

/* Dialogue */
.dialogue { padding: 1.75rem 2rem; background: #f8f9ff; display: flex; flex-direction: column; gap: 1.1rem; }
.bubble-wrap { display: flex; gap: 10px; align-items: flex-end; }
.bubble-wrap.right { flex-direction: row-reverse; }
.bubble-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.bubble { max-width: 72%; padding: 0.85rem 1.1rem; border-radius: 16px; font-size: 15px; line-height: 1.65; position: relative; }
.bubble.teacher { background: var(--navy); color: white; border-bottom-left-radius: 4px; }
.bubble.student { background: var(--white); color: var(--text); border: 1px solid var(--border); border-bottom-right-radius: 4px; }
.bubble.correct { background: #dcfce7; color: #14532d; border: 1px solid #86efac; border-bottom-right-radius: 4px; }
.bubble.thinking { background: #fef9c3; color: #713f12; border: 1px solid #fde047; border-bottom-right-radius: 4px; }
.bubble-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #555; margin-bottom: 2px; padding: 0 2px; }
.bubble-label.right-label { text-align: right; }
.bubble em { color: var(--gold); font-style: normal; font-weight: 700; }
.bubble.teacher em { color: var(--gold-light); }
.phonetic-note { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,0.70); margin-top: 4px; font-style: italic; }
.phonetic-note.dark { color: #444; }

/* Chant / Song */
.chant-box { background: linear-gradient(135deg, #1a0a3a 0%, #2d1060 100%); padding: 1.75rem 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.chant-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.70); margin-bottom: 0.85rem; display: flex; align-items: center; gap: 8px; }
.chant-label::before { content: '♫'; font-size: 0.9rem; color: var(--gold); }
.chant-line { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.92); font-size: 16px; line-height: 1.9; }
.chant-line .beat { color: var(--gold); font-weight: 700; font-style: normal; }
.chant-line .creole-word { color: #87ceeb; }

/* Drill box */
.drill-box { background: var(--white); padding: 1.75rem 2rem; border-top: 1px solid var(--border); }
.drill-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #444; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.drill-label::before { content: '✏️'; font-size: 0.9rem; }
.drill-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; align-items: stretch; }
.drill-cell { border-radius: 10px; padding: 0.85rem 1rem; font-size: 15px; line-height: 1.5; display: flex; flex-direction: column; justify-content: center; }
.dc-creole  { background: #FDF3D9; border: 1px solid #f5d07a; color: #5a3e00; }
.dc-english { background: #dbeafe; border: 1px solid #93c5fd; color: #1e3a8a; }
.dc-french  { background: #fee2e2; border: 1px solid #fca5a5; color: #7f1d1d; }
.dc-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; margin-bottom: 4px; }
.dc-text { font-weight: 600; font-size: 15px; }
.dc-note { font-size: 14px; opacity: 0.80; margin-top: 3px; font-style: italic; }

/* Teacher note */
.teacher-note { background: #fff8e1; border: 1px dashed #f5d07a; border-radius: 10px; padding: 1rem 1.25rem; margin: 1rem 0; font-size: 15px; color: #3a2800; line-height: 1.65; }
.teacher-note::before { content: '📋 Teacher Note: '; font-weight: 700; color: #1a1000; }

/* Lesson callout */
.lesson-callout { display: flex; gap: 1rem; align-items: flex-start; background: var(--gold-pale); border-radius: 10px; padding: 1rem 1.25rem; margin: 1rem 0; border-left: 4px solid var(--gold); }
.lesson-callout-icon { font-size: 1.3rem; flex-shrink: 0; }
.lesson-callout p { font-size: 15px; color: #3a2800; line-height: 1.65; margin: 0; }
.lesson-callout strong { color: #1a1000; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --logo-h: 52px; --nav-h: 52px; --header-h: 107px; }
  .banner-haiti { font-size: 2.6rem; }
  .banner-speaks { font-size: 1rem; letter-spacing: 5px; }
  .banner-blue { padding: 0 1rem 0 0.75rem; }
  .banner-red { padding: 0 1.5rem; }
  .banner-tagline { display: none; }
  .banner-logo-img { max-width: 200px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(5,14,31,0.99); padding: 1.5rem; gap: 0.25rem; border-bottom: 2px solid var(--gold); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lang-pair, .drill-row { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: 1fr; }
  .pull-quote { padding: 2.5rem; }
  .pull-quote blockquote { font-size: 1.25rem; }
  .section { padding: 4rem 0; }
  .roadmap { grid-template-columns: repeat(3, 1fr); }
  .roadmap-step::after { display: none; }
}
@media (max-width: 600px) {
  :root { --logo-h: 48px; --nav-h: 48px; --header-h: 99px; }
  .banner-haiti { font-size: 2rem; }
  .banner-speaks { font-size: 0.85rem; letter-spacing: 4px; }
  .banner-divider::after { display: none; }
  .banner-logo-img { max-width: 160px; }
  .hero-h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 2.4rem; }
  .money-grid { grid-template-columns: 1fr; }
  nav { padding: 0 1rem; }
  .container { padding: 0 1.25rem; }
  .roadmap { grid-template-columns: 1fr 1fr; }
  .phonetic-grid { grid-template-columns: 1fr; }
  .bubble { max-width: 88%; }
  .flashcard-row { justify-content: center; }
  .whiteboard { padding: 1.5rem; }
  .dialogue { padding: 1.25rem; }
}

/* ═══════════════════════════════════════
   KEYWORD HYPERLINKS
═══════════════════════════════════════ */
.kw-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(232,184,75,0.55);
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 1px;
}
.kw-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
/* On dark backgrounds */
.on-dark .kw-link,
.hero-lead .kw-link,
.bubble.teacher .kw-link {
  color: var(--gold-light);
  border-bottom-color: rgba(245,208,122,0.5);
}
.on-dark .kw-link:hover,
.hero-lead .kw-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* Country case study cards */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-header {
  padding: 1.5rem 1.75rem;
  display: flex; align-items: center; gap: 1rem;
}
.case-flag { font-size: 2.4rem; flex-shrink: 0; line-height: 1; }
.case-country { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.case-year { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.1em; text-transform: uppercase; }
.case-body { background: var(--white); padding: 1.5rem 1.75rem; }
.case-decision {
  font-size: 15px; color: var(--navy); font-weight: 600;
  margin-bottom: 1rem; line-height: 1.5;
  border-left: 4px solid var(--gold); padding-left: 0.85rem;
}
.case-stats { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1rem; }
.case-stat { text-align: center; }
.case-stat .cs-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; line-height: 1; }
.case-stat .cs-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 2px; }
.case-lesson {
  font-size: 14px; color: var(--text-muted); line-height: 1.65;
  background: var(--cream); border-radius: 8px; padding: 0.85rem;
  margin-top: 0.75rem;
}
.case-lesson strong { color: var(--navy); }
.case-card.rwanda .case-header  { background: linear-gradient(135deg, #006400 0%, #009a00 100%); }
.case-card.india .case-header   { background: linear-gradient(135deg, #FF9933 0%, #c45e00 100%); }
.case-card.singapore .case-header { background: linear-gradient(135deg, #c8102e 0%, #8b0a1e 100%); }
.case-card.philippines .case-header { background: linear-gradient(135deg, #0038a8 0%, #002570 100%); }
.case-card.ethiopia .case-header { background: linear-gradient(135deg, #078930 0%, #fcdd09 50%, #da121a 100%); }
.case-card.nigeria .case-header { background: linear-gradient(135deg, #008751 0%, #006b3f 100%); }

/* Prominent case study banner */
.case-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--navy) 50%, var(--red-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  margin: 3rem 0;
  border: 1px solid rgba(232,184,75,0.25);
  position: relative;
  overflow: hidden;
}
.case-banner::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 18rem; line-height: 0.7;
  color: rgba(232,184,75,0.06);
  position: absolute; top: 1rem; right: 2rem;
  pointer-events: none;
}
.case-banner-flag { font-size: 3.5rem; margin-bottom: 1rem; }
.case-banner-title {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 900;
  color: var(--white); margin-bottom: 0.5rem; line-height: 1.2;
}
.case-banner-title em { color: var(--gold); font-style: italic; }
.case-banner-sub { font-size: 16px; color: rgba(255,255,255,0.80); margin-bottom: 2rem; line-height: 1.7; }
.case-banner-metrics {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 1rem;
}
.cbm-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1.1rem; text-align: center;
}
.cbm-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.cbm-label { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.4; }

@media (max-width: 700px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-banner { padding: 2rem; }
  .case-banner-title { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════
   IMAGE-RICH LAYOUT HELPERS
═══════════════════════════════════════ */
.img-full {
  width: 100%; border-radius: var(--radius-xl);
  display: block; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.img-caption {
  font-size: 13px; color: var(--text-muted);
  font-style: italic; margin-top: 0.6rem;
  text-align: center; padding: 0 1rem;
}
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
.three-col {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.img-overlay-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.img-overlay-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.img-overlay-card .ioc-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,14,31,0.95) 0%, transparent 100%);
  padding: 1.5rem 1.25rem 1.25rem;
}
.img-overlay-card .ioc-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.35rem; line-height: 1.3;
}
.img-overlay-card .ioc-sub {
  font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.5;
}
.img-overlay-card .ioc-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 700; padding: 0.25rem 0.65rem;
  border-radius: 99px; letter-spacing: 0.04em;
}

/* Pull-image: full-bleed image with text overlay on side */
.pull-image-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  margin: 3rem 0;
}
.pis-image { position: relative; overflow: hidden; }
.pis-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pis-text {
  background: var(--navy); padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.pis-text::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--red));
}

/* Fact box */
.fact-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid rgba(232,184,75,0.20);
  margin: 2rem 0;
}
.fact-box .fb-label {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 8px;
}
.fact-box .fb-label::before { content: ''; width: 20px; height: 2px; background: var(--gold); flex-shrink: 0; }
.fact-box p { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.75; margin: 0; }
.fact-box strong { color: var(--gold); }

/* Wide image with side caption */
.wide-img-wrap {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 2.5rem; align-items: start; margin: 2.5rem 0;
}
.wide-img-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.wide-img-caption-box {
  background: var(--cream-dark); border-radius: var(--radius-lg);
  padding: 1.75rem; border-left: 4px solid var(--gold);
}
.wide-img-caption-box h4 {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--navy);
  margin-bottom: 0.6rem; font-weight: 700;
}
.wide-img-caption-box p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Testimonial / quote card */
.quote-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); position: relative;
}
.quote-card::before {
  content: '\201C';
  font-family: var(--font-display); font-size: 5rem; line-height: 0.8;
  color: var(--gold); opacity: 0.25;
  position: absolute; top: 0.5rem; left: 1rem;
}
.quote-card p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--navy); line-height: 1.65; margin-bottom: 1rem; padding-left: 1.5rem; }
.quote-card cite { font-size: 14px; color: var(--text-muted); font-style: normal; padding-left: 1.5rem; display: block; }
.quote-card cite strong { color: var(--navy); }

/* Icon-text list */
.icon-list { display: flex; flex-direction: column; gap: 1.1rem; }
.icon-list-item { display: flex; gap: 1rem; align-items: flex-start; }
.ili-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  box-shadow: 0 4px 12px rgba(0,63,135,0.25);
}
.ili-text h4 { font-weight: 700; color: var(--navy); font-size: 17px; margin-bottom: 0.25rem; }
.ili-text p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Map-style distance infographic */
.distance-infographic {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 3rem; margin: 2rem 0;
  border: 1px solid rgba(232,184,75,0.2);
  position: relative; overflow: hidden;
}
.dist-row {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 1.25rem; position: relative;
}
.dist-row:last-child { margin-bottom: 0; }
.dist-flag { font-size: 1.8rem; flex-shrink: 0; width: 40px; text-align: center; }
.dist-bar-wrap { flex: 1; }
.dist-label { font-size: 15px; color: rgba(255,255,255,0.88); margin-bottom: 5px; font-weight: 500; }
.dist-track { height: 14px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.dist-fill { height: 100%; border-radius: 99px; display: flex; align-items: center; padding-right: 8px; justify-content: flex-end; }
.dist-fill span { font-family: var(--font-mono); font-size: 12px; color: var(--navy); font-weight: 700; }
.dist-km { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; flex-shrink: 0; width: 90px; text-align: right; }

@media (max-width: 768px) {
  .two-col, .pull-image-section, .wide-img-wrap, .three-col { grid-template-columns: 1fr; }
  .two-col.flip { direction: ltr; }
  .pis-text { padding: 2rem; }
  .img-overlay-card img { height: 200px; }
}

/* ═══ KEYWORD HYPERLINKS ═══ */
.kw { color:inherit; border-bottom:1.5px solid rgba(232,184,75,0.6); text-decoration:none; padding-bottom:1px; transition:color 0.2s, border-color 0.2s; }
.kw:hover { color:var(--blue); border-bottom-color:var(--blue); }
.kw-light { color:var(--gold-light); border-bottom:1.5px solid rgba(245,208,122,0.45); text-decoration:none; padding-bottom:1px; transition:color 0.2s; }
.kw-light:hover { color:var(--white); border-bottom-color:var(--white); }

/* ═══ COUNTRY CASE STUDY CARDS ═══ */
.case-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:1.5rem; margin:2.5rem 0; }
.case-card { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--border); transition:transform 0.3s,box-shadow 0.3s; }
.case-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.case-hdr { padding:1.5rem 1.75rem; display:flex; align-items:center; gap:1rem; }
.case-flag { font-size:2.4rem; flex-shrink:0; line-height:1; }
.case-country { font-family:var(--font-display); font-size:1.3rem; font-weight:800; color:var(--white); margin-bottom:2px; }
.case-year { font-family:var(--font-mono); font-size:13px; color:rgba(255,255,255,0.80); letter-spacing:0.1em; text-transform:uppercase; }
.case-body { background:var(--white); padding:1.5rem 1.75rem; }
.case-decision { font-size:15px; color:var(--navy); font-weight:600; margin-bottom:1rem; line-height:1.55; border-left:4px solid var(--gold); padding-left:0.85rem; }
.case-stats { display:flex; gap:1.5rem; flex-wrap:wrap; margin-bottom:1rem; }
.cs-num { font-family:var(--font-display); font-size:1.7rem; font-weight:900; line-height:1; }
.cs-label { font-size:13px; color:var(--text-muted); letter-spacing:0.04em; margin-top:2px; }
.case-lesson { font-size:14px; color:var(--text-muted); line-height:1.65; background:var(--cream); border-radius:8px; padding:0.85rem 1rem; margin-top:0.75rem; }
.case-lesson strong { color:var(--navy); }
.case-card.rwanda .case-hdr   { background:linear-gradient(135deg,#005a00,#009a00); }
.case-card.india .case-hdr    { background:linear-gradient(135deg,#c45e00,#FF9933); }
.case-card.singapore .case-hdr{ background:linear-gradient(135deg,#8b0a1e,#c8102e); }
.case-card.philippines .case-hdr{ background:linear-gradient(135deg,#002570,#0038a8); }
.case-card.nigeria .case-hdr  { background:linear-gradient(135deg,#006b3f,#008751); }
.case-card.ethiopia .case-hdr { background:linear-gradient(135deg,#006600,#078930); }

/* ═══ PULL IMAGE SECTION ═══ */
.pull-img { display:grid; grid-template-columns:1fr 1fr; min-height:420px; border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-lg); margin:3rem 0; }
.pull-img img { width:100%; height:100%; object-fit:cover; display:block; }
.pull-img-text { background:var(--navy); padding:3rem; display:flex; flex-direction:column; justify-content:center; border-left:4px solid var(--gold); }
.pull-img-text h3 { font-family:var(--font-display); font-size:1.6rem; color:var(--gold); margin-bottom:1rem; font-weight:800; line-height:1.25; }
.pull-img-text p { color:rgba(255,255,255,0.88); font-size:16px; line-height:1.78; margin-bottom:1rem; }
.pull-img-text p:last-child { margin-bottom:0; }
.pull-img.flip { direction:rtl; }
.pull-img.flip > * { direction:ltr; }

/* ═══ IMAGE OVERLAY CARDS ═══ */
.img-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; margin:2.5rem 0; }
.img-oc { position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); transition:transform 0.3s; }
.img-oc:hover { transform:translateY(-5px); }
.img-oc img { width:100%; height:230px; object-fit:cover; display:block; }
.img-oc-body { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top,rgba(5,14,31,0.96) 0%,transparent 100%); padding:1.5rem 1.25rem 1.25rem; }
.img-oc-tag { position:absolute; top:1rem; right:1rem; background:var(--gold); color:var(--navy); font-size:12px; font-weight:700; padding:0.25rem 0.65rem; border-radius:99px; }
.img-oc-title { font-family:var(--font-display); font-size:1.05rem; font-weight:700; color:var(--white); margin-bottom:0.3rem; line-height:1.3; }
.img-oc-sub { font-size:14px; color:rgba(255,255,255,0.80); line-height:1.5; }

/* ═══ FACT STRIP ═══ */
.fact-strip { background:linear-gradient(135deg,var(--blue-deep),var(--navy)); border-radius:var(--radius-lg); padding:2rem 2.5rem; border:1px solid rgba(232,184,75,0.2); margin:2.5rem 0; display:flex; gap:2rem; flex-wrap:wrap; align-items:center; }
.fact-strip .fs-icon { font-size:2.5rem; flex-shrink:0; }
.fact-strip h4 { font-family:var(--font-display); font-size:1.2rem; color:var(--gold); margin-bottom:0.5rem; }
.fact-strip p { color:rgba(255,255,255,0.88); font-size:15px; line-height:1.72; margin:0; }
.fact-strip strong { color:var(--gold-light); }

/* ═══ FEATURE QUOTE BAND ═══ */
.fq-band { background:linear-gradient(135deg,var(--red-deep),#6b0016); padding:4rem 0; }
.fq-band blockquote { font-family:var(--font-display); font-size:1.8rem; font-style:italic; color:var(--white); line-height:1.5; max-width:820px; margin:0 auto; text-align:center; }
.fq-band blockquote em { color:var(--gold); }
.fq-band cite { display:block; text-align:center; margin-top:1.25rem; font-family:var(--font-mono); font-size:14px; color:rgba(255,255,255,0.70); letter-spacing:0.1em; text-transform:uppercase; font-style:normal; }

/* ═══ RICH SVG LOGO SECTION ═══ */
.logo-showcase { background:var(--cream-dark); padding:4rem 0; }
.logo-svg-wrap { max-width:560px; margin:0 auto; }
.logo-svg-wrap svg { width:100%; height:auto; border-radius:16px; box-shadow:var(--shadow-lg); }

/* ═══ ICON FEATURE LIST ═══ */
.icon-feat { display:flex; flex-direction:column; gap:1.25rem; }
.icon-feat-item { display:flex; gap:1.1rem; align-items:flex-start; background:var(--white); padding:1.25rem; border-radius:12px; border:1px solid var(--border); box-shadow:var(--shadow-sm); transition:all 0.25s; }
.icon-feat-item:hover { border-color:var(--gold); transform:translateX(5px); }
.ifi-icon { width:46px; height:46px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1.3rem; background:linear-gradient(135deg,var(--blue),var(--blue-mid)); }
.ifi-text h4 { font-weight:700; color:var(--navy); font-size:17px; margin-bottom:0.25rem; }
.ifi-text p { font-size:15px; color:var(--text-muted); line-height:1.65; margin:0; }

/* ═══ WIDE 2-COL WITH IMAGE ═══ */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.two-col.flip { direction:rtl; }
.two-col.flip > * { direction:ltr; }
.two-col img { width:100%; border-radius:var(--radius-xl); box-shadow:var(--shadow-lg); display:block; }

/* ═══ DISTANCE BAR INFOGRAPHIC ═══ */
.dist-infog { background:var(--navy); border-radius:var(--radius-xl); padding:2.5rem; border:1px solid rgba(232,184,75,0.18); }
.dist-row { display:flex; align-items:center; gap:1.25rem; margin-bottom:1.1rem; }
.dist-row:last-child { margin-bottom:0; }
.dist-flag { font-size:1.8rem; width:40px; text-align:center; flex-shrink:0; }
.dist-country { width:170px; flex-shrink:0; font-size:15px; color:rgba(255,255,255,0.88); font-weight:500; }
.dist-track { flex:1; height:14px; background:rgba(255,255,255,0.08); border-radius:99px; overflow:hidden; }
.dist-fill { height:100%; border-radius:99px; display:flex; align-items:center; padding-right:8px; justify-content:flex-end; min-width:30px; }
.dist-fill span { font-family:var(--font-mono); font-size:11px; color:var(--navy); font-weight:700; }
.dist-km { width:75px; text-align:right; font-family:var(--font-display); font-size:1.15rem; font-weight:900; flex-shrink:0; }

@media(max-width:768px){
  .pull-img,.two-col { grid-template-columns:1fr; }
  .pull-img.flip,.two-col.flip { direction:ltr; }
  .pull-img-text { padding:2rem; }
  .pull-img img { height:260px; }
  .dist-country { width:110px; font-size:13px; }
}

/* ═══ LOGO SVG INSIDE BANNER (top-left) ═══ */
.banner-logo-img {
  height: calc(var(--logo-h) - 8px);
  width: auto;
  max-width: 280px;
  flex-shrink: 0;
  border-radius: 6px;
  display: block;
  transition: opacity 0.2s;
}
.banner-logo-img:hover { opacity: 0.88; }
.banner-wordmark {
  display: none;
}

/* ═══════════════════════════════════════
   GOOGLE ADSENSE PLACEHOLDERS
   Replace data-ad-client / data-ad-slot
   with your real AdSense values
═══════════════════════════════════════ */

/* Wrapper shown in preview; hides when real ad loads */
.ad-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 1.5px dashed #d0d5dd;
  border-radius: 6px;
  color: #6b7280;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.ad-unit::before {
  content: attr(data-label);
  font-weight: 600;
  color: #9ca3af;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.ad-unit::after {
  content: 'AdSense';
  font-size: 10px;
  color: #cbd5e1;
  margin-top: 4px;
}

/* Leaderboard 728×90 */
.ad-leaderboard {
  width: 100%;
  max-width: 728px;
  height: 90px;
  margin: 0 auto;
}

/* Billboard / Super Leaderboard 970×90 */
.ad-billboard {
  width: 100%;
  max-width: 970px;
  height: 90px;
  margin: 0 auto;
}

/* Medium Rectangle 300×250 */
.ad-rectangle {
  width: 300px;
  height: 250px;
  flex-shrink: 0;
}

/* Large Rectangle 336×280 */
.ad-large-rect {
  width: 336px;
  height: 280px;
  flex-shrink: 0;
}

/* Half Page 300×600 */
.ad-halfpage {
  width: 300px;
  height: 600px;
  flex-shrink: 0;
}

/* Wide Skyscraper 160×600 */
.ad-skyscraper {
  width: 160px;
  height: 600px;
  flex-shrink: 0;
}

/* Mobile Banner 320×50 */
.ad-mobile {
  width: 320px;
  max-width: 100%;
  height: 50px;
}

/* In-Article native width */
.ad-in-article {
  width: 100%;
  height: 280px;
  max-width: 700px;
  margin: 0 auto;
}

/* Ad band wrapper — full-width strip with cream bg */
.ad-band {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Sidebar ad layout */
.ad-sidebar-wrap {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.ad-sidebar-wrap .ad-sidebar-main { flex: 1; min-width: 0; }
.ad-sidebar-wrap .ad-sidebar-col { flex-shrink: 0; }

/* Responsive: hide certain sizes on small screens */
@media (max-width: 768px) {
  .ad-leaderboard, .ad-billboard { height: 60px; }
  .ad-rectangle, .ad-large-rect { width: 100%; max-width: 360px; height: 200px; }
  .ad-halfpage, .ad-skyscraper { display: none; }
  .ad-sidebar-wrap { flex-direction: column; }
  .ad-sidebar-wrap .ad-sidebar-col { display: none; }
}
