/* ============================================================
   DAN FOR RANSON — Campaign Website Stylesheet
   danforranson.org | Ranson City Council 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:       #1B3A6B;
  --navy-dark:  #0F2347;
  --navy-light: #243F75;
  --red:        #C8102E;
  --red-dark:   #A50D25;
  --gold:       #C9A84C;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --gray-light: #E8EDF4;
  --gray:       #6B7280;
  --text-dark:  #1A1A2E;
  --dfr-font-scale: 1;
  --dfr-root-font-size: 16px;
  --anchor-offset: 7rem;
}

/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: var(--dfr-root-font-size, 16px);
  scroll-padding-top: var(--anchor-offset);
}

[id] {
  scroll-margin-top: calc(var(--anchor-offset) + 0.5rem);
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  padding-top: 80px;
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

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

a { transition: color 0.2s; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 4000;
  background: #fff;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 168, 76, 0.92);
  outline-offset: 2px;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  text-align: center;
}
.announce-bar p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.announce-bar span { color: var(--red); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  transition: background 0.3s;
}
.navbar.scrolled {
  background: rgba(15, 35, 71, 0.97);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img { height: 70px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-ctas { display: flex; align-items: center; gap: 0.6rem; }

.dfr-google-translate-root {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0 !important;
}
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

.dfr-lang-fab {
  position: fixed !important;
  right: 18px !important;
  left: auto !important;
  top: auto !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  transform: none !important;
  z-index: 2500 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}
.dfr-lang-fab-toggle {
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(8,18,38,0.28);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dfr-lang-fab-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(8,18,38,0.32);
}
.dfr-lang-fab-toggle:focus-visible {
  outline: 3px solid rgba(201,168,76,0.8);
  outline-offset: 2px;
}
.dfr-lang-fab-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.86;
  margin-bottom: 0.18rem;
}
.dfr-lang-fab-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.dfr-lang-fab-menu {
  width: 210px;
  padding: 0.45rem;
  border-radius: 14px;
  border: 1px solid rgba(15,35,71,0.12);
  background: #fff;
  box-shadow: 0 16px 40px rgba(9,22,44,0.2);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.2s ease;
}

.dfr-a11y-fab {
  position: fixed !important;
  left: 18px !important;
  right: auto !important;
  top: auto !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  z-index: 2500 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.dfr-a11y-toggle {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(160deg, #0b1f42 0%, #1b3a6b 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(8,18,38,0.28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dfr-a11y-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(8,18,38,0.32);
}
.dfr-a11y-toggle:focus-visible {
  outline: 3px solid rgba(201,168,76,0.8);
  outline-offset: 2px;
}
.dfr-a11y-menu {
  width: 240px;
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(15,35,71,0.12);
  background: #fff;
  box-shadow: 0 16px 40px rgba(9,22,44,0.2);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.2s ease;
}
.dfr-a11y-fab.open .dfr-a11y-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.dfr-a11y-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-dark);
  margin-bottom: 0.58rem;
}
.dfr-a11y-size-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}
.dfr-a11y-size-btn {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: var(--navy-dark);
  border-radius: 8px;
  padding: 0.35rem 0.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  cursor: pointer;
}
.dfr-a11y-size-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.dfr-a11y-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #334155;
  margin-bottom: 0.42rem;
}
.dfr-a11y-check input {
  accent-color: var(--navy);
}
.dfr-a11y-reset {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #1e293b;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  cursor: pointer;
}
.dfr-a11y-reset:hover {
  background: #f8fafc;
}

body.dfr-high-contrast {
  filter: contrast(1.14);
}
body.dfr-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
body.dfr-reduced-motion *,
body.dfr-reduced-motion *::before,
body.dfr-reduced-motion *::after {
  animation: none !important;
  transition: none !important;
}
.dfr-lang-fab.open .dfr-lang-fab-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.dfr-lang-option {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.52rem 0.7rem;
  margin-bottom: 0.2rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.dfr-lang-option:last-child {
  margin-bottom: 0;
}
.dfr-lang-option:hover {
  background: rgba(27,58,107,0.08);
}
.dfr-lang-option.active {
  background: var(--navy);
  color: #fff;
  border-color: rgba(201,168,76,0.45);
}
.dfr-lang-option .lang-code {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}
.dfr-lang-option .lang-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.79rem;
}

html[dir='rtl'] body {
  direction: rtl;
}
html[dir='rtl'] .dfr-lang-fab {
  right: auto !important;
  left: 18px !important;
  top: auto !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  align-items: flex-start;
}
html[dir='rtl'] .dfr-lang-fab-menu {
  transform-origin: bottom left;
}
html[dir='rtl'] .dfr-a11y-fab {
  left: auto !important;
  right: 18px !important;
}
html[dir='rtl'] .dfr-a11y-menu {
  transform-origin: bottom right;
}
html[dir='rtl'] .skip-link {
  left: auto;
  right: 12px;
}

.btn-nav-primary {
  background: var(--red);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-nav-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-secondary:hover { border-color: var(--gold); color: var(--gold) !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: white;
  font-size: 1.4rem;
  line-height: 1;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.82);
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.mobile-menu-ctas {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.btn-mobile-primary {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 0.85rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
}
.btn-mobile-secondary {
  display: block;
  text-align: center;
  background: transparent;
  color: #fff;
  padding: 0.85rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: -7%;
  background: url('../images/dan%20landscape.avif') center/cover no-repeat;
  animation: dfr-kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(15,35,71,0.97) 0%,  rgba(15,35,71,0.88) 35%, rgba(15,35,71,0.50) 62%, transparent 82%),
    linear-gradient(to bottom, rgba(0,0,0,0.28)    0%,  transparent 38%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.75rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  max-width: 820px;
  line-height: 1.1;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.65;
}
.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--red);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-decoration: none;
  border: 2px solid var(--red);
  display: inline-block;
  transition: all 0.25s;
}
.btn-hero-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.4);
}
.btn-hero-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}
.btn-hero-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-hero-secondary.on-light {
  color: var(--navy);
  border-color: rgba(27,58,107,0.45);
  background: #fff;
}
.btn-hero-secondary.on-light:hover {
  color: var(--navy-dark);
  border-color: var(--navy);
  background: rgba(27,58,107,0.06);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--red);
  padding: 1.1rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  width: max-content;
  display: flex;
  align-items: center;
  animation: trust-ticker-scroll 34s linear infinite;
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-right: 2.5rem;
  white-space: nowrap;
}
.trust-item {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.15;
}
.trust-item i { color: rgba(255,255,255,0.65); font-size: 1.35rem; }
.trust-sep { color: rgba(255,255,255,0.3); font-size: 1.5rem; line-height: 1; }

@keyframes trust-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section { padding: 5rem 1.5rem; }
.section-white { background: #fff; }
.section-light { background: var(--off-white); }
.section-navy { background: var(--navy); color: white; }
.section-navy-dark { background: var(--navy-dark); color: white; }

.section-inner { max-width: 1280px; margin: 0 auto; }
.section-inner-narrow { max-width: 860px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.section-label-gold { color: var(--gold); }

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
}
.section-title-white { color: white; }

.section-body {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.85;
  max-width: 740px;
}
.section-body-white { color: rgba(255,255,255,0.8); }

/* ============================================================
   PROMISE SECTION LAYOUT
   ============================================================ */
.promise-layout {
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  gap: 3rem;
  align-items: stretch;
}
.promise-photo-wrap {
  position: relative;
  height: 100%;
  padding-bottom: 1.9rem;
}
.promise-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
  background: var(--gray-light);
  height: 100%;
}
.promise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.promise-photo-logo {
  position: absolute;
  left: 50%;
  bottom: -1.04rem;
  transform: translateX(-50%);
  width: min(76%, 300px);
  padding: 0.02rem 0.08rem;
  border-radius: 6px;
  background: rgba(15,35,71,0.95);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}
.promise-photo-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.promise-content { max-width: 760px; }
.promise-cta-row { margin-top: 2.5rem; }

/* ============================================================
   HOMEPAGE TRANSPORT FEATURE
   ============================================================ */
