:root {
  --navy: #16356b;
  --navy-dark: #0f274f;
  --coral: #f06a6a;
  --coral-dark: #d94f4f;
  --cream: #fbf8f4;
  --paper: #ffffff;
  --ink: #23303f;
  --muted: #5b6675;
  --line: #e4e0d8;
  --soft: #f3efe8;
  --shadow: 0 6px 24px rgba(22, 53, 107, 0.08);
  --max: 1080px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

a { color: var(--navy); }
a:hover { color: var(--coral-dark); }

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 3px solid var(--coral);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; }
.brand img { height: 52px; width: auto; }
.nav-toggle {
  display: none;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}
.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
}
.main-nav a:hover { background: var(--soft); }
.main-nav a.active { background: var(--navy); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  background: var(--navy);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.hero-overlay {
  position: relative;
  padding: 86px 22px;
  max-width: 860px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 12px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero .kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffd9d9;
  margin-bottom: 14px;
}
.hero p.lead {
  font-size: 1.2rem;
  margin: 0 auto 26px;
  max-width: 640px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ---------- Page header (interior) ---------- */
.page-head {
  background: var(--navy);
  color: #fff;
  padding: 48px 22px;
  text-align: center;
}
.page-head h1 { margin: 0 0 8px; font-size: 2.1rem; }
.page-head p { margin: 0 auto; max-width: 680px; color: #d8e0ef; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s;
}
.btn:hover { background: var(--coral-dark); color: #fff; }
.btn.secondary { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.5); }
.btn.secondary:hover { background: rgba(255,255,255,0.26); }
.btn.navy { background: var(--navy); }
.btn.navy:hover { background: var(--navy-dark); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 54px 0; }
section.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 0 6px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 38px;
}
h2 { color: var(--navy); }
h3 { color: var(--navy-dark); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }
.card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}

/* ---------- Feature row (image + text) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature img { border-radius: 12px; box-shadow: var(--shadow); }
.feature.reverse .feature-text { order: 2; }
@media (max-width: 760px) {
  .feature { grid-template-columns: 1fr; }
  .feature.reverse .feature-text { order: 0; }
}

/* ---------- Annotated initiative ---------- */
.annotation {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--navy);
  border-radius: 10px;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.annotation .law {
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 1.02rem;
  background: #fcfbf9;
}
.annotation .law .tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--soft);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.annotation .note {
  padding: 18px 24px;
  background: #fff7f4;
  border-top: 1px solid #f3ddd6;
}
.annotation .note .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--coral-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.annotation.critical { border-left-color: var(--coral); }
.annotation.critical .note .tag { color: #b03030; }
.annotation.critical .note { background: #fdeeee; }

/* ---------- Myth/fact list ---------- */
.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.fact-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px 16px 52px;
  position: relative;
  box-shadow: var(--shadow);
}
.fact-list li::before {
  content: "✕";
  position: absolute;
  left: 16px; top: 16px;
  color: var(--coral-dark);
  font-weight: 800;
  font-size: 1.1rem;
}
.good-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.good-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px 16px 52px;
  position: relative;
  box-shadow: var(--shadow);
}
.good-list li::before {
  content: "✓";
  position: absolute;
  left: 16px; top: 15px;
  color: #2e9e5b;
  font-weight: 800;
  font-size: 1.15rem;
}

/* ---------- Link lists / resources ---------- */
.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.link-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.link-list li a { font-weight: 700; text-decoration: none; }
.link-list li a:hover { text-decoration: underline; }
.link-list .desc { color: var(--muted); font-size: 0.95rem; margin-top: 3px; }
.ext::after { content: " ↗"; font-size: 0.8em; color: var(--muted); }

.resource-group { margin-bottom: 40px; }
.resource-group h2 { border-bottom: 2px solid var(--coral); padding-bottom: 8px; }

/* ---------- Callout ---------- */
.callout {
  background: #fff7f4;
  border: 1px solid #f3ddd6;
  border-left: 5px solid var(--coral);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 26px 0;
}
.callout strong { color: var(--coral-dark); }

.note-box {
  background: var(--soft);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 30px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #cdd6e6;
  padding: 40px 22px 28px;
  margin-top: 10px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}
.site-footer h4 { color: #fff; margin: 0 0 12px; }
.site-footer a { color: #ffd9d9; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 7px; }
.footer-bottom {
  max-width: var(--max);
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: #9fadc6;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }

/* ---------- Responsive nav ---------- */
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    flex-basis: 100%;
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 10px 12px; }
  .hero h1 { font-size: 2rem; }
}
