/* ============================================================
   NO BILLIONAIRES — Main Stylesheet
   Color palette: Navy #1a3560 | Gold #c8a84b | Off-white #f7f4ef
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a3560;
  --navy-dark:  #0d1f38;
  --navy-mid:   #1e4080;
  --gold:       #c8a84b;
  --gold-light: #e8c96a;
  --gold-pale:  #f5e9c4;
  --off-white:  #f7f4ef;
  --warm-gray:  #e8e4dc;
  --text-dark:  #1a1a2e;
  --text-mid:   #3d3d5c;
  --text-light: #6b7280;
  --danger:     #b03a2e;
  --section-alt: #eef2f8;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --max-width:  1140px;
  --radius:     6px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 0.75rem; }
p  { margin-bottom: 1.2rem; }
sup { font-size: 0.65em; vertical-align: super; color: var(--gold); font-weight: 700; }
sup a { color: var(--gold); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--section-alt); }
.section-dark { background: var(--navy-dark); color: #fff; }
.section-navy { background: var(--navy); color: #fff; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.center { text-align: center; }
.divider {
  width: 60px; height: 4px;
  background: var(--gold);
  margin: 1rem 0 2rem;
  border-radius: 2px;
}
.divider.center { margin: 1rem auto 2rem; }

/* ---------- Navigation ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 31, 56, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 2rem; height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 900;
  color: #fff; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

.nav-cta {
  background: var(--gold); color: var(--navy-dark) !important;
  padding: 0.45rem 1.1rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; text-decoration: none; }

.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer { display: none; background: var(--navy-dark); border-top: 1px solid rgba(200,168,75,0.25); }
.nav-drawer.open { display: block; }

.nav-links { list-style: none; max-width: var(--max-width); margin: 0 auto; padding: 1.25rem 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0.2rem; }
.nav-links a { display: block; color: #b8cce0; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.55rem 0.75rem; border-radius: var(--radius); transition: background 0.15s, color 0.15s; text-decoration: none; }
.nav-links a:hover { background: rgba(200,168,75,0.1); color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--gold); background: rgba(200,168,75,0.08); }

/* ---------- Page prev/next navigation ---------- */
.page-nav-bar { background: #fff; border-top: 2px solid var(--warm-gray); }
.page-nav { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; }
.page-nav a { color: var(--navy); font-family: var(--font-sans); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.page-nav a:hover { color: var(--gold); text-decoration: none; }
.page-nav-prev::before { content: '\2190\00a0'; }
.page-nav-next::after { content: '\00a0\2192'; }

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #122040 50%, #1a2e50 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
}

#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,168,75,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,168,75,0.06) 0%, transparent 40%);
}

.hero-content { position: relative; max-width: 800px; }

.hero-eyebrow {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}

#hero h1 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

#hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.2rem; color: #a8b8d8;
  max-width: 600px; margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer; border: none;
  transition: all 0.2s;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gold); color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-light); text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