.transport-spotlight {
  background:
    radial-gradient(circle at 12% 20%, rgba(201,168,76,0.14), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(27,58,107,0.1), transparent 40%),
    #fff;
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}
.transport-spotlight-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 1.8rem;
  align-items: stretch;
}
.transport-spotlight-copy .section-title { margin-bottom: 0.9rem; }
.transport-spotlight-ctas {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.transport-spotlight-card {
  background: linear-gradient(165deg, #0f2347 0%, #1b3a6b 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 42px rgba(15,35,71,0.25);
  padding: 1px 1px 0.95rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  overflow: hidden;
}
.transport-spotlight-card > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.26);
}
.transport-flow-graphic {
  display: grid;
  gap: 0.85rem;
}
.transport-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 0.65rem;
}
.transport-flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.28);
}
.transport-flow-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.26);
  color: var(--gold);
  font-size: 1rem;
}
.transport-flow-step p {
  margin: 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.transport-flow-note {
  margin-top: 0.95rem;
  padding: 0 0.95rem 0.2rem;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.45rem;
  align-items: start;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  line-height: 1.6;
}
.transport-flow-note i {
  color: var(--gold);
  margin-top: 0.12rem;
}

/* ============================================================
   PROMISE / COMMITMENT LIST
   ============================================================ */
.promise-list {
  list-style: none;
  margin: 2.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.promise-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.promise-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.promise-icon i { color: white; font-size: 1rem; }
.promise-text h4 {
  font-size: 1rem; font-weight: 800;
  color: var(--navy-dark); margin-bottom: 0.2rem;
}
.promise-text p { font-size: 0.95rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   ISSUE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.issue-card {
  background: white;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-top: 4px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.issue-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.issue-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.issue-icon i { color: var(--gold); font-size: 1.2rem; }
.issue-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.65rem; }
.issue-card p { font-size: 0.93rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   CAMPAIGN UPDATES (HOME + BLOG)
   ============================================================ */
.home-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.home-update-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbe6f5;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 6px 28px rgba(15, 35, 71, 0.06);
}
.home-update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.home-update-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  background: rgba(201, 168, 76, 0.18);
  color: #7a5e12;
}
.home-update-chip-navy { background: rgba(27, 58, 107, 0.12); color: #1b3a6b; }
.home-update-chip-red { background: rgba(200, 16, 46, 0.14); color: #9e0b26; }
.home-update-card h3 {
  font-size: 1.03rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.home-update-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.66;
}
.home-update-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.95rem;
  color: var(--red);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-update-link i { transition: transform 0.2s ease; }
.home-update-link:hover i { transform: translateX(4px); }

.blog-feature-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  background: linear-gradient(155deg, #ffffff 0%, #f6f9ff 65%, #eef3ff 100%);
  border-radius: 16px;
  border: 1px solid #dbe6f5;
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(9, 22, 44, 0.08);
}
.blog-feature-copy .section-title { margin-bottom: 0.75rem; }
.blog-feature-copy .section-body { margin-bottom: 0.65rem; }
.blog-meta-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.blog-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: rgba(201, 168, 76, 0.2);
  color: #7a5e12;
}
.blog-chip-navy { background: rgba(27, 58, 107, 0.12); color: #1b3a6b; }
.blog-chip-red { background: rgba(200, 16, 46, 0.14); color: #9e0b26; }
.blog-feature-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.blog-feature-visual {
  border-radius: 12px;
  background: radial-gradient(circle at top, rgba(27,58,107,0.9), rgba(15,35,71,1));
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}
.blog-stat-card {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  padding: 0.95rem;
}
.blog-stat-card i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.42rem;
}
.blog-stat-card h3 {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.blog-stat-card p {
  color: rgba(255,255,255,0.76);
  font-size: 0.82rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.blog-card {
  background: #fff;
  border: 1px solid #dbe6f5;
  border-radius: 14px;
  padding: 1.3rem;
  box-shadow: 0 8px 30px rgba(9, 22, 44, 0.06);
}
.blog-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.66;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.95rem;
  color: var(--red);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card-link i { transition: transform 0.2s ease; }
.blog-card-link:hover i { transform: translateX(4px); }

.blog-post-layout {
  background: #fff;
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(9, 22, 44, 0.06);
}
.blog-post-layout p {
  font-size: 0.97rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.blog-post-layout h2 {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 1.45rem 0 0.65rem;
}
.blog-post-layout ul {
  margin: 0.35rem 0 1rem 1.15rem;
  color: #334155;
}
.blog-post-layout li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.blog-post-layout a:not(.btn-hero-primary):not(.btn-hero-secondary):not(.btn-cta-white):not(.btn-cta-outline) {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}
.blog-post-layout a:not(.btn-hero-primary):not(.btn-hero-secondary):not(.btn-cta-white):not(.btn-cta-outline):hover {
  text-decoration: underline;
}
.blog-post-layout .btn-hero-primary,
.blog-post-layout .btn-hero-primary:hover {
  color: #fff;
  text-decoration: none;
}
.blog-post-layout .btn-hero-secondary,
.blog-post-layout .btn-hero-secondary:hover {
  text-decoration: none;
}
.blog-post-cta-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ============================================================
   ACTION CARDS (HOW TO HELP)
   ============================================================ */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2.75rem;
}
.action-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.25s;
}
.action-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.action-card .action-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.25rem; }
.action-card h3 { font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 0.85rem; }
.action-card p { color: rgba(255,255,255,0.72); font-size: 0.93rem; line-height: 1.7; margin-bottom: 1.75rem; }

.btn-action {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-action:hover { background: #b8933c; transform: translateY(-2px); }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  border-left: 5px solid var(--red);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--off-white);
  border-radius: 0 10px 10px 0;
}
.pull-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--navy-dark);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.pull-quote cite {
  font-size: 0.8rem; font-weight: 700;
  color: var(--red); font-style: normal;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ============================================================
   EMAIL / LEAD CAPTURE
   ============================================================ */
.email-signup { background: var(--navy); padding: 5rem 1.5rem; }
.email-signup-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.signup-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.45); }
.form-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }
.form-textarea { resize: vertical; min-height: 90px; }

.btn-form-submit {
  background: var(--red);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}
.btn-form-submit:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-micro { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }

/* ============================================================
   FOOTER CTA BAR
   ============================================================ */
.footer-cta-bar { background: var(--red); padding: 2.75rem 1.5rem; text-align: center; }
.footer-cta-bar h2 {
  color: white; font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 1.5rem;
}
.footer-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-cta-white {
  background: white; color: var(--red);
  padding: 0.9rem 2.25rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 0.08em; text-decoration: none;
  border: 2px solid white; transition: all 0.2s;
}
.btn-cta-white:hover { background: transparent; color: white; }

.btn-cta-outline {
  background: transparent; color: white;
  padding: 0.9rem 2.25rem; border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 0.08em; text-decoration: none; transition: all 0.2s;
}
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img { height: 58px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; line-height: 1.65; }

.footer-social { display: flex; gap: 0.65rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.85rem; transition: all 0.2s;
}
.social-link:hover { background: var(--red); color: white; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }

.footer-email-form { display: flex; gap: 0.5rem; }
.footer-email-input {
  flex: 1; padding: 0.65rem 1rem;
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07); color: white;
  font-size: 0.85rem; font-family: 'Open Sans', sans-serif;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.38); }
