/* ============================================================
   Jason Dominguez for District 4 — Campaign Website Styles
   ============================================================ */

/* CSS Custom Properties */
:root {
  --navy: #1a3a5c;
  --navy-dark: #122840;
  --navy-light: #234d7a;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-dark: #a8893a;
  --gold-light: #e0c06e;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-text: #555555;
  --text-dark: #1a1a1a;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
  --transition: 0.25s ease;
  --shadow: 0 2px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);
  --radius: 6px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--gray { background: var(--gray-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--gray-text); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.9rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.site-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.site-logo .logo-district {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-donate {
  background: var(--gold) !important;
  color: var(--navy) !important;
  margin-left: 0.5rem;
  border-radius: var(--radius) !important;
}
.nav-donate:hover {
  background: var(--gold-dark) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  aria-label: "Toggle navigation";
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  object-fit: cover;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.65;
}

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

/* ============================================================
   ISSUE CARDS
   ============================================================ */
.issue-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.issue-card .issue-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.issue-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.issue-card p { color: var(--gray-text); font-size: 0.95rem; margin-bottom: 1.25rem; }

/* ============================================================
   BIO TEASER
   ============================================================ */
.bio-teaser { background: var(--gray-light); }

.photo-placeholder {
  background: var(--gray-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gray-text);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  min-height: 380px;
  border: 2px dashed #ccc;
}
.photo-placeholder .photo-icon { font-size: 3rem; opacity: 0.4; }

/* Candidate headshot */
.candidate-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  position: relative;
}
.candidate-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.candidate-photo img:hover { transform: scale(1.02); }
/* About page: taller crop */
.candidate-photo--about {
  min-height: 480px;
}
/* Homepage bio teaser */
.candidate-photo--teaser {
  min-height: 380px;
}

.bio-text h2 { margin-bottom: 1rem; }
.bio-text p { color: var(--gray-text); margin-bottom: 1.25rem; }

/* ============================================================
   ENDORSEMENTS
   ============================================================ */
.endorsements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.endorsement-placeholder {
  background: var(--white);
  border: 2px dashed var(--gray-mid);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--gray-text);
  font-style: italic;
}

/* ============================================================
   GET INVOLVED CTA STRIP
   ============================================================ */
.cta-strip { background: var(--navy); }

.cta-strip h2 { color: var(--white); text-align: center; margin-bottom: 0.5rem; }
.cta-strip .cta-sub { color: rgba(255,255,255,0.75); text-align: center; margin-bottom: 3rem; font-size: 1.05rem; }

.cta-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.cta-col {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-col .cta-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.cta-col h3 { color: var(--white); margin-bottom: 0.75rem; }
.cta-col p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand { line-height: 1.6; }
.footer-brand .logo-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.footer-brand .logo-district { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 0; }

.footer-nav h4, .footer-social h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { color: rgba(255,255,255,0.65); font-size: 0.95rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-tagline { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin: 0; }
.fppc-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; text-align: right; }

/* ============================================================
   PAGE HERO (About, Issues, Contact, Get Involved)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin: 0; }

/* ============================================================
   ISSUES PAGE
   ============================================================ */
.issue-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.issue-section:first-of-type { padding-top: 3rem; }
.issue-section:last-of-type { border-bottom: none; }
.issue-section.alt { background: var(--gray-light); }

.issue-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.issue-icon-lg {
  font-size: 2.8rem;
  flex-shrink: 0;
}
.issue-header h2 { margin: 0; }

.issue-summary {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  max-width: 720px;
  line-height: 1.7;
}

.issue-positions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
}
.issue-positions li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-text);
  line-height: 1.7;
}
.issue-positions li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Highlight Cards */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.highlight-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.highlight-card .highlight-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.highlight-card h4 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.highlight-card p { color: var(--gray-text); font-size: 0.9rem; margin: 0; line-height: 1.6; }

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================================
   GET INVOLVED PAGE
   ============================================================ */
.involve-section { padding: 5rem 0; }
.involve-section + .involve-section { border-top: 1px solid var(--gray-mid); }

.involve-section h2 { margin-bottom: 1rem; }
.involve-section .section-intro { color: var(--gray-text); font-size: 1.05rem; margin-bottom: 2rem; max-width: 640px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}