.hero-stat-bar {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
  font-size: 2.2rem; color: var(--gold);
  font-family: var(--font-serif); margin-bottom: 0.25rem;
}
.hero-stat p { font-size: 0.85rem; color: #8899bb; margin: 0; }

/* ---------- Section: The Numbers ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 3rem 0; }

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(26,53,96,0.08);
}
.stat-card .number {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 900;
  color: var(--navy); line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card .number.danger { color: var(--danger); }
.stat-card p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }
.stat-card .source { font-size: 0.75rem; color: var(--text-light); margin-top: 0.75rem; }

.chart-wrapper {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(26,53,96,0.08);
  margin: 2rem 0;
  text-align: center;
}
.chart-wrapper img { margin: 0 auto; border-radius: 4px; }
.chart-wrapper figcaption {
  font-size: 0.8rem; color: var(--text-light);
  margin-top: 1rem; font-style: italic;
}

/* ---------- Thought Experiment Block ---------- */
.thought-experiment {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 2rem 0;
  border-left: 5px solid var(--gold);
}
.thought-experiment h3 { color: var(--gold); margin-bottom: 1rem; }
.thought-experiment p { color: #c5d5e8; }
.thought-experiment strong { color: #fff; }

/* ---------- Pull Quote ---------- */
.pull-quote {
  border-left: 5px solid var(--gold);
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-style: italic;
  color: var(--navy); line-height: 1.5;
  margin-bottom: 0.75rem;
}
.pull-quote cite { font-size: 0.85rem; color: var(--text-mid); font-style: normal; }

/* ---------- Social Quote (recreated from images) ---------- */
.social-quote {
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 1.5rem 0;
  color: #e8eaf6;
  position: relative;
}
.social-quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem; color: var(--gold);
  opacity: 0.25;
  position: absolute; top: -0.5rem; left: 1rem;
  line-height: 1;
}
.social-quote p { font-size: 1.05rem; line-height: 1.7; position: relative; }
.social-quote .attribution {
  font-size: 0.8rem; color: var(--gold);
  margin-top: 0.75rem; margin-bottom: 0;
}

/* ---------- Myth Cards ---------- */
.myths-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.myth-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,53,96,0.07);
}
.myth-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  border-left: 5px solid var(--danger);
  transition: background 0.2s;
}
.myth-header:hover { background: #fef9f0; }
.myth-header h3 { font-size: 1.15rem; color: var(--text-dark); margin: 0; }
.myth-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--danger);
  background: #fdecea; padding: 0.2rem 0.6rem;
  border-radius: 20px; white-space: nowrap;
}
.myth-toggle {
  font-size: 1.5rem; color: var(--gold);
  font-weight: 300; min-width: 24px; text-align: center;
  transition: transform 0.3s;
}
.myth-card.open .myth-toggle { transform: rotate(45deg); }
.myth-body {
  padding: 0 2rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.myth-card.open .myth-body {
  max-height: 800px;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--warm-gray);
}
.myth-body p { color: var(--text-mid); }
.rebuttal-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #27ae60;
  margin-bottom: 0.5rem; display: block;
}