.footer-email-input:focus { outline: none; border-color: var(--gold); }
.footer-email-btn {
  background: var(--red); color: white; border: none;
  padding: 0.65rem 1rem; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.75rem; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.footer-email-btn:hover { background: var(--red-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 2rem;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.footer-compliance { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.6; }
.footer-location { font-size: 0.78rem; color: rgba(255,255,255,0.38); text-align: right; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy-dark);
  padding: 5.5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/dan%20landscape.avif') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; color: white; margin-bottom: 1rem;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 4rem; align-items: start; }
.about-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  text-align: center; padding: 0;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
}
.about-photo i { font-size: 3rem; margin-bottom: 1rem; color: rgba(255,255,255,0.2); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem; margin-top: 2rem;
}
.value-card {
  background: white; border-radius: 12px; padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); border-left: 4px solid var(--navy);
}
.value-card h4 { font-size: 0.95rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* Timeline */
.timeline { position: relative; padding-left: 2.25rem; margin-top: 2rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0.5rem; bottom: 0;
  width: 2px; background: var(--navy);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: ''; position: absolute;
  left: -2.44rem; top: 0.3rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-item h4 { font-size: 0.98rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   PRIORITIES PAGE
   ============================================================ */
.priority-block {
  padding: 4rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.priority-block:nth-child(even) { background: var(--off-white); }
.priority-inner { max-width: 900px; margin: 0 auto; }

.priority-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: white;
  padding: 0.4rem 1rem; border-radius: 99px;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.priority-card {
  background: white; border-radius: 12px; padding: 1.75rem;
  margin-top: 1.5rem; box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}
.priority-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 0.75rem;
}
.label-problem { color: var(--red); }
.label-plan { color: var(--navy); }
.label-proof { color: #b45309; }

.priority-card p { color: #4B5563; font-size: 0.93rem; line-height: 1.72; }
.priority-card ul {
  list-style: none; margin-top: 0.85rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.priority-card ul li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.9rem; color: #4B5563;
}
.priority-card ul li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; }

.initiative-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 14px; padding: 2.5rem; margin-top: 2rem; color: white;
}
.initiative-box h3 { font-size: 1.25rem; font-weight: 800; color: var(--gold); margin-bottom: 0.85rem; }
.initiative-box p { color: rgba(255,255,255,0.82); font-size: 0.93rem; line-height: 1.72; margin-bottom: 1rem; }
.initiative-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.initiative-box ul li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.78);
}
.initiative-box ul li::before { content: '→'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.initiative-box .initiative-card-cta {
  margin-top: 1.25rem;
  justify-content: flex-start;
}
.initiative-box .btn-hero-secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.52);
}
.initiative-box .btn-hero-secondary:hover,
.initiative-box .btn-hero-secondary:focus-visible {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

.page-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.priority-quick-nav {
  padding: 0 1.5rem 2.25rem;
  background:
    linear-gradient(180deg, rgba(15,35,71,0.05), rgba(255,255,255,0)),
    var(--white);
  position: relative;
  z-index: 1;
}

.priority-quick-links {
  max-width: 1120px;
  margin: -2.5rem auto 0;
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 18px 48px rgba(15,35,71,0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.priority-quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(27,58,107,0.08);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,247,250,0.9), rgba(255,255,255,1));
  color: var(--navy-dark);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.priority-quick-links a:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,35,71,0.08);
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.initiative-card {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid rgba(27,58,107,0.08);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 12px 36px rgba(15,35,71,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.initiative-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.initiative-card h3 {
  color: var(--navy-dark);
  font-size: 1.25rem;
}

.initiative-card p {
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.72;
}

.initiative-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.initiative-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.initiative-card ul li::before {
  content: '•';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
}

.initiative-card-cta {
  margin-top: auto;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.initiative-card-cta .btn-hero-primary,
.initiative-card-cta .btn-hero-secondary {
  flex: 1 1 180px;
  text-align: center;
}

.policy-quote {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(15,35,71,0.06);
  border-left: 4px solid var(--gold);
  color: var(--navy-dark);
  font-style: italic;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-back-link:hover {
  color: var(--red);
}

.policy-subhead {
  color: var(--navy-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.policy-checklist {
  counter-reset: dfr-checklist;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.policy-checklist li {
  counter-increment: dfr-checklist;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: #374151;
}

.policy-checklist li::before {
  content: counter(dfr-checklist);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.vote-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.vote-decision-card {
  border-radius: 16px;
  padding: 1.35rem;
  border: 1px solid rgba(27,58,107,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(245,247,250,0.92));
}

.vote-decision-card h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.vote-decision-card.vote-yes h3 { color: #0f766e; }
.vote-decision-card.vote-no h3 { color: var(--red); }

.detail-related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.detail-related-links a {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(27,58,107,0.05);
  border: 1px solid rgba(27,58,107,0.08);
  color: var(--navy-dark);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.detail-related-links a:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,35,71,0.08);
}

/* ============================================================
   RANSON FORWARD INVESTMENT PAGE
   ============================================================ */
body[data-priority-detail="ranson-forward-investment"] {
  background: #fff;
  overflow-x: hidden;
}

.rfi-hero {
  padding: 5rem 1.5rem 3rem;
  background:
    radial-gradient(circle at top right, rgba(201,168,76,0.16), transparent 28%),
    linear-gradient(140deg, rgba(15,35,71,1), rgba(17,42,85,0.96));
}

.rfi-hero .page-hero-bg {
  opacity: 0.1;
  filter: saturate(0.75) contrast(1.05);
}

.rfi-hero-shell {
  max-width: 1180px;
  overflow: hidden;
}

.rfi-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.rfi-hero-copy,
.rfi-hero-media,
.rfi-stat-grid,
.rfi-pillars-grid,
.rfi-implementation-grid,
.rfi-accountability-grid,
.rfi-project-grid,
.rfi-rollout,
.rfi-rollout-steps,
.rfi-rollout-copy {
  min-width: 0;
}

.rfi-hero-copy h1 {
  max-width: 100%;
}

body[data-priority-detail="ranson-forward-investment"] .reveal.from-left,
body[data-priority-detail="ranson-forward-investment"] .reveal.from-right {
  transform: translateY(24px);
}

.rfi-hero-copy .section-label {
  margin-bottom: 0.95rem;
}

.rfi-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.32rem);
  font-weight: 800;
  color: var(--gold) !important;
  line-height: 1.45;
  margin-bottom: 0.95rem !important;
  max-width: 660px;
}

.rfi-summary {
  max-width: 700px !important;
  color: rgba(255,255,255,0.84) !important;
}

.rfi-hero-ctas {
  justify-content: flex-start;
}

.rfi-hero-media {
  margin: 0;
  position: relative;
}

.rfi-hero-placeholder {
  position: relative;
  min-height: 380px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 58px rgba(4,12,28,0.38);
  background:
    linear-gradient(180deg, rgba(7,16,33,0.08), rgba(7,16,33,0.82)),
    url('../images/dan%20landscape.avif') center/cover no-repeat;
}

.rfi-hero-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201,168,76,0.22), transparent 38%),
    linear-gradient(120deg, rgba(15,35,71,0.26), rgba(15,35,71,0.86));
}

.rfi-hero-placeholder > * {
  position: relative;
  z-index: 1;
}

.rfi-hero-placeholder-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 27rem;
}

.rfi-hero-placeholder-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(201,168,76,0.16);
  border: 1px solid rgba(201,168,76,0.24);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rfi-hero-placeholder h2 {
  color: white;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  max-width: 12ch;
  margin: 0;
}

.rfi-hero-placeholder p {
  max-width: 28rem !important;
  margin: 0 !important;
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.95rem !important;
  line-height: 1.7;
}

.rfi-hero-placeholder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.rfi-hero-placeholder-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.rfi-hero-media figcaption {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.64);
  font-size: 0.78rem;
}

.rfi-detail-back {
  margin-bottom: 1.5rem;
}

.rfi-stat-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rfi-stat-card {
  border-radius: 18px;
  padding: 1.25rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 40px rgba(7,16,33,0.22);
  backdrop-filter: blur(10px);
}

.rfi-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.14);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.95rem;
}

.rfi-stat-card h2 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.rfi-stat-card p {
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
  line-height: 1.65;
}

.rfi-section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.rfi-pillars-grid,
.rfi-implementation-grid,
.rfi-accountability-grid {
  display: grid;
  gap: 1.25rem;
}

.rfi-pillars-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rfi-expand-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(27,58,107,0.1);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: 0 16px 42px rgba(15,35,71,0.08);
}

.rfi-expand-card summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
}

.rfi-expand-card summary::-webkit-details-marker {
  display: none;
}

.rfi-expand-card[open] {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 22px 46px rgba(15,35,71,0.14);
}

.rfi-expand-card[open] .rfi-expand-toggle {
  background: rgba(27,58,107,0.12);
  color: var(--navy-dark);
}

.rfi-expand-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  font-size: 1.2rem;
}

.rfi-expand-copy {
  display: grid;
  gap: 0.3rem;
}

.rfi-expand-copy strong {
  color: var(--navy-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}

.rfi-expand-copy small {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.rfi-expand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(27,58,107,0.06);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfi-expand-content {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(27,58,107,0.08);
}

.rfi-expand-content p {
  margin-top: 1rem;
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.78;
}

.rfi-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.rfi-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.68;
}

.rfi-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--red);
}

