/* ============================================
   JEFF CLARK CAMPAIGN — style.css
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.65;
  background: #fff;
}

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

a { color: inherit; text-decoration: none; }

/* --- VARIABLES --- */
:root {
  --red:    #C8102E;
  --navy:   #0A1F44;
  --white:  #FFFFFF;
  --gray:   #F5F5F5;
  --dark:   #111827;
  --mid:    #4b5563;
  --border: #e5e7eb;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION BACKGROUNDS --- */
.section-white  { background: var(--white); }
.section-navy   { background: var(--navy);  color: var(--white); }
.section-red    { background: var(--red);   color: var(--white); }
.section-gray   { background: var(--gray);  }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-red   { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn-white { background: var(--white); color: var(--navy);  border-color: var(--white); }
.btn-navy  { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-large { padding: 18px 48px; font-size: 1.15rem; }
.btn-full  { width: 100%; justify-content: center; }

.btn-red:hover   { background: #a50d25; border-color: #a50d25; }
.btn-white:hover { background: #f0f0f0; }
.btn-navy:hover  { background: #0d2a5c; border-color: #0d2a5c; }

.center-btn { text-align: center; margin-top: 48px; }

/* ============================================
   ELECTION BANNER — lives inside <nav>, collapses on scroll
   ============================================ */

/* Banner is a plain block element INSIDE the fixed <nav>.
   No position:fixed of its own — it just stacks below the nav bar.
   JS toggles .banner-hidden which collapses max-height to 0. */
.election-banner {
  background: var(--red);
  overflow: hidden;
  max-height: 38px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
  opacity: 1;
}

.election-banner.banner-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.election-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 7px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.election-banner-inner strong {
  font-weight: 700;
  font-size: 0.9rem;
}

.election-star { font-size: 0.65rem; opacity: 0.75; }
.election-divider { opacity: 0.35; }

/* Page offset — nav bar (68px) + banner (38px) = 106px total.
   JS adds .has-banner to <body> when banner is present in DOM. */
body.has-banner .hero      { margin-top: 106px; min-height: calc(100vh - 106px); }
body.has-banner .page-hero { padding-top: 158px; }

/* ============================================
   ELECTION DAY REMINDER (bottom, above footer)
   ============================================ */

.election-reminder {
  background: var(--navy);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  padding: 28px 24px;
}

.election-reminder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}

.election-reminder-date {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  white-space: nowrap;
}

.election-reminder-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.election-reminder-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.election-reminder-text span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9bb0cc;
}

.election-reminder-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  overflow: hidden;  /* lets banner collapse without bleeding outside */
  transition: box-shadow 0.2s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 3px solid var(--red);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  outline: none;
}

.logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-district {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: #aab4c8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d1d9e8;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Last nav item — Donate — styled as button */
.nav-links li:last-child a {
  background: var(--red);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links li:last-child a:hover {
  background: #a50d25;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: calc(100vh - 68px);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  margin-top: 68px;
  display: flex;
  align-items: center;
}

/* Subtle texture overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(200,16,46,0.1) 0%, transparent 55%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  pointer-events: none;
  z-index: 1;
}

/* Photo sits as an absolute right-side element, cropped to right half */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fade left edge of photo into navy */
.hero-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, var(--navy) 0%, rgba(10,31,68,0.7) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Bottom fade */
.hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Content constrained to same max-width as rest of page */
.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  /* Text only occupies left ~45% so it doesn't overlap the face */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.hero-pre {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8a8b0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-pre::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c8a8b0;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   TAGLINE BAR
   ============================================ */
.tagline-bar {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}

.tagline-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tagline-inner span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 48px;
}

.section-title.navy { color: var(--navy); }
.section-title.white { color: var(--white); }

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 16px auto 0;
}

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  padding: 80px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--gray);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.pillar-card.featured {
  background: var(--navy);
  color: var(--white);
  border-top-color: var(--red);
}

.pillar-card:not(.featured) {
  border-top-color: var(--navy);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
}

.pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--navy);
}

.pillar-card.featured h3 {
  color: var(--white);
}

.pillar-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--mid);
}

.pillar-card.featured p {
  color: #c8d4e8;
}

/* ============================================
   ISSUES PREVIEW
   ============================================ */
.issues-preview {
  padding: 80px 0;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.issue-item {
  border-left: 3px solid var(--red);
  padding-left: 20px;
}

.issue-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.issue-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.issue-item p {
  font-size: 0.88rem;
  color: #9bb0cc;
  line-height: 1.55;
}

/* ============================================
   DONATE CTA
   ============================================ */
.donate-cta {
  padding: 80px 0;
  text-align: center;
}

.donate-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.donate-cta p {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
  padding: 72px 0;
  text-align: center;
}

.social-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto 32px;
}

.facebook-btn {
  background: #1877f2;
  border-color: #1877f2;
  color: var(--white);
}