/* ---------- Cost Section ---------- */
.cost-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.cost-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(26,53,96,0.08);
}
.cost-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.cost-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ---------- Timeline / History ---------- */
.timeline { position: relative; margin: 3rem 0; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--gold), var(--navy-mid));
}
.timeline-item { position: relative; margin-bottom: 2.5rem; padding-left: 1.5rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -2.45rem; top: 0.4rem;
  width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  border: 2px solid var(--navy-dark);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 900;
  color: var(--gold); margin-bottom: 0.25rem;
}
.timeline-item h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.4rem; }
.timeline-item p { color: #3a4a5c; font-size: 0.95rem; margin: 0; }
.section-dark .timeline-item h3 { color: #fff; }
.section-dark .timeline-item p { color: #a8b8d8; }

/* ---------- Comparison Bar ---------- */
.compare-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(26,53,96,0.08);
  margin: 2rem 0;
}
.compare-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.compare-row:last-child { margin-bottom: 0; }
.compare-label { font-size: 0.85rem; font-weight: 600; min-width: 180px; color: var(--text-mid); }
.compare-bar-wrap { flex: 1; background: var(--warm-gray); border-radius: 4px; height: 24px; overflow: hidden; }
.compare-bar { height: 100%; border-radius: 4px; transition: width 1s ease; display: flex; align-items: center; padding-left: 0.5rem; }
.compare-bar span { font-size: 0.75rem; font-weight: 700; color: #fff; white-space: nowrap; }
.bar-worker { background: var(--navy); }
.bar-ceo    { background: var(--gold); }

/* ---------- Solutions ---------- */
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.solution-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border-bottom: 4px solid var(--navy);
  box-shadow: 0 2px 12px rgba(26,53,96,0.07);
}
.solution-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.solution-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.solution-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ---------- Take Action ---------- */
#take-action { background: var(--navy-dark); color: #fff; }
#take-action h2 { color: #fff; }
#take-action .divider { background: var(--gold); }

.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }

.rep-finder {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: var(--radius);
  padding: 2rem;
}
.rep-finder h3 { color: var(--gold); margin-bottom: 0.5rem; }
.rep-finder p { color: #a8b8d8; font-size: 0.9rem; margin-bottom: 1.5rem; }

.zip-form { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.zip-input {
  flex: 1; padding: 0.75rem 1rem;
  border: 2px solid rgba(200,168,75,0.4);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: #fff; font-size: 1rem;
  font-family: var(--font-sans);
  outline: none;
}
.zip-input::placeholder { color: #6b7280; }
.zip-input:focus { border-color: var(--gold); }

.btn-sm {
  padding: 0.75rem 1.25rem; font-size: 0.85rem;
}

.direct-links { display: flex; flex-direction: column; gap: 0.75rem; }
.direct-link {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: #ccd6f6; font-size: 0.9rem;
  transition: all 0.2s;
}
.direct-link:hover { background: rgba(200,168,75,0.1); border-color: var(--gold); color: var(--gold); text-decoration: none; }
.direct-link-icon { font-size: 1.2rem; }

.talking-points {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: var(--radius);
  padding: 2rem;
}
.talking-points h3 { color: var(--gold); margin-bottom: 0.5rem; }
.talking-points > p { color: #a8b8d8; font-size: 0.9rem; margin-bottom: 1.5rem; }

.script-box {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #d4e0f0;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  font-style: italic;
}
.copy-btn {
  background: transparent;
  border: 1px solid rgba(200,168,75,0.5);
  color: var(--gold);
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}
.copy-btn:hover { background: rgba(200,168,75,0.15); }

.demands-list { margin-top: 2rem; }
.demands-list h3 { color: var(--gold); margin-bottom: 1rem; }
.demand-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.demand-item:last-child { border-bottom: none; }
.demand-num {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 900; font-size: 0.75rem;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem;
}
.demand-item p { color: #c5d5e8; font-size: 0.9rem; margin: 0; }
.demand-item strong { color: #fff; }

.orgs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.org-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
}
.org-card:hover { border-color: var(--gold); background: rgba(200,168,75,0.08); text-decoration: none; }
.org-card h4 { color: var(--gold); font-size: 0.95rem; margin-bottom: 0.25rem; }
.org-card p { color: #8899bb; font-size: 0.8rem; margin: 0; }

/* ---------- Sources ---------- */
#sources { background: var(--navy); color: #fff; padding: 4rem 0; }
#sources h2 { color: #fff; }
#sources .divider { background: var(--gold); }
.sources-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  margin-top: 1.5rem;
}
.sources-list li {
  font-size: 0.85rem; color: #8899bb;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 0.5rem;
}
.sources-list li .ref-num {
  color: var(--gold); font-weight: 700;
  min-width: 1.5rem;
}
.sources-list a { color: #a8c8e8; }
.sources-list a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  color: #6b7280;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(200,168,75,0.2);
}
footer span { color: var(--gold); }

/* ---------- Notification ---------- */
.notify {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--navy); color: #fff;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-size: 0.9rem; z-index: 2000;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s; pointer-events: none;
}
.notify.show { opacity: 1; transform: translateY(0); }

/* ---------- Image gallery ---------- */
.img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.img-row.three { grid-template-columns: 1fr 1fr 1fr; }
.img-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.img-card img { width: 100%; }
.img-card figcaption {
  background: rgba(26,53,96,0.05);
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem; color: var(--text-light);
  font-style: italic;
}

/* ---------- Country Toggle ---------- */
.country-toggle-wrap {
  display: flex; justify-content: center; gap: 0;
  margin: 0 auto 2.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 50px;
  width: fit-content;
  padding: 5px;
}
.country-btn {
  padding: 0.65rem 2rem;
  border-radius: 50px;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
  color: #8899bb;
  letter-spacing: 0.02em;
}
.country-btn.active {
  background: var(--gold);
  color: var(--navy-dark);
}
.country-btn:hover:not(.active) {
  color: var(--gold);
}
.country-panel { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ---------- Canadian Families ---------- */
.canada-families { display: grid; gap: 1.5rem; margin-top: 1rem; }

.family-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 5px solid var(--gold);
  box-shadow: 0 2px 12px rgba(26,53,96,0.07);
}
.family-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem;
}
.family-name {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy);
}
.family-wealth {
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
}
.family-card p { color: var(--text-mid); margin-bottom: 0.75rem; }
.family-card p:last-child { margin-bottom: 0; }

.canada-callout {
  background: var(--navy);
  color: #c5d5e8;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
  border-left: 4px solid var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .two-col, .three-col, .action-grid { grid-template-columns: 1fr; }
  .sources-list { grid-template-columns: 1fr; }
  .img-row { grid-template-columns: 1fr; }
  .img-row.three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hamburger { display: flex; }
  .hero-stat-bar { gap: 1rem; }
  .zip-form { flex-direction: column; }
  .img-row.three { grid-template-columns: 1fr; }
  .compare-label { min-width: 120px; font-size: 0.78rem; }
}