.rfi-truth-section {
  background:
    radial-gradient(circle at top left, rgba(201,168,76,0.12), transparent 22%),
    linear-gradient(155deg, #081426, #0d2040 64%, #142c55);
}

.rfi-truth-block {
  border-radius: 24px;
  padding: 2.35rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 22px 52px rgba(3,9,21,0.3);
}

.rfi-truth-no {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 10vw, 7.4rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.rfi-truth-subhead {
  color: rgba(255,255,255,0.86);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
}

.rfi-inline-disclosure {
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 0.95rem 1rem;
}

.rfi-inline-disclosure summary {
  cursor: pointer;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfi-inline-disclosure p {
  margin-top: 0.7rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.68;
}

.rfi-implementation-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  align-items: stretch;
}

.rfi-implementation {
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid rgba(27,58,107,0.1);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: 0 18px 42px rgba(15,35,71,0.08);
}

.rfi-year-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.rfi-year-button {
  border: 1px solid rgba(27,58,107,0.12);
  background: white;
  color: var(--navy);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.rfi-year-button:hover,
.rfi-year-button:focus-visible,
.rfi-year-button.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15,35,71,0.16);
}

.rfi-rate-table {
  display: grid;
  gap: 0.75rem;
}

.rfi-rate-row {
  display: grid;
  grid-template-columns: 86px 72px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border-radius: 15px;
  padding: 0.85rem 0.95rem;
  background: rgba(27,58,107,0.04);
  border: 1px solid transparent;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.rfi-rate-label {
  color: var(--navy-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfi-rate-row strong {
  color: var(--navy-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.rfi-rate-bar {
  height: 0.82rem;
  border-radius: 999px;
  background: rgba(27,58,107,0.08);
  overflow: hidden;
}

.rfi-rate-bar span {
  display: block;
  width: var(--rfi-bar-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.rfi-implementation[data-active-year="1"] .rfi-rate-row[data-year="1"],
.rfi-implementation[data-active-year="2"] .rfi-rate-row[data-year="2"],
.rfi-implementation[data-active-year="3"] .rfi-rate-row[data-year="3"],
.rfi-implementation[data-active-year="4"] .rfi-rate-row[data-year="4"] {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.1);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15,35,71,0.08);
}

.rfi-year-panel {
  display: none;
  margin-top: 1.15rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(27,58,107,0.06);
}

.rfi-year-panel h3 {
  color: var(--navy-dark);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.rfi-year-panel p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.7;
}

.rfi-implementation[data-active-year="1"] .rfi-year-panel[data-year="1"],
.rfi-implementation[data-active-year="2"] .rfi-year-panel[data-year="2"],
.rfi-implementation[data-active-year="3"] .rfi-year-panel[data-year="3"],
.rfi-implementation[data-active-year="4"] .rfi-year-panel[data-year="4"] {
  display: block;
}

.rfi-stability-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 1.9rem;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(201,168,76,0.16), transparent 25%),
    linear-gradient(160deg, rgba(15,35,71,1), rgba(18,41,82,0.98));
  box-shadow: 0 22px 48px rgba(7,16,33,0.2);
}

.rfi-stability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rfi-stability-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.7rem;
  color: white;
  font-size: 1.35rem;
}

.rfi-stability-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.75;
}

.rfi-stability-timeline {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.rfi-stability-timeline span {
  color: rgba(255,255,255,0.62);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfi-stability-timeline strong {
  color: white;
  font-size: 1rem;
}

.rfi-rollout {
  --rfi-rollout-progress: 10%;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1.3rem;
  align-items: start;
}

.rfi-rollout-track {
  position: relative;
  width: 12px;
  min-height: 100%;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(27,58,107,0.08);
}

.rfi-rollout-track-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--rfi-rollout-progress);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--gold), var(--navy));
  transition: height 0.72s cubic-bezier(0.16,1,0.3,1);
}

.rfi-rollout-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.rfi-rollout-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.rfi-rollout-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid rgba(27,58,107,0.12);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15,35,71,0.08);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.rfi-rollout-copy {
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid rgba(27,58,107,0.08);
  box-shadow: 0 12px 32px rgba(15,35,71,0.06);
}

.rfi-rollout-copy h3 {
  color: var(--navy-dark);
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.rfi-rollout-copy p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.68;
}

.rfi-rollout-step.visible .rfi-rollout-dot,
.rfi-rollout-step.is-current .rfi-rollout-dot {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: scale(1.05);
}

.rfi-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.rfi-project-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(27,58,107,0.1);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: 0 18px 36px rgba(15,35,71,0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.rfi-project-card:hover,
.rfi-project-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 24px 46px rgba(15,35,71,0.16);
}

.rfi-project-image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(15,35,71,0.08);
}

