/* ============================================================
   Cumberland Conservative Coalition — Global Stylesheet
   All pages link to this file. No duplicate rules.
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
:root {
  --navy:       #011434;
  --crimson:    #7f070a;
  --gold:       #a4833f;
  --white:      #FFFFFF;
  --light-grey: #F5F5F5;
  --gold-light: #c9a96e;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── FIXED TOP BAR ────────────────────────────────────────── */
#top-bar {
  background: var(--white);
  display: grid;
  grid-template-columns: 155px 1fr auto;
  align-items: center;
  padding: 14px 48px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(164,131,63,0.2);
  gap: 20px;
  transition: padding 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
#top-bar.scrolled {
  padding: 6px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
#top-bar a { text-decoration: none; }
#top-bar-logo {
  height: 72px;
  width: 155px;
  object-fit: contain;
  object-position: left center;
  transition: height 0.35s cubic-bezier(0.22,1,0.36,1);
  display: block;
}
#top-bar.scrolled #top-bar-logo { height: 44px; }
#top-bar nav { display: flex; justify-content: center; }
#top-bar nav ul { display: flex; list-style: none; gap: 44px; }
#top-bar nav ul li a {
  color: var(--navy);
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}
#top-bar nav ul li a:hover { opacity: 1; color: var(--crimson); }
#top-bar .join-btn {
  background: var(--crimson);
  color: var(--white);
  padding: 13px 22px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
  white-space: nowrap;
  justify-self: end;
  display: block;
  text-align: center;
  line-height: 1.3;
}
#top-bar .join-btn:hover { background: #9a0910; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 88vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  margin-top: 100px;
}
#hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.05);
}
#hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(1,20,52,0.72) 75%, rgba(1,20,52,0.95) 100%),
    linear-gradient(
      to bottom,
      rgba(1,20,52,0.45) 0%,
      rgba(1,20,52,0.20) 40%,
      rgba(1,20,52,0.65) 100%
    );
}
#hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 820px;
  padding: 0 24px;
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gold-rule { width: 80px; height: 2px; background: var(--gold); border: none; }
#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
#hero p.subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 620px;
  font-weight: 300;
}
.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint::after {
  content: '';
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ── REGISTRATION BAR ─────────────────────────────────────── */
#register {
  background: var(--crimson);
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#register h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--white); font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.5px;
}
#register p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 16px; }
.register-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 600px; margin: 0 auto; }
.register-form input {
  flex: 1; min-width: 220px;
  padding: 15px 22px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px; border-radius: 3px; outline: none;
  transition: border-color 0.2s;
}
.register-form input::placeholder { color: rgba(255,255,255,0.55); }
.register-form input:focus { border-color: var(--gold); }
.btn-gold {
  background: var(--gold); color: var(--white); border: none;
  padding: 15px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; border-radius: 3px;
  transition: background 0.2s, transform 0.1s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── CANDIDATE SPOTLIGHT ──────────────────────────────────── */
#candidate {
  background: var(--white);
  padding: 88px 48px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.candidate-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 320px 1fr;
  gap: 72px; align-items: center;
}
.candidate-photo {
  width: 100%; max-width: 420px; aspect-ratio: 3/4;
  background: var(--light-grey); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1px solid rgba(164,131,63,0.3);
}
.candidate-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.candidate-photo-placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; color: rgba(1,20,52,0.3);
}
.candidate-photo-placeholder svg { width: 80px; height: 80px; opacity: 0.3; }
.candidate-photo-placeholder span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.candidate-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.candidate-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 24px;
}
.candidate-info p { color: #3a3a3a; font-size: 17px; line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
.btn-navy {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 14px 30px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: background 0.2s, transform 0.1s; border: none; cursor: pointer;
}
.btn-navy:hover { background: #02235c; transform: translateY(-1px); }

/* ── MISSION ──────────────────────────────────────────────── */
#mission { background: var(--white); padding: 100px 48px; }
.section-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.section-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 32px;
}
.section-inner p { font-size: 18px; line-height: 1.85; color: #444; font-weight: 300; max-width: 760px; margin: 0 auto; }

/* ── PILLARS ──────────────────────────────────────────────── */
#pillars { background: var(--light-grey); padding: 100px 48px; position: relative; overflow: hidden; }
#pillars::before { content:''; position:absolute; top:0;left:0;right:0;height:3px; background:linear-gradient(to right,transparent,var(--gold),transparent); }
#pillars::after  { content:''; position:absolute; bottom:0;left:0;right:0;height:3px; background:linear-gradient(to right,transparent,var(--gold),transparent); }
#pillars .section-inner { max-width: 1100px; }
#pillars .section-inner > p { margin-bottom: 64px; font-size: 18px; line-height: 1.85; color: #444; font-weight: 300; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.pillar-card {
  background: var(--white); padding: 48px 36px; border-radius: 4px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 32px rgba(1,20,52,0.06);
  transition: transform 0.25s, box-shadow 0.25s; text-align: left;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(1,20,52,0.12); }
.pillar-number { font-family:'Playfair Display',serif; font-size:52px; font-weight:900; color:rgba(1,20,52,0.07); line-height:1; margin-bottom:16px; }
.pillar-card h3 { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--navy); margin-bottom:16px; }
.pillar-card p { font-size:15px; line-height:1.8; color:#555; font-weight:300; }

/* ── CTA BANNER ───────────────────────────────────────────── */
#cta-banner { background:var(--navy); padding:100px 48px; text-align:center; position:relative; overflow:hidden; }
#cta-flag {
  position:absolute; right:0; top:0; bottom:0; width:55%;
  background-size:cover; background-position:center left;
  mask-image:linear-gradient(to right,transparent 0%,rgba(0,0,0,0.6) 35%,rgba(0,0,0,0.85) 100%);
  -webkit-mask-image:linear-gradient(to right,transparent 0%,rgba(0,0,0,0.6) 35%,rgba(0,0,0,0.85) 100%);
  opacity:0.18;
}
#cta-banner .cta-content { position:relative; z-index:2; max-width:680px; margin:0 auto; }
#cta-banner h2 { font-family:'Playfair Display',serif; font-size:clamp(34px,4vw,56px); color:var(--white); font-weight:700; margin-bottom:20px; line-height:1.15; }
#cta-banner p  { color:rgba(255,255,255,0.72); font-size:18px; margin-bottom:36px; line-height:1.75; font-weight:300; }
.btn-crimson {
  display:inline-block; background:var(--crimson); color:var(--white);
  padding:18px 44px;
  font-family:'Source Sans 3',sans-serif; font-weight:700; font-size:13px;
  letter-spacing:2.5px; text-transform:uppercase; text-decoration:none;
  border-radius:3px; border:none; cursor:pointer;
  transition:background 0.2s, transform 0.15s;
}
.btn-crimson:hover { background:#9a0910; transform:translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background:#000d1e; padding:56px 48px 32px; color:rgba(255,255,255,0.5); }
.footer-inner { max-width:1100px; margin:0 auto; }
.footer-top {
  display:grid; grid-template-columns:180px 1fr 1fr;
  gap:48px; padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom:32px;
}
.footer-logo img { height:70px; object-fit:contain; opacity:0.9; }
.footer-col h4 { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:14px; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--gold-light); }
.social-link { display:flex; align-items:center; gap:8px; }
.social-link svg { flex-shrink:0; opacity:0.7; transition:opacity 0.2s; }
.social-link:hover svg { opacity:1; }
.disclaimer-box {
  background:rgba(127,7,10,0.15); border:1px solid rgba(127,7,10,0.4);
  border-radius:3px; padding:16px 20px; font-size:12px;
  color:rgba(255,255,255,0.45); line-height:1.6; text-align:center;
  margin-bottom:24px; letter-spacing:0.3px;
}
.footer-bottom { display:flex; justify-content:space-between; align-items:center; font-size:12px; color:rgba(255,255,255,0.25); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.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; }

