
  :root {
    --navy: #1a2744;
    --navy-dark: #111b30;
    --navy-mid: #243358;
    --gold: #f0a500;
    --gold-light: #f5c040;
    --gold-pale: #fdf3d8;
    --green: #2d5a27;
    --green-light: #e8f2e7;
    --white: #ffffff;
    --off-white: #f8f7f3;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-muted: #6b6b6b;
    --border: #ddd8cc;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

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

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

  a { color: inherit; }

  /* ── SKIP NAV ── */
  .skip-nav {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s;
    z-index: 999;
  }
  .skip-nav:focus { top: 0; }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 0.4rem 1rem;
  }
  .topbar a { text-decoration: none; color: var(--navy-dark); }
  .topbar a:hover { text-decoration: underline; }

  /* ── NAV ── */
  nav {
    background: var(--navy-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--gold);
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }
  .nav-brand img {
    height: 52px;
    width: 52px;
    object-fit: contain;
  }
  .nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .nav-brand-text .name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
  }
  .nav-brand-text .tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }
  .nav-links a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
  }
  .nav-links a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.07);
  }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 4px !important;
  }
  .nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy-dark) !important;
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: transform 0.2s;
  }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem 4.5rem;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240,165,0,0.08) 0%, transparent 70%),
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 41px
      );
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .hero-label {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }
  .hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 500px;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.02em;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
  }
  .btn-gold:hover { background: var(--gold-light); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
  .btn-navy {
    background: var(--navy);
    color: var(--white);
  }
  .btn-navy:hover { background: var(--navy-mid); }
  .btn-green {
    background: var(--green);
    color: var(--white);
  }
  .btn-green:hover { background: #3a7033; }

  /* Hero visual — stat cards */
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .hero-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
  }
  .hero-stat:first-child {
    grid-column: span 2;
    background: rgba(240,165,0,0.12);
    border-color: rgba(240,165,0,0.3);
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .hero-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .hero-stat-detail {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 0.35rem;
  }

  /* ── SECTION SHARED ── */
  section { padding: 4.5rem 1.5rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: block;
  }
  .section-label.green { color: var(--green); }
  h2.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-lead {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  /* ── MISSION STRIP ── */
  .mission-strip {
    background: var(--gold-pale);
    border-top: 4px solid var(--gold);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
  }
  .mission-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .mission-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mission-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
  }
  .mission-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    color: var(--navy-dark);
    line-height: 1.6;
  }
  .mission-text strong {
    font-style: normal;
    color: var(--green);
  }

  /* ── FOCUS AREAS ── */
  .focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .focus-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }
  .focus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,39,68,0.12);
  }
  .focus-card-accent {
    height: 5px;
  }
  .accent-gold { background: var(--gold); }
  .accent-green { background: var(--green); }
  .accent-navy { background: var(--navy); }
  .focus-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .focus-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 22px;
  }
  .focus-icon-gold { background: var(--gold-pale); color: var(--navy-dark); }
  .focus-icon-green { background: var(--green-light); color: var(--green); }
  .focus-icon-navy { background: rgba(26,39,68,0.07); color: var(--navy); }
  .focus-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .focus-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
  }
  .focus-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
  }
  .focus-link::after {
    content: '→';
    transition: transform 0.15s;
  }
  .focus-card:hover .focus-link::after {
    transform: translateX(4px);
  }

  /* ── WIN BANNER ── */
  .win-banner {
    background: var(--navy);
    color: var(--white);
    padding: 3.5rem 1.5rem;
  }
  .win-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .win-label {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1rem;
  }
  .win-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1rem;
  }
  .win-inner h2 em {
    color: var(--gold);
    font-style: normal;
  }
  .win-inner p {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  .win-milestones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .milestone {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .milestone-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
  }
  .milestone-text {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
  }
  .milestone-text strong {
    color: var(--white);
  }

  /* ── SWAT SECTION ── */
  .swat-section {
    background: var(--green-light);
    border-top: 1px solid #c8ddc6;
    border-bottom: 1px solid #c8ddc6;
  }
  .swat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .swat-section .section-label { color: var(--green); }
  .swat-section h2.section-title { color: var(--green); }
  .swat-chapters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
  .chapter-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid #c8ddc6;
    border-radius: 6px;
    padding: 0.85rem 1.1rem;
  }
  .chapter-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .chapter-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    flex: 1;
  }
  .chapter-count {
    font-size: 13px;
    color: var(--text-muted);
  }
  .swat-theme {
    background: var(--navy);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
  }
  .swat-theme-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
  }
  .swat-theme-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  .swat-theme-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.25rem;
  }

  /* ── JOIN SECTION ── */
  .join-section { background: var(--off-white); }
  .join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
  .sector-tag {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--navy);
    border-radius: 4px;
    padding: 0.5rem 0.65rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.3;
  }
  .meeting-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .meeting-card-header {
    background: var(--navy);
    padding: 1.25rem 1.5rem;
    color: var(--white);
  }
  .meeting-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .meeting-card-header p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
  }
  .meeting-card-body {
    padding: 1.5rem;
  }
  .meeting-row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .meeting-row:last-child { border-bottom: none; }
  .meeting-row-icon {
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
  }
  .meeting-row-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
  }
  .meeting-row-value {
    font-weight: 600;
    color: var(--navy);
  }

  /* ── QUIT SECTION ── */
  .quit-section { background: var(--white); }
  .quit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .quit-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .quit-card-num {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
    flex-shrink: 0;
  }
  .quit-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }
  .quit-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
  }
  .quit-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
  }
  .quit-link:hover { border-color: var(--green); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
  }
  .footer-brand img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
  .footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .footer-legal {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
  }
  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }
  .footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
  }
  .footer-bottom a:hover { color: var(--gold); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .focus-grid { grid-template-columns: 1fr; }
    .win-inner { grid-template-columns: 1fr; }
    .swat-grid { grid-template-columns: 1fr; }
    .join-grid { grid-template-columns: 1fr; }
    .quit-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .mission-strip-inner { flex-direction: column; text-align: center; }
  }
  @media (max-width: 700px) {
    nav { display: block; }
    .nav-links {
      display: none;
      flex-direction: column;
      align-items: stretch;
      background: var(--navy);
      padding: 1rem;
      gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.75rem 1rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav-toggle { display: block; }
    .hero-visual { grid-template-columns: 1fr 1fr; }
    .sector-grid { grid-template-columns: 1fr 1fr; }
    .focus-grid { grid-template-columns: 1fr; }
    .quit-grid { grid-template-columns: 1fr; }
  }

  /* ── INNER PAGE HERO ── */
  .page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 1.5rem 2.5rem;
    border-bottom: 3px solid var(--gold);
  }
  .page-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .page-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
  }
  .page-hero .breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
  }
  .page-hero .breadcrumb a:hover { color: var(--gold); }
  .page-hero .breadcrumb span { margin: 0 0.4rem; }
  .page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
  .page-hero h1 em {
    font-style: normal;
    color: var(--gold);
  }
  .page-hero .page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    max-width: 600px;
    line-height: 1.75;
  }

  /* ── INNER PAGE CONTENT ── */
  .content-section { padding: 4rem 1.5rem; }
  .content-section.alt { background: var(--off-white); }
  .content-section.white { background: var(--white); }
  .content-section.navy { background: var(--navy); color: var(--white); }
  .content-section.green-light { background: var(--green-light); }
  .content-inner { max-width: 1100px; margin: 0 auto; }
  .content-inner.narrow { max-width: 760px; }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .two-col.align-center { align-items: center; }

  @media (max-width: 800px) {
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
  }

  /* ── PROSE ── */
  .prose h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2rem 0 0.75rem;
  }
  .prose h2:first-child { margin-top: 0; }
  .prose h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.5rem 0 0.5rem;
  }
  .prose p { margin-bottom: 1rem; color: var(--text-mid); line-height: 1.8; }
  .prose ul { margin: 0 0 1rem 1.25rem; }
  .prose li { color: var(--text-mid); line-height: 1.75; margin-bottom: 0.35rem; }
  .prose strong { color: var(--text-dark); }

  /* ── HIGHLIGHT BOX ── */
  .highlight-box {
    border-left: 4px solid var(--gold);
    background: var(--gold-pale);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
  }
  .highlight-box.green {
    border-color: var(--green);
    background: var(--green-light);
  }
  .highlight-box.navy {
    border-color: var(--navy);
    background: rgba(26,39,68,0.05);
  }
  .highlight-box p { margin: 0; color: var(--text-dark); }
  .highlight-box strong { color: var(--navy); }

  /* ── STATUS BADGE ── */
  .status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
  }
  .status-badge.in-progress { background: #fff3cd; color: #856404; }
  .status-badge.complete { background: var(--green-light); color: var(--green); }
  .status-badge.upcoming { background: rgba(26,39,68,0.08); color: var(--navy); }

  /* ── POLICY TIMELINE ── */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 1.5rem 0;
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--border);
  }
  .timeline-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 0 0 1.5rem;
    position: relative;
  }
  .timeline-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
  }
  .timeline-dot.done { background: var(--green); color: var(--white); }
  .timeline-dot.active { background: var(--gold); color: var(--navy-dark); }
  .timeline-dot.next { background: var(--white); border: 2px solid var(--border); color: var(--text-muted); }
  .timeline-content { padding-top: 0.4rem; }
  .timeline-content h4 {
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 0.25rem;
  }
  .timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* ── RESOURCE CARDS ── */
  .resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .resource-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  .resource-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }
  .resource-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
  }
  .resource-card a {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
    align-self: flex-start;
  }
  .resource-card a:hover { border-color: var(--green); }

  /* ── CONTACT FORM ── */
  .form-group { margin-bottom: 1.25rem; }
  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.15s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--navy);
  }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 0.4rem;
  }