.rfi-project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.rfi-project-card:hover .rfi-project-image,
.rfi-project-card:focus-within .rfi-project-image {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.rfi-project-content {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.rfi-project-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfi-project-kicker i {
  color: var(--gold);
}

.rfi-project-content h3 {
  color: var(--navy-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}

.rfi-project-content p {
  color: #4b5563;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.rfi-accountability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rfi-guard-card {
  border-radius: 20px;
  padding: 1.45rem;
  border: 1px solid rgba(27,58,107,0.08);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: 0 14px 36px rgba(15,35,71,0.08);
}

.rfi-guard-card.rfi-guard-alert {
  background: linear-gradient(180deg, rgba(200,16,46,0.08), rgba(255,255,255,1));
  border-color: rgba(200,16,46,0.2);
}

.rfi-guard-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  font-size: 1.18rem;
  margin-bottom: 0.95rem;
}

.rfi-guard-alert .rfi-guard-icon {
  background: rgba(200,16,46,0.12);
  color: var(--red);
}

.rfi-guard-card h3 {
  color: var(--navy-dark);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.rfi-guard-card p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.72;
}

.rfi-faq-list {
  display: grid;
  gap: 0.85rem;
}

.rfi-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(27,58,107,0.08);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 14px 34px rgba(15,35,71,0.06);
  padding: 1rem 1.2rem;
}

.rfi-faq-item summary {
  cursor: pointer;
  color: var(--navy-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

.rfi-faq-item p {
  margin-top: 0.75rem;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.72;
}

.rfi-get-involved {
  background:
    radial-gradient(circle at top right, rgba(201,168,76,0.16), transparent 25%),
    linear-gradient(155deg, rgba(15,35,71,1), rgba(13,31,62,1));
}

.rfi-get-involved-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 1080px) {
  .rfi-hero-grid,
  .rfi-implementation-grid,
  .rfi-accountability-grid {
    grid-template-columns: 1fr;
  }

  .rfi-pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .rfi-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rfi-hero {
    padding: 3.4rem 1rem 2.15rem;
  }

  .rfi-hero-grid {
    gap: 1.35rem;
    text-align: center;
  }

  .rfi-hero-ctas,
  .rfi-get-involved-actions {
    justify-content: center;
  }

  .rfi-stat-grid {
    grid-template-columns: 1fr;
  }

  .rfi-hero-copy h1 {
    font-size: clamp(2rem, 10.4vw, 2.85rem);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .rfi-tagline {
    font-size: 0.98rem;
    line-height: 1.4;
    max-width: 320px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .rfi-summary {
    max-width: 320px !important;
    font-size: 0.98rem !important;
    line-height: 1.62;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .rfi-hero-ctas {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .rfi-hero-placeholder {
    min-height: 320px;
    padding: 1.25rem;
  }

  .rfi-hero-placeholder h2 {
    font-size: clamp(1.22rem, 5.8vw, 1.65rem);
    max-width: 11ch;
  }

  .rfi-hero-media {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .rfi-hero-media figcaption {
    text-align: center;
  }

  .rfi-hero-placeholder-copy {
    gap: 0.7rem;
  }

  .rfi-hero-placeholder p {
    font-size: 0.88rem !important;
    max-width: 100% !important;
  }

  .rfi-project-content {
    padding: 0.9rem 0.9rem 1rem;
  }

  .rfi-rollout {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .rfi-rollout-dot {
    width: 52px;
    height: 52px;
    font-size: 0.76rem;
  }

  .rfi-rate-row {
    grid-template-columns: 70px 64px minmax(0, 1fr);
    gap: 0.6rem;
    padding: 0.75rem;
  }
}

@media (max-width: 560px) {
  .rfi-truth-block,
  .rfi-implementation,
  .rfi-stability-card,
  .rfi-rollout-copy,
  .rfi-faq-item,
  .rfi-guard-card,
  .rfi-expand-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .rfi-expand-card summary {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .rfi-hero-copy h1 {
    font-size: clamp(1.9rem, 9.8vw, 2.45rem);
    max-width: 292px;
  }

  .rfi-tagline {
    font-size: 0.92rem;
    max-width: 292px;
  }

  .rfi-summary {
    font-size: 0.92rem !important;
    max-width: 292px !important;
  }

  .rfi-hero-placeholder {
    min-height: 0;
    aspect-ratio: auto;
  }

  .rfi-hero-placeholder-label {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .rfi-hero-placeholder-tags span {
    font-size: 0.68rem;
  }

  .rfi-expand-toggle {
    justify-self: start;
  }

  .rfi-year-selector {
    gap: 0.5rem;
  }

  .rfi-year-button {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
  }

  .rfi-project-grid {
    grid-template-columns: 1fr;
  }

  .rfi-project-content {
    padding: 0.9rem;
  }

  .rfi-project-content h3 {
    font-size: 0.98rem;
  }

  .rfi-project-content p {
    font-size: 0.84rem;
  }
}

@media print {
  @page {
    margin: 0.45in;
  }

  body[data-priority-detail="ranson-forward-investment"] {
    padding-top: 0;
    color: #000;
    background: #fff;
  }

  body[data-priority-detail="ranson-forward-investment"] .announce-bar,
  body[data-priority-detail="ranson-forward-investment"] .navbar,
  body[data-priority-detail="ranson-forward-investment"] .mobile-menu,
  body[data-priority-detail="ranson-forward-investment"] .rfi-hero-media,
  body[data-priority-detail="ranson-forward-investment"] #plan-pillars,
  body[data-priority-detail="ranson-forward-investment"] #rfi-projects-title,
  body[data-priority-detail="ranson-forward-investment"] .rfi-project-grid,
  body[data-priority-detail="ranson-forward-investment"] .rfi-faq-list,
  body[data-priority-detail="ranson-forward-investment"] .detail-related-links,
  body[data-priority-detail="ranson-forward-investment"] .rfi-get-involved,
  body[data-priority-detail="ranson-forward-investment"] .site-footer,
  body[data-priority-detail="ranson-forward-investment"] .dfr-a11y-fab,
  body[data-priority-detail="ranson-forward-investment"] .dfr-lang-fab {
    display: none !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .page-hero,
  body[data-priority-detail="ranson-forward-investment"] .section,
  body[data-priority-detail="ranson-forward-investment"] .rfi-truth-section {
    padding: 0 !important;
    margin: 0 0 0.2in !important;
    background: transparent !important;
    color: #000 !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .page-hero-bg {
    display: none !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-hero-shell,
  body[data-priority-detail="ranson-forward-investment"] .section-inner,
  body[data-priority-detail="ranson-forward-investment"] .section-inner-narrow {
    max-width: none !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-hero-grid,
  body[data-priority-detail="ranson-forward-investment"] .rfi-implementation-grid,
  body[data-priority-detail="ranson-forward-investment"] .rfi-accountability-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.18in !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-accountability-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .page-hero-ctas,
  body[data-priority-detail="ranson-forward-investment"] .rfi-year-selector,
  body[data-priority-detail="ranson-forward-investment"] .rfi-year-panel {
    display: none !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-tagline,
  body[data-priority-detail="ranson-forward-investment"] .rfi-summary,
  body[data-priority-detail="ranson-forward-investment"] .rfi-stat-card p,
  body[data-priority-detail="ranson-forward-investment"] .rfi-truth-subhead,
  body[data-priority-detail="ranson-forward-investment"] .rfi-guard-card p,
  body[data-priority-detail="ranson-forward-investment"] .rfi-rollout-copy p,
  body[data-priority-detail="ranson-forward-investment"] .rfi-stability-card p {
    color: #000 !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-truth-no,
  body[data-priority-detail="ranson-forward-investment"] .section-title,
  body[data-priority-detail="ranson-forward-investment"] .rfi-stability-card h3,
  body[data-priority-detail="ranson-forward-investment"] .rfi-rate-row strong,
  body[data-priority-detail="ranson-forward-investment"] .rfi-rate-label,
  body[data-priority-detail="ranson-forward-investment"] .rfi-rollout-copy h3,
  body[data-priority-detail="ranson-forward-investment"] .rfi-guard-card h3 {
    color: #000 !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.12in !important;
    margin-top: 0.15in !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-stat-card,
  body[data-priority-detail="ranson-forward-investment"] .rfi-implementation,
  body[data-priority-detail="ranson-forward-investment"] .rfi-stability-card,
  body[data-priority-detail="ranson-forward-investment"] .rfi-rollout-copy,
  body[data-priority-detail="ranson-forward-investment"] .rfi-guard-card,
  body[data-priority-detail="ranson-forward-investment"] .rfi-truth-block,
  body[data-priority-detail="ranson-forward-investment"] .rfi-rate-row {
    box-shadow: none !important;
    border: 1px solid #c7ced9 !important;
    background: transparent !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-inline-disclosure {
    margin-top: 0.08in !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-inline-disclosure summary {
    display: none !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-inline-disclosure p {
    margin-top: 0 !important;
    color: #000 !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-rollout {
    --rfi-rollout-progress: 100%;
    grid-template-columns: 0.4in 1fr !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-rollout-step {
    padding: 0.04in 0 !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-rollout-dot {
    width: 0.5in !important;
    height: 0.5in !important;
    background: white !important;
    color: #000 !important;
    border: 1px solid #9aa7bc !important;
    box-shadow: none !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .rfi-section-heading {
    margin-bottom: 0.08in !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .section-label {
    margin-bottom: 0.04in !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .section-title {
    font-size: 18pt !important;
    margin-bottom: 0.05in !important;
  }

  body[data-priority-detail="ranson-forward-investment"] .section-body,
  body[data-priority-detail="ranson-forward-investment"] p,
  body[data-priority-detail="ranson-forward-investment"] li {
    font-size: 10pt !important;
    line-height: 1.35 !important;
  }
}

.volunteer-context-banner {
  display: none;
  margin-bottom: 1.35rem;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,35,71,0.06), rgba(201,168,76,0.16));
  border: 1px solid rgba(27,58,107,0.08);
}

.volunteer-context-banner.show {
  display: block;
}

.volunteer-context-kicker {
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.volunteer-context-banner h3 {
  color: var(--navy-dark);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.volunteer-context-banner p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   WHY I'M RUNNING — responsive grid + placeholder box
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: stretch;
}
.why-grid > div:first-child .section-body {
  max-width: none;
}

.why-photo-box {
  background: linear-gradient(160deg, #1B3A6B, #0F2347);
  border-radius: 16px;
  padding: 3rem;
  color: white;
  text-align: center;
  height: 100%;
}
.why-photo-icon {
  font-size: 5rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.5rem;
  display: block;
}
.why-photo-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.why-photo-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: block;
}
.why-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-info-card {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
}
.why-info-title {
  font-size: 0.72rem;
  color: #C9A84C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}
.why-info-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   ABOUT PAGE — credential pills + background grid + why ranson box
   ============================================================ */
.cred-pills {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cred-pill {
  background: var(--off-white);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cred-pill i {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.cred-pill span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-dark);
}

.bg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-ranson-box {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  border-radius: 16px;
  padding: 3rem;
  color: white;
}
.why-ranson-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.why-ranson-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
}
.why-ranson-body {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.why-ranson-quote {
  background: rgba(201,168,76,0.15);
  border-left: 4px solid var(--gold);
  padding: 1.25rem;
  border-radius: 0 8px 8px 0;
}
.why-ranson-quote p {
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   VOLUNTEER PAGE
   ============================================================ */
.vol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.75rem;
}
.vol-card {
  background: white; border-radius: 14px; padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-top: 4px solid var(--navy); text-align: center;
  transition: transform 0.2s;
}
.vol-card:hover { transform: translateY(-5px); }
.vol-card i { font-size: 2.25rem; color: var(--navy); margin-bottom: 1rem; }
.vol-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.65rem; }
.vol-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

.vol-form-wrap {
  background: white; border-radius: 16px; padding: 3rem;
  box-shadow: 0 6px 36px rgba(0,0,0,0.08);
  max-width: 720px; margin: 3rem auto 0;
}
.form-group { margin-bottom: 1.35rem; }
.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--navy-dark); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%; padding: 0.9rem 1.25rem;
  border: 2px solid var(--gray-light); border-radius: 8px;
  font-family: 'Open Sans', sans-serif; font-size: 0.93rem;
  color: var(--text-dark); transition: border-color 0.2s; background: white;
}
.form-control:focus { outline: none; border-color: var(--navy); }

.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 0.5rem; }
.checkbox-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: #4B5563; cursor: pointer;
}
.checkbox-item input { accent-color: var(--navy); width: 16px; height: 16px; }

.btn-submit-navy {
  background: var(--navy); color: white; border: none;
  padding: 1rem 2.5rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.09em;
  cursor: pointer; width: 100%; transition: all 0.2s;
}
.btn-submit-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem; flex-shrink: 0;
}
.contact-detail-text h5 {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--navy); margin-bottom: 0.25rem;
}
.contact-detail-text p, .contact-detail-text a {
  font-size: 0.9rem; color: var(--gray); text-decoration: none;
}
.contact-detail-text a:hover { color: var(--navy); }
.contact-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  margin: 0 0 1.75rem;
  background: white;
}
.contact-map-frame {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
.contact-map-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--gray-light);
}
.contact-map-footer p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray);
}
.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.contact-map-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(27,58,107,0.06);
  border: 1px solid rgba(27,58,107,0.12);
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.contact-map-footer a:hover {
  color: var(--navy-dark);
  border-color: rgba(27,58,107,0.2);
  background: rgba(27,58,107,0.1);
  transform: translateY(-1px);
}

/* ============================================================
   VOTER PLAN PAGE
   ============================================================ */
.voter-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 1.5rem 3rem; text-align: center;
}
.voter-hero h1 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; color: white; margin-bottom: 0.85rem; }
.voter-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.voter-plan-outer { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.voter-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.voter-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

.step-card {
  background: white; border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08); margin-bottom: 1.75rem;
}
.step-badge {
  width: 40px; height: 40px;
  background: var(--navy); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem;
  margin-bottom: 1.1rem;
}
.step-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.65rem; }
.step-card p { font-size: 0.93rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }

.wv-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--navy); color: white;
  padding: 1rem 1.75rem; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.95rem; text-decoration: none; transition: all 0.2s;
}
.wv-btn:hover { background: var(--navy-dark); transform: translateY(-2px); }
.wv-btn i { color: var(--gold); font-size: 1.1rem; }

/* Voter Plan Output */
.plan-output {
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f8 100%);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 14px 40px rgba(15,35,71,0.12);
  border: 1px solid #dbe2ee;
  margin-top: 1.75rem;
  display: none;
}
.plan-output.visible { display: block; }
#pdfContent.plan-sheet {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(15,35,71,0.08);
}
.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #edf2f7;
}
.plan-header img { height: 150px; margin: 0 auto 1rem; }
.plan-title {
  font-size: clamp(1.35rem, 3.1vw, 1.9rem);
  font-weight: 900;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.plan-date {
  font-size: 0.83rem;
  color: #64748b;
  margin-top: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.plan-meta { margin-top: 0.25rem; }

.plan-row {
  display: grid;
  grid-template-columns: minmax(130px, 170px) 1fr;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  margin-bottom: 0.65rem;
}
.plan-row:last-of-type { margin-bottom: 0; }
.plan-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.plan-value { color: #334155; text-align: left; max-width: none; font-weight: 600; }
.plan-value strong { color: var(--navy); font-family: 'Montserrat', sans-serif; }

.plan-commitment {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--navy);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  margin-top: 1.15rem;
}
.plan-transport {
  margin-top: 0.95rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-left: 5px solid #16a34a;
  border-radius: 12px;
  padding: 0.95rem 1rem;
}
.plan-transport-status {
  margin-top: 0.45rem;
  color: #14532d;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}
.plan-transport-detail {
  margin-top: 0.25rem;
  color: #166534;
  font-size: 0.82rem;
  line-height: 1.6;
}

.plan-checklist-list {
  list-style: none;
  margin-top: 0.6rem;
  display: grid;
  gap: 0.55rem;
}
.plan-checklist-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
}
.plan-checklist-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 0.92rem;
  height: 0.92rem;
  border: 2px solid #94a3b8;
  border-radius: 3px;
  background: white;
}
.plan-checklist-list li.is-checked::before {
  border-color: #166534;
  background: #dcfce7;
}
.plan-checklist-list li.is-checked::after {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.5rem;
  width: 0.34rem;
  height: 0.2rem;
  border-left: 2px solid #166534;
  border-bottom: 2px solid #166534;
  transform: rotate(-45deg);
}
.plan-inline-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.plan-inline-link:hover {
  color: var(--red-dark);
}

.plan-ballot {
  margin-top: 1.2rem;
}
.plan-ballot-title {
  margin-bottom: 0.4rem;
}
.plan-ballot-subtitle {
  color: #64748b;
  font-size: 0.84rem;
  margin-bottom: 0.8rem;
}
.plan-ballot-section {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  padding: 0.95rem 1rem;
  margin-bottom: 0.7rem;
}
.plan-ballot-context {
  color: #64748b;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  margin-bottom: 0.45rem;
}
.plan-candidate-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.plan-candidate-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #1f2937;
  font-size: 0.89rem;
  line-height: 1.55;
}
.plan-candidate-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.24rem;
  width: 0.92rem;
  height: 0.92rem;
  border: 2px solid #94a3b8;
  border-radius: 3px;
  background: #fff;
}

.plan-checklist {
  margin-top: 0.9rem;
  padding: 0.95rem 1rem;
  background: #fffbeb;
  border-radius: 12px;
  border: 1px solid #fde68a;
  border-left: 5px solid var(--gold);
}
.plan-footer-note {
  text-align: center;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.74rem;
  color: #64748b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.btn-download {
  display: block;
  width: 100%;
  background: #166534;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer; margin-top: 1.5rem; transition: all 0.2s;
}
.btn-download:hover { background: #14532d; }

.plan-action-tools {
  margin-top: 0.95rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid #dbe2ee;
  background: #f8fafc;
  border-radius: 12px;
}
.plan-action-tools-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--navy-dark);
  margin-bottom: 0.65rem;
}
.plan-action-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.plan-action-tools-grid .btn-hero-secondary.on-light {
  width: 100%;
  text-align: center;
  padding: 0.75rem 0.85rem;
  font-size: 0.73rem;
  line-height: 1.35;
}
.plan-action-tools-note {
  margin-top: 0.6rem;
  font-size: 0.76rem;
  color: #475569;
  line-height: 1.5;
}

/* ============================================================
   RIDE TO POLLS PAGE
   ============================================================ */
.ride-hero {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 1.5rem;
  background: var(--navy-dark);
}
.ride-hero-bg {
  position: absolute;
  inset: -6%;
  background: url('../images/dan%20landscape.avif') center/cover no-repeat;
  opacity: 0.36;
  transform: scale(1.06);
}
.ride-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,35,71,0.96) 10%, rgba(27,58,107,0.9) 55%, rgba(27,58,107,0.72) 100%);
}
.ride-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 2.25rem;
  align-items: center;
}
.ride-hero-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ride-hero-copy h1 {
  color: white;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 0.95rem;
  max-width: 720px;
}
.ride-hero-copy p {
  color: rgba(255,255,255,0.84);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 660px;
}
.ride-hero-ctas {
  margin-top: 1.55rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.ride-art-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.24);
  background: linear-gradient(160deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  box-shadow: 0 16px 52px rgba(0,0,0,0.24);
  padding: 1.35rem 1.2rem 1.1rem;
  backdrop-filter: blur(8px);
}
.ride-art-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: 18px;
  pointer-events: none;
}
.ride-art-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(201,168,76,0.22);
  color: #fff;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ride-art-chip i { color: var(--gold); }