/* ── PRIVACY PAGE ─────────────────────────────────────────── */
:root {
    --navy: #011434;
    --crimson: #7f070a;
    --gold: #a4833f;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --gold-light: #c9a96e;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── TOP BAR ── */
  #top-bar {
    background: var(--white);
    display: grid;
    grid-template-columns: 155px 1fr auto;
    align-items: center;
    padding: 14px 48px;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(164,131,63,0.2);
    gap: 20px;
    transition: padding 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
  }
  #top-bar.scrolled {
    padding: 6px 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  }
  #top-bar-logo {
    height: 72px;
    width: 155px;
    object-fit: contain;
    object-position: left center;
    transition: height 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  #top-bar.scrolled #top-bar-logo { height: 44px; }
  #top-bar nav {
    display: flex;
    justify-content: center;
  }
  #top-bar nav ul {
    display: flex;
    list-style: none;
    gap: 44px;
  }
  #top-bar nav ul li a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.65;
    transition: opacity 0.2s, color 0.2s;
    white-space: nowrap;
  }
  #top-bar nav ul li a:hover { opacity: 1; color: var(--crimson); }
  #top-bar .join-btn {
    background: var(--crimson);
    color: var(--white);
    padding: 13px 22px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
    white-space: nowrap;
    justify-self: end;
    display: block;
    text-align: center;
    line-height: 1.3;
  }
  #top-bar .join-btn:hover { background: #9a0910; }

  /* ── PAGE HEADER ── */
  #page-header {
    background: var(--navy);
    padding: 120px 48px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #page-header::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
    );
  }
  #page-header .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
  }
  #page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    position: relative;
    margin-bottom: 20px;
  }
  #page-header .meta {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
  }
  .gold-rule {
    width: 60px;
    height: 2px;
    background: var(--gold);
    border: none;
    margin: 0 auto 24px;
    position: relative;
  }

  /* ── PRIVACY CONTENT ── */
  #privacy-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 48px 100px;
  }

  .policy-intro {
    font-size: 18px;
    line-height: 1.85;
    color: #444;
    font-weight: 300;
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(164,131,63,0.2);
  }

  .policy-section {
    margin-bottom: 52px;
  }
  .policy-section:last-child { margin-bottom: 0; }

  .section-number {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-grey);
  }

  .policy-section p {
    font-size: 16px;
    line-height: 1.85;
    color: #3a3a3a;
    font-weight: 300;
    margin-bottom: 16px;
  }
  .policy-section p:last-child { margin-bottom: 0; }

  .policy-section ul {
    list-style: none;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .policy-section ul li {
    font-size: 16px;
    line-height: 1.75;
    color: #3a3a3a;
    font-weight: 300;
    padding-left: 20px;
    position: relative;
  }
  .policy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 2px;
    background: var(--gold);
  }
  .policy-section ul li strong {
    font-weight: 700;
    color: var(--navy);
  }

  .highlight-box {
    background: var(--light-grey);
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 0 3px 3px 0;
  }
  .highlight-box p {
    margin: 0 !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
  }

  /* ── CONTACT CALLOUT ── */
  #contact-callout {
    background: var(--navy);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #contact-callout::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
    );
  }
  #contact-callout h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
  }
  #contact-callout p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 28px;
    position: relative;
  }
  .disclaimer-note {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    font-style: italic;
  }

  /* ── FOOTER ── */
  footer {
    background: #000d1e;
    padding: 48px 48px 28px;
    color: rgba(255,255,255,0.5);
  }
  .footer-inner { max-width: 1100px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
  }
  .footer-logo img { height: 70px; object-fit: contain; opacity: 0.9; }
  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .disclaimer-box {
    background: rgba(127,7,10,0.15);
    border: 1px solid rgba(127,7,10,0.4);
    border-radius: 3px;
    padding: 14px 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }

  @media (max-width: 768px) {
    #top-bar { grid-template-columns: auto auto; justify-content: space-between; padding: 10px 20px; gap: 0; }
    #top-bar nav { display: none; }
    #page-header { padding: 110px 24px 56px; }
    #privacy-content { padding: 56px 24px 80px; }
    #contact-callout { padding: 56px 24px; }
    footer { padding: 40px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
  }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  #top-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; overflow: hidden; box-sizing: border-box; width: 100%; }
  #top-bar-logo { height: 52px; width: auto; flex-shrink: 0; max-width: 60%; }
  #top-bar nav { display: none; }
  #top-bar.scrolled { padding: 6px 16px; }
  #top-bar .join-btn { padding: 10px 16px; font-size: 11px; letter-spacing: 1.5px; flex-shrink: 0; }
  #hero { margin-top: 76px; }
  .candidate-inner { grid-template-columns: 1fr; }
  .candidate-photo { aspect-ratio: 3/4; max-width: 320px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  #register, #mission, #pillars, #candidate, #cta-banner, footer { padding-left: 24px; padding-right: 24px; }
  #cta-flag { width: 100%; opacity: 0.08; }
}

/* ── RECAPTCHA ───────────────────────────────────────────── */
.grecaptcha-badge { visibility: hidden; }