.facebook-btn:hover {
  background: #1560c8;
  border-color: #1560c8;
}

/* ============================================
   CONTACT TEASER
   ============================================ */
.contact-teaser {
  padding: 72px 0;
  text-align: center;
}

.contact-teaser h2 {
  margin-bottom: 12px;
}

.contact-teaser p {
  font-size: 1rem;
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 120px 0 72px;
  text-align: center;
}

.page-hero-pre {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #aab4c8;
  margin-bottom: 12px;
}

.section-red .page-hero-pre { color: rgba(255,255,255,0.7); }

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aab4c8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  padding: 80px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}

.about-headshot {
  width: 100%;
  border-radius: 6px;
  border: 4px solid var(--navy);
  box-shadow: 8px 8px 0 var(--red);
}

.about-callout {
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  margin-top: 24px;
  border-radius: 4px;
  border-left: 4px solid var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.about-contact-card {
  margin-top: 20px;
  background: var(--gray);
  padding: 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.about-contact-card strong {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.about-contact-card a {
  color: var(--red);
}

.about-text-col h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text-col h3 {
  font-size: 1.1rem;
  color: var(--red);
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.about-text-col p {
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 14px;
}

.about-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================
   ISSUES FULL PAGE
   ============================================ */
.issues-full {
  padding: 72px 0;
}

.issue-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.issue-block:last-child { border-bottom: none; }

.issue-block.reverse {
  background: var(--gray);
  margin: 0 -24px;
  padding: 48px 24px;
}

.issue-block-num {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  text-align: center;
}

.issue-block-content h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.issue-block-content p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.7;
}

.issue-block-content strong {
  color: var(--navy);
}

/* ============================================
   DONATE PAGE
   ============================================ */
.donate-section {
  padding: 80px 0;
}

.donate-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

.donate-message h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.donate-message p {
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 16px;
}

.donate-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.donate-list li {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  padding-left: 4px;
}

.donate-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px 32px;
  border-radius: 6px;
  text-align: center;
  border-top: 5px solid var(--red);
}

.donate-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.donate-card > p {
  font-size: 0.9rem;
  color: #9bb0cc;
  margin-bottom: 28px;
}

.donate-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
}

.donate-disclaimer {
  font-size: 0.75rem !important;
  color: #7a8fa8 !important;
  margin-top: 20px !important;
  line-height: 1.5;
}

.donate-contact {
  margin-top: 24px;
  background: var(--gray);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.donate-contact p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
}

.donate-contact a {
  font-size: 0.92rem;
  color: var(--red);
  font-weight: 600;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail-item a {
  font-size: 0.95rem;
  color: var(--red);
  display: block;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea {
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--dark);
  cursor: pointer;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 0.95rem;
  text-align: center;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 0.95rem;
}

.recaptcha-widget {
  margin: 4px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-office {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a8fa8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  align-items: center;
  justify-content: center;
}

.footer-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9bb0cc;
  padding: 4px 12px;
  border-radius: 3px;
  transition: color 0.15s;
}

.footer-nav a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-contact a {
  font-size: 0.88rem;
  color: #9bb0cc;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  transition: color 0.15s;
}

.footer-contact a:hover { color: var(--white); }

.footer-fb {
  gap: 8px !important;
}

.footer-legal {
  background: rgba(0,0,0,0.2);
  text-align: center;
  padding: 16px 24px;
}

.footer-legal p {
  font-size: 0.75rem;
  color: #6b7c94;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
  }

  .hero-photo {
    width: 60%;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-layout {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .donate-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .donate-card {
    max-width: 480px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }

  .footer-contact a {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    border-top: 2px solid var(--red);
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 24px;
    border-radius: 0;
  }

  .nav-links li:last-child a {
    margin: 8px 24px;
    border-radius: 4px;
  }

  /* Hero — mobile: photo goes behind text as full bleed background */
  .hero {
    min-height: 90vw;
    align-items: flex-end;
    padding-bottom: 0;
    margin-top: 68px;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  /* Darken the whole image so text stays readable */
  .hero-photo::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(10,31,68,0.3) 0%,
      rgba(10,31,68,0.5) 40%,
      rgba(10,31,68,0.92) 80%,
      var(--navy) 100%
    );
  }

  .hero-photo::after {
    display: none;
  }

  .hero-content {
    padding: 32px 24px 40px 24px;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  /* About */
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo-col {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }

  /* Issues */
  .issue-block {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .issue-block-num {
    font-size: 2.5rem;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    grid-column: auto;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact a {
    justify-content: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .tagline-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .issues-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .about-ctas {
    flex-direction: column;
  }

  .issues-grid {
    grid-template-columns: 1fr;
  }

  .issue-block {
    grid-template-columns: 1fr;
  }

  .issue-block-num {
    font-size: 2rem;
  }
}