.ride-route {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.ride-route li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.75rem;
  align-items: start;
  position: relative;
}
.ride-route li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 31px;
  width: 2px;
  height: calc(100% + 4px);
  background: rgba(255,255,255,0.25);
}
.ride-route-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.17);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}
.ride-route-title {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.12rem;
}
.ride-route-text {
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  line-height: 1.6;
}
.ride-feature-band {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.ride-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.ride-quick-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d9e2ef;
  box-shadow: 0 8px 24px rgba(15,35,71,0.08);
  padding: 1.55rem 1.25rem;
}
.ride-quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.ride-quick-card h3 {
  color: var(--navy-dark);
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}
.ride-quick-card p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.65;
}
.ride-info-panel { padding-right: 0.65rem; }
.ride-callout-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.7rem;
}
.ride-callout {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.7rem;
  align-items: start;
  background: #f8fafc;
  border: 1px solid #dbe5f1;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
}
.ride-callout i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.ride-callout h4 {
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.18rem;
}
.ride-callout p {
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.62;
}
.ride-compliance-card {
  background: #fffbeb;
  border-radius: 12px;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--gold);
  padding: 1.1rem 1.15rem;
  margin-top: 1rem;
}

/* ============================================================
   ALERTS / SUCCESS MESSAGES
   ============================================================ */