textarea { resize: vertical; min-height: 120px; }

.checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); cursor: pointer; }

.form-submit { margin-top: 1.5rem; }

/* Donate box */
.donate-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 560px;
}
.donate-box h3 { color: var(--white); margin-bottom: 1rem; }
.donate-box p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* Social share */
.share-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
}
.share-btn-fb { background: #1877f2; color: #fff; }
.share-btn-fb:hover { background: #1464d8; color: #fff; }
.share-btn-tw { background: #000; color: #fff; }
.share-btn-tw:hover { background: #333; color: #fff; }
.share-btn-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.share-btn-ig:hover { opacity: 0.9; color: #fff; }
.share-btn-nv { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.share-btn-nv:hover { background: transparent; color: var(--navy); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }

.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail .detail-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.contact-detail p { color: var(--gray-text); font-size: 0.95rem; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3, .cta-columns, .endorsements-grid, .highlights-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 0.75rem 1rem; }
  .nav-donate { margin-left: 0 !important; margin-top: 0.5rem; text-align: center; }

  .hero { padding: 4rem 0 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-photo { display: flex; margin-bottom: 1rem; order: -1; }
  .hero-photo img { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; }

  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .cta-columns, .endorsements-grid, .highlights-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fppc-disclaimer { text-align: left; }

  .form-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-section { padding: 3rem 0; }

  .section { padding: 3.5rem 0; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 4vw, 2rem); }

  .involve-section { padding: 3.5rem 0; }
  .donate-box { padding: 2rem 1.5rem; }

  .candidate-photo--about { min-height: 300px; }
  .candidate-photo--teaser { min-height: 280px; }

  .issue-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .issue-icon-lg { font-size: 2.2rem; }

  .social-links { gap: 0.75rem; }
  .social-link { width: 36px; height: 36px; font-size: 1rem; }

  .container { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .hero-eyebrow { font-size: 0.7rem; padding: 0.3rem 0.75rem; margin-bottom: 1rem; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-ctas { gap: 0.6rem; }

  .btn { padding: 0.65rem 1.5rem; font-size: 0.95rem; }
  .btn-lg { padding: 0.8rem 1.5rem; font-size: 1rem; }
  .btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }

  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .page-hero h1 { font-size: 1.4rem; }
  .page-hero p { font-size: 0.95rem; }

  .involve-section { padding: 2.5rem 0; }
  .involve-section .section-intro { font-size: 0.95rem; margin-bottom: 1.5rem; }

  .donate-box { padding: 1.5rem; }
  .donate-box h3 { font-size: 1rem; }
  .donate-box p { font-size: 0.9rem; margin-bottom: 1.5rem; }

  .contact-section { padding: 2.5rem 0; }
  .form-grid { gap: 0.75rem; }

  .issue-card { padding: 1.5rem; }
  .issue-card h3 { font-size: 1rem; }
  .issue-card p { font-size: 0.9rem; }

  .cta-col { padding: 1.5rem 1rem; }
  .cta-col .cta-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .cta-col h3 { font-size: 1rem; }
  .cta-col p { font-size: 0.85rem; margin-bottom: 1rem; }

  .highlight-card { padding: 1.25rem; }
  .highlight-card .highlight-icon { font-size: 2rem; }
  .highlight-card h4 { font-size: 0.95rem; }
  .highlight-card p { font-size: 0.85rem; }

  .candidate-photo--about { min-height: 240px; }
  .candidate-photo--teaser { min-height: 220px; }

  h1 { font-size: clamp(1.4rem, 4vw, 1.8rem); }
  h2 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
  h3 { font-size: clamp(1rem, 2.5vw, 1.2rem); }

  .footer-grid { gap: 1.5rem; }
  .footer-brand .logo-name { font-size: 1rem; }
  .footer-bottom { gap: 0.5rem; }
  .footer-tagline { font-size: 0.85rem; }
  .fppc-disclaimer { font-size: 0.75rem; }

  .container { padding: 0 0.75rem; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Video Reel Section */
.video-reel {
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.05) 0%, rgba(201, 168, 76, 0.05) 100%);
  padding: 3rem 0;
}

.video-wrapper {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .video-reel {
    padding: 2rem 0;
  }
  .video-wrapper {
    margin-top: 1.5rem;
  }
}