.alert-success {
  display: none; background: #d1fae5; border: 1px solid #6ee7b7;
  color: #065f46; padding: 1rem 1.5rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.88rem; margin-top: 1rem; text-align: center;
}
.alert-success.show { display: block; }
.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  margin-top: 1rem;
  text-align: center;
}
.dfr-turnstile-wrap {
  margin: 0.75rem 0 1rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-photo-image { height: 360px; }
  .home-updates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-feature-card { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .transport-spotlight-inner { grid-template-columns: 1fr; }
  .transport-spotlight-card { max-width: 560px; }
  .ride-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .ride-art-card { max-width: 560px; }
  .ride-quick-grid { grid-template-columns: 1fr; }
  .promise-layout { grid-template-columns: 1fr; gap: 2rem; }
  .promise-photo-wrap { max-width: 360px; margin: 0 auto; height: auto; }
  .promise-photo { height: auto; aspect-ratio: 3 / 4; }
  .promise-photo-logo { width: min(72%, 240px); }
  .promise-content { max-width: none; }
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  body { padding-top: 70px; }
  .nav-container { height: 70px; }
  .nav-logo img { height: 60px; }
  .nav-links, .nav-ctas { display: none; }
  .dfr-a11y-fab {
    left: 12px !important;
    right: auto !important;
    top: auto !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }
  .dfr-a11y-toggle { width: 52px; height: 52px; font-size: 1.18rem; }
  .dfr-a11y-menu { width: 210px; }
  .dfr-lang-fab {
    right: 12px !important;
    left: auto !important;
    top: auto !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }
  .dfr-lang-fab-toggle { width: 56px; height: 56px; }
  .dfr-lang-fab-menu { width: 190px; }
  html[dir='rtl'] .dfr-lang-fab {
    left: 12px !important;
    right: auto !important;
    top: auto !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }
  html[dir='rtl'] .dfr-a11y-fab {
    right: 12px !important;
    left: auto !important;
  }
  .hamburger { display: block; }
  .hero { min-height: 72vh; }
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
  .page-hero-ctas { flex-direction: column; }
  .page-hero-ctas .btn-hero-primary,
  .page-hero-ctas .btn-hero-secondary { width: 100%; text-align: center; }
  .priority-quick-nav { padding: 0 1rem 2rem; }
  .priority-quick-links { margin-top: -1.8rem; padding: 1rem; grid-template-columns: 1fr; }
  .initiative-grid { grid-template-columns: 1fr; }
  .initiative-card { padding: 1.25rem; }
  .initiative-card-cta { flex-direction: column; }
  .initiative-card-cta .btn-hero-primary,
  .initiative-card-cta .btn-hero-secondary { width: 100%; }
  .vote-decision-grid { grid-template-columns: 1fr; }
  .home-updates-grid { grid-template-columns: 1fr; }
  .home-update-card { padding: 1.25rem; }
  .blog-feature-card { padding: 1.2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { padding: 1.1rem; }
  .blog-post-layout { padding: 1.25rem; }
  .blog-post-layout h2 { font-size: 1.12rem; }
  .blog-post-cta-row { flex-direction: column; }
  .blog-post-cta-row .btn-hero-primary,
  .blog-post-cta-row .btn-hero-secondary { width: 100%; text-align: center; }
  .blog-feature-ctas { flex-direction: column; }
  .blog-feature-ctas .btn-hero-primary,
  .blog-feature-ctas .btn-hero-secondary { width: 100%; text-align: center; }
  .transport-spotlight { padding-top: 3.25rem; padding-bottom: 3.25rem; }
  .transport-spotlight-ctas { flex-direction: column; }
  .transport-spotlight-ctas .btn-hero-primary,
  .transport-spotlight-ctas .btn-hero-secondary { width: 100%; text-align: center; }
  .trust-bar-inner { animation-duration: 28s; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-location { text-align: center; }
  .vol-form-wrap { padding: 2rem 1.25rem; }
  .step-card { padding: 2rem 1.25rem; }
  .voter-grid-2, .voter-grid-3 { grid-template-columns: 1fr; }
  .ride-hero { padding: 3.8rem 1.2rem; }
  .ride-hero-ctas { flex-direction: column; }
  .ride-hero-ctas .btn-hero-primary,
  .ride-hero-ctas .btn-hero-secondary { width: 100%; text-align: center; }
  .ride-art-card { padding: 1rem 0.95rem; }
  .ride-info-panel { padding-right: 0; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .plan-output { padding: 0.9rem; }
  #pdfContent.plan-sheet { padding: 1.25rem; }
  .plan-header img { height: 120px; }
  .plan-row { grid-template-columns: 1fr; gap: 0.35rem; padding: 0.85rem; }
  .plan-action-tools-grid { grid-template-columns: 1fr; }
  .plan-checklist-list li,
  .plan-candidate-list li { font-size: 0.86rem; }
  .footer-email-form { flex-direction: column; }

  /* Why I'm Running — stack on mobile */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  /* text column: ensure button is fully visible */
  .why-grid > div:first-child .btn-hero-secondary {
    display: block;
    text-align: center;
    width: 100%;
  }
  /* placeholder box: compact layout */
  .why-photo-box {
    padding: 1.75rem 1.25rem;
  }
  .why-photo-icon {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
  }
  .why-photo-label {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .why-photo-image {
    height: 320px;
    margin-bottom: 0.85rem;
  }
  .why-info-cards {
    gap: 0.65rem;
  }
  .why-info-card {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .why-info-title {
    font-size: 0.65rem;
    margin-bottom: 0.15rem;
    white-space: nowrap;
  }
  .why-info-body {
    font-size: 0.82rem;
  }

  /* About page — background grid stack on mobile */
  .bg-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-ranson-box {
    padding: 2rem 1.5rem;
  }
  .why-ranson-title {
    font-size: 1.25rem;
  }
  /* Credential pills — tighten padding on narrow screens */
  .cred-pill {
    padding: 0.7rem 1rem;
  }
  .contact-map-frame {
    height: 220px;
  }
  .contact-map-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-map-actions {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 1.25rem; }
  .cards-grid, .action-grid, .vol-grid { grid-template-columns: 1fr; }
  .footer-cta-btns { flex-direction: column; }
  .btn-cta-white, .btn-cta-outline { text-align: center; }
}

/* ============================================================
   ANIMATIONS — Dan for Ranson Campaign Website
   danforranson.org | Professional Motion System
   ============================================================ */

/* --- Keyframes ------------------------------------------- */
@keyframes dfr-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dfr-fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes dfr-fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes dfr-scaleIn {
  from { opacity: 0; transform: scale(0.92) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes dfr-slideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dfr-ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes dfr-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(200,16,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46,0); }
}
@keyframes dfr-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes dfr-goldline {
  from { width: 0; }
  to   { width: 60px; }
}

/* --- Scroll Reveal System -------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.from-left  { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.scale      { transform: scale(0.92); }
.reveal.visible    { opacity: 1 !important; transform: none !important; }

/* --- Hero Background — Ken Burns motion ---------------- */
@keyframes dfr-kenburns {
  0%   { transform: scale(1.00) translate( 0%,    0%   ); }
  100% { transform: scale(1.10) translate(-2.5%,  -1.5%); }
}

/* --- Announce Bar --------------------------------------- */
.announce-bar {
  animation: dfr-slideDown 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* --- Hero Eyebrow — stays sharp over motion ------------ */
.hero-eyebrow {
  text-shadow: 0 1px 14px rgba(0,0,0,0.55), 0 0 40px rgba(15,35,71,0.9);
}

/* --- Page Load — Home Hero ------------------------------ */
.hero-eyebrow,
.hero h1,
.hero-sub,
.hero-body,
.hero-ctas {
  opacity: 0;
  transform: translateY(22px);
}
.page-loaded .hero-eyebrow {
  animation: dfr-fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}
.page-loaded .hero h1 {
  animation: dfr-fadeInUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.28s forwards;
}
.page-loaded .hero-sub {
  animation: dfr-fadeInUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.40s forwards;
}
.page-loaded .hero-body {
  animation: dfr-fadeInUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.50s forwards;
}
.page-loaded .hero-ctas {
  animation: dfr-fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.62s forwards;
}

/* --- Page Load — Inner Page Hero ----------------------- */
.page-hero-content .section-label,
.page-hero-content h1,
.page-hero-content p {
  opacity: 0;
  transform: translateY(18px);
}
.page-loaded .page-hero-content .section-label {
  animation: dfr-fadeInUp 0.5s cubic-bezier(0.16,1,0.3,1) 0.12s forwards;
}
.page-loaded .page-hero-content h1 {
  animation: dfr-fadeInUp 0.62s cubic-bezier(0.16,1,0.3,1) 0.22s forwards;
}
.page-loaded .page-hero-content p {
  animation: dfr-fadeInUp 0.62s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

/* --- Page Load — Voter Hero ----------------------------- */
.voter-hero h1,
.voter-hero p {
  opacity: 0;
  transform: translateY(18px);
}
.page-loaded .voter-hero h1 {
  animation: dfr-fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.12s forwards;
}
.page-loaded .voter-hero p {
  animation: dfr-fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.26s forwards;
}

/* --- Trust Bar — ticker (no staggered entrance) -------- */
.trust-item {
  opacity: 1;
}

/* --- Mobile Menu — max-height slide -------------------- */
.mobile-menu {
  display: block !important;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.16,1,0.3,1),
              opacity 0.32s ease;
}
.mobile-menu.open {
  max-height: 620px;
  opacity: 1;
}
.mobile-menu a,
.mobile-menu .mobile-menu-ctas {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open a,
.mobile-menu.open .mobile-menu-ctas {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.11s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.21s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.31s; }
.mobile-menu.open .mobile-menu-ctas { transition-delay: 0.36s; }

/* Hamburger icon rotation */
.hamburger i {
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
.hamburger.open i {
  transform: rotate(90deg);
}

/* --- Nav Link — animated underline --------------------- */
.nav-links a {
  border-bottom: none !important;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* --- Button Ripple -------------------------------------- */
.btn-hero-primary,
.btn-hero-secondary,
.btn-nav-primary,
.btn-action,
.btn-submit-navy,
.btn-form-submit,
.btn-download,
.wv-btn,
.btn-cta-white,
.btn-cta-outline,
.btn-mobile-primary {
  position: relative;
  overflow: hidden;
}
.dfr-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: dfr-ripple 0.55s linear forwards;
  background: rgba(255,255,255,0.22);
  pointer-events: none;
}

/* --- Hero CTA — heartbeat pulse after load ------------- */
.btn-hero-primary.cta-pulse {
  animation: dfr-pulse 2.4s ease-in-out infinite;
}

/* --- Enhanced Hover: Issue Cards ----------------------- */
.issue-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s;
}
.issue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.14);
}
.issue-icon {
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1),
              background 0.25s;
}
.issue-card:hover .issue-icon {
  transform: scale(1.18) rotate(-8deg);
  background: var(--red);
}

/* --- Enhanced Hover: Action Cards ---------------------- */
.action-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              background 0.25s, box-shadow 0.35s;
}
.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}
.action-card .action-icon {
  display: block;
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
}
.action-card:hover .action-icon {
  transform: scale(1.22) translateY(-5px);
}

/* --- Enhanced Hover: Volunteer Cards ------------------- */
.vol-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s;
}
.vol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}
.vol-card i {
  display: inline-block;
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), color 0.25s;
}
.vol-card:hover i {
  transform: scale(1.25) rotate(-7deg);
  color: var(--red);
}

/* --- Enhanced Hover: Value Cards ----------------------- */
.value-card {
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
              border-color 0.25s, box-shadow 0.32s;
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
}

/* --- Enhanced Hover: Priority Cards -------------------- */
.priority-card {
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.32s;
}
.priority-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* --- Enhanced Hover: Initiative Box -------------------- */
.initiative-box {
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.32s;
}
.initiative-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.25);
}

/* --- Enhanced Hover: Step Cards (voter plan) ----------- */
.step-card {
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.32s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}
.step-badge {
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.step-card:hover .step-badge {
  transform: scale(1.16);
}

/* --- Enhanced Hover: Timeline Dots --------------------- */
.timeline-item::before {
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s;
}
.timeline-item:hover::before {
  transform: scale(1.6);
  box-shadow: 0 0 0 4px rgba(200,16,46,0.18);
}

/* --- Enhanced Hover: Promise Icons --------------------- */
.promise-icon {
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.promise-item:hover .promise-icon {
  transform: scale(1.16);
}

/* --- Social Links — spring hover ----------------------- */
.social-link {
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1),
              background 0.22s, color 0.22s;
}
.social-link:hover {
  transform: scale(1.22) rotate(8deg);
}

/* --- Contact Icons ------------------------------------- */
.contact-icon {
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1),
              background 0.25s;
}
.contact-detail:hover .contact-icon {
  transform: scale(1.15);
  background: var(--red);
}

/* --- Footer Nav Link — indent slide -------------------- */
.footer-col ul a {
  transition: color 0.2s, padding-left 0.25s cubic-bezier(0.16,1,0.3,1);
}
.footer-col ul a:hover {
  padding-left: 7px;
}

/* --- Form Controls — focus glow ------------------------ */
.form-control {
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.14);
}
.form-input {
  transition: border-color 0.25s, box-shadow 0.25s, background 0.2s;
}
.form-input:focus {
  box-shadow: 0 0 0 3px rgba(201,168,76,0.22);
}

/* --- Alert Success — slide in -------------------------- */
.alert-success.show {
  display: block;
  animation: dfr-fadeInUp 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* --- Voter Plan Output — scale entrance ---------------- */
.plan-output.visible {
  display: block;
  animation: dfr-scaleIn 0.48s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* --- Pull Quote — nudge hover -------------------------- */
.pull-quote {
  transition: border-color 0.25s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.pull-quote:hover {
  border-color: var(--navy);
  transform: translateX(5px);
}

/* --- Priority Badge — subtle hover --------------------- */
.priority-badge {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s;
}
.priority-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(27,58,107,0.25);
}

/* --- Download Button — green pulse on hover ------------ */
.btn-download {
  transition: background 0.2s, transform 0.25s, box-shadow 0.25s;
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,0.35);
}

/* --- WV Register Button -------------------------------- */
.wv-btn {
  transition: background 0.2s, transform 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.28s;
}
.wv-btn:hover {
  box-shadow: 0 8px 28px rgba(27,58,107,0.35);
}

/* --- vol-form-wrap shadow lift ------------------------- */
.vol-form-wrap {
  transition: box-shadow 0.3s;
}
.vol-form-wrap:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

/* ============================================================
   REDUCED MOTION — safety net
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .hero-eyebrow, .hero h1, .hero-sub, .hero-body, .hero-ctas,
  .page-hero-content .section-label, .page-hero-content h1, .page-hero-content p,
  .voter-hero h1, .voter-hero p,
  .trust-bar-inner,
  .trust-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
