:root {
  /* ═══════════ DESIGN TOKENS ═══════════
     Three layers. Change PRIMITIVES to re-palette the whole site;
     SEMANTIC tokens say what a color MEANS; component styles and
     inline styles reference semantic tokens only.

     Brand rule: the FIGHT color is for adversarial content and giving
     (budget arc, issue tags, donate). The CARE color is for community,
     volunteering, and the vision. EVIDENCE (paper) is for receipts
     and citations. */

  /* ── 1. primitives ── */
  --pine:        #1d5a40;
  --pine-strong: #194f38;
  --pine-deep:   #11392a;
  --pine-black:  #0c2018;
  --pine-bright: #4c9d6e;   /* hop-green: legible on the dark field */
  --ink:        #000000;
  --ink-soft:   #0d0d0d;
  --gray:       #444444;
  --gray-light: #f0ece8;
  --white:      #ffffff;
  --paper-raw:  #f6f1e7;
  --cream-warm: #f4e3b0;   /* buttery cream: warmer than paper, softer than marigold */
  --paper-line: #e3d6bd;   /* hairline: a darker tint of the receipt paper */
  --gold-raw:   #a87900;
  --gold-deep:  #8a6400;
  --gold-hi:    #d9a625;
  --terra:        #A8432B;
  --terra-strong: #93371F;
  --terra-deep:   #6E2615;
  --terra-black:  #260a04;   /* deep brick: hero field */
  --terra-light:  #d98a6e;   /* warm clay: legible on deep brick */

  /* ── 2. semantic: brand registers ── */
  --fight:        var(--terra);
  --fight-strong: var(--terra-strong);
  --fight-deep:   var(--terra-deep);
  --fight-tint:   rgba(168,67,43,0.10);   /* tags, chips on light */
  --fight-wash:   rgba(168,67,43,0.05);   /* take boxes, faint fills */
  --care:         var(--gold-raw);      /* on light surfaces */
  --care-bright:  var(--gold-hi);       /* on dark surfaces */
  --care-deep:    var(--gold-deep);
  --care-tint:    rgba(168,121,0,0.12);
  --evidence:     var(--paper-raw);     /* receipt/citation surfaces */
  --story:        var(--terra);         /* narrative pages: About, News, People */
  --story-tint:   rgba(168,67,43,0.10);
  --story-wash:   rgba(168,67,43,0.05);

  /* ── 2b. semantic: surfaces ── */
  --surface-page: var(--white);
  --surface-dark: var(--ink);           /* black bands, page heroes */
  --surface-hero: var(--pine-black);     /* homepage hero: dark evergreen */
  --surface-band: var(--terra);           /* full-bleed red sections */

  /* ── 2c. semantic: CTA intents ── */
  --cta-give-bg:   var(--white);        /* Donate: white on dark, red text */
  --cta-give-text: var(--dark);
  --cta-join-bg:   var(--gold-hi);      /* Volunteer at invitation moments */
  --cta-join-text: var(--white);
  --cta-join-hover: #c2920f;

  /* ── 3. legacy aliases (existing rules + inline styles) ── */
  --primary: var(--fight);
  --primary-dark: var(--fight-deep);
  --dark: var(--ink);
  --dark-alt: var(--ink-soft);
  --cream: var(--white);
  --paper: var(--evidence);
  --gold: var(--care);
  --gold-bright: var(--care-bright);

  --font-mono: ellograph-cf, 'Menlo', 'Consolas', monospace;
  --font-hand: flood-std, var(--font-display);   /* "penciled in" annotations */
  --font-display: neulis-sans, 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 1.1rem 3rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.82rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
/* gold only at the moments of invitation: hero + Join the Work bands */
.involve-ctas .btn-secondary {
  background: var(--cta-join-bg);
  color: var(--cta-join-text);
  border-color: var(--cta-join-bg);
  font-weight: 800;
}
.involve-ctas .btn-secondary:hover {
  background: var(--cta-join-hover);
  border-color: var(--cta-join-hover);
  color: var(--cta-join-text);
}

.btn-secondary-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--cta-give-bg);
  color: var(--terra);
  border-color: var(--white);
  font-weight: 800;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}
/* hero Donate: text matches the hero's pine field, not terracotta */
.hero-ctas .btn-white { color: var(--pine); }

.btn-primary-inv {
  background: var(--cta-give-bg);
  color: var(--cta-give-text);
  border-color: var(--white);
  font-weight: 800;
}
.btn-primary-inv:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-hero-volunteer {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-hero-volunteer:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.about-image-mobile { display: none; }

/* SECTION LABEL */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}
.section-label.light { color: rgba(255,255,255,0.55); }

/* NAV */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
#navbar.scrolled:has(.nav-body) .nav-ctas { display: none; }
#navbar.scrolled .nav-body { flex-direction: row; gap: 1.75rem; align-items: center; }
#navbar.scrolled .nav-top { flex: 1; }

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: padding 0.4s ease;
}
#navbar.scrolled .nav-container { padding: 0.6rem 2rem; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 100px;
  width: auto;
  max-width: 240px;
  display: block;
  transition: height 0.4s ease, max-width 0.4s ease;
  object-fit: contain;
}
#navbar.scrolled .nav-logo img { height: 52px; max-width: 220px; }

/* NAV BODY — two-row column after logo */
.nav-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 0.5rem;
}

.nav-top {
  display: flex;
  align-items: center;
}

/* NAV CTAs — second row */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* NAV LINKS — top row */
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

/* NAV RIGHT — social + lang toggle, pushed to far right within top row */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Social icons in nav */
.nav-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.nav-social-link:hover { background: var(--primary); color: var(--white); }
#navbar.scrolled .nav-social-link:hover { background: rgba(255,255,255,0.2); }
.nav-social-link svg { width: 15px; height: 15px; fill: currentColor; }

.lang-toggle {
  background: var(--care-bright);
  border: 1px solid var(--care-bright);
  color: #1d1500;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle:hover { background: #c2920f; border-color: #c2920f; }
/* Homepage only: green pill while the green hero is behind the nav,
   marigold once the hero's bottom edge passes. Secondary pages start marigold. */
#navbar:not(.past-hero) .nav-body .lang-toggle {
  background: var(--pine-bright);
  border-color: var(--pine-bright);
  color: var(--white);
}
#navbar:not(.past-hero) .nav-body .lang-toggle:hover {
  background: var(--pine);
  border-color: var(--pine);
}
.lang-toggle .lang-label-es { display: none; }
body.lang-es .lang-toggle .lang-label-en { display: none; }
body.lang-es .lang-toggle .lang-label-es { display: inline; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 1.25rem 2rem 2rem;
  gap: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}
.mobile-menu .mobile-footer a.btn {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  box-shadow: none;
  padding: 0.65rem 0;
  width: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  justify-content: flex-start;
}
.mobile-menu .mobile-footer a.btn:hover {
  background: transparent;
  color: #e9bc4e;
}
.mobile-menu .mobile-footer .lang-toggle-btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* HERO */
#hero {
  background: var(--surface-hero);
  position: relative;
  overflow: hidden;
  padding: 200px 0 0;
}
.hero-bg-stripe {
  position: absolute;
  top: 0;
  right: -5%;
  width: 45%;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.07;
  pointer-events: none;
}
.hero-bg-stripe-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(29,90,64,0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 6rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-logo {
  height: 72px;
  width: auto;
  margin-bottom: 2.5rem;
  display: block;
}
.hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 5.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.88;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-headline .accent { color: var(--primary); }
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.65;
}
.hero-ward {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-photo {
  height: 580px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
}
.hero-photo-placeholder svg {
  width: 52px;
  height: 52px;
  color: rgba(255,255,255,0.1);
}
.hero-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* CUSTOM VIDEO PLAYER */
.video-wrapper {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: #000;
}
.video-wrapper video {
  width: 100%;
  display: block;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s ease;
}
.video-play-overlay:hover { background: rgba(0,0,0,0.4); }
.video-play-overlay svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  transition: transform 0.15s ease;
}
.video-play-overlay:hover svg { transform: scale(1.08); }
.video-play-overlay.hidden { display: none; }

/* SIGNUP */
#signup {
  background: var(--white);
  padding: 6rem 0;
}
.signup-inner { max-width: 920px; margin: 0 auto; padding: 0 2rem; }
.signup-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  line-height: 1;
}
.signup-heading .accent { color: var(--primary); }
.signup-sub {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}
.signup-form {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.4fr 1.2fr auto;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.signup-input {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
  color: var(--dark);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  min-width: 0;
}
.signup-input::placeholder { color: rgba(0,0,0,0.4); }
.signup-input:focus {
  border-color: var(--primary);
  background: #fff;
}
.signup-legal {
  font-size: 0.67rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.55;
  max-width: 800px;
}
.signup-legal a { color: rgba(0,0,0,0.6); text-decoration: underline; }
@media (max-width: 960px) {
  .signup-form {
    grid-template-columns: 1fr 1fr;
  }
  .signup-form .btn { grid-column: span 2; }
}
@media (max-width: 520px) {
  .signup-form { grid-template-columns: 1fr; }
  .signup-form .btn { grid-column: span 1; }
}

/* ABOUT */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 5rem;
  align-items: start;
}

.about-chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.about-chapter {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
}
.about-chapter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}
.about-chapter:hover img { transform: scale(1.04); }
.about-chapter-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.85rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.about-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-text h2 { color: var(--dark); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; margin-bottom: 1.5rem; }
.about-text p { color: var(--gray); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.75; }

/* ISSUES */
#issues { background: var(--surface-band); padding-bottom: 0; }
.issues-header { text-align: center; margin-bottom: 4rem; }
.issues-header h2 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
.issues-header p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-top: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; letter-spacing: 0; }

.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.25);
  border-top: 2px solid rgba(0,0,0,0.2);
}
.issue-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.issue-card {
  background: rgba(0,0,0,0.18);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
  position: relative;
  flex: 1;
}
.issue-card-link:hover .issue-card { background: rgba(0,0,0,0.32); }
.issue-read-more {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.issue-card-link:hover .issue-read-more { opacity: 1; }
.issue-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.85);
}
.issue-icon svg { width: 100%; height: 100%; }
.issue-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.75rem; }
.issue-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }
.issue-stance { color: var(--white) !important; font-weight: 600 !important; margin-bottom: 0.75rem !important; }
.issue-cite { color: rgba(255,255,255,0.35) !important; font-size: 0.65rem !important; line-height: 1.5 !important; margin-top: 1rem !important; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.75rem; }
.issue-cite a { color: rgba(255,255,255,0.45); text-decoration: underline; }

/* Center a lone card at the start of a new row in a 3-col grid only */
@media (min-width: 961px) {
}

/* PRESS */
#press { background: var(--white); }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { color: var(--dark); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.press-card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 3px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.press-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.press-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.press-card-img img { width: 52px; height: 52px; opacity: 0.4; }
.press-card-body { padding: 1.75rem; }
.press-type {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.press-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.4; }
.press-card-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.press-date { font-size: 0.78rem; color: rgba(0,0,0,0.35); font-weight: 500; }

/* FAQ */
.faq-section { padding: 5rem 0; background: var(--white); }
.faq-section .issues-header { margin-bottom: 3rem; }
.faq-list { max-width: 800px; }
.faq-item { border-top: 1px solid rgba(0,0,0,0.1); padding: 1.75rem 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dark); margin-bottom: 0.75rem; }
.faq-a { color: var(--gray); font-size: 1rem; line-height: 1.75; }
.faq-a a { color: var(--primary); }
.faq-a a:visited { color: var(--primary); }

/* WARD 2 */
#ward2 { background: #000000; }
.ward2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ward2-text h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; margin-bottom: 1.5rem; }
.ward2-text p { color: rgba(255,255,255,0.65); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.75; }

.ward2-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 1rem;
}
.stat-block {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  transition: background var(--transition);
}
.stat-block:hover { background: rgba(29,90,64,0.12); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.4;
}

/* GET INVOLVED */
#get-involved { background: var(--primary); }
.get-involved-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.get-involved-inner h2 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 1rem; }
.get-involved-inner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; }
.involve-ctas { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
#footer {
  background: #000000;
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; }
.footer-brand img { width: 80px; height: 80px; object-fit: contain; display: block; }
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.75rem 2.5rem;
  align-content: start;
}
.footer-links a[href="volunteer.html"],
.footer-links a[href="donate.html"] {
  color: var(--gold-bright);
}
/* footer email "send" button: marigold, not terracotta */
#footer .btn-primary {
  background: var(--gold-bright);
  color: #1d1500;
  border-color: var(--gold-bright);
}
#footer .btn-primary:hover {
  background: var(--cta-join-hover);
  border-color: var(--cta-join-hover);
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--white); }

.footer-social { display: flex; gap: 0.75rem; align-items: flex-start; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}
.social-link:hover { background: var(--primary); color: var(--white); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* PHOTOS MOSAIC */
#photos { padding: 0; }
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.photo-cell {
  background: var(--dark-alt);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-cell:hover img { transform: scale(1.05); }
.photo-cell-placeholder {
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.photo-cell-placeholder svg {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.15);
}
.photo-cell-placeholder span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 600;
}
.photo-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.photo-cell:hover .photo-cell-overlay { opacity: 1; }
.photo-cell-caption {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.pc-1 { grid-column: span 3; grid-row: span 2; }
.pc-2 { grid-column: span 5; grid-row: span 1; }
.pc-3 { grid-column: span 4; grid-row: span 1; }
.pc-4 { grid-column: span 3; grid-row: span 1; }
.pc-5 { grid-column: span 6; grid-row: span 1; }

/* PHOTO STRIP */
.photo-strip {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip-cell {
  flex: 0 0 260px;
  height: 200px;
  background: #1c1c1c;
  position: relative;
  overflow: hidden;
}
.photo-strip-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-strip-cell:hover img { transform: scale(1.05); }
.photo-strip-cell .photo-cell-placeholder { background: #1c1c1c; }

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }
.fade-in-delay-4 { transition-delay: 0.48s; }
.fade-in-delay-5 { transition-delay: 0.60s; }
.fade-in-delay-6 { transition-delay: 0.72s; }
.fade-in-delay-7 { transition-delay: 0.84s; }
.fade-in-delay-8 { transition-delay: 0.96s; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .photo-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 200px 200px;
  }
  .pc-1 { grid-column: span 2; grid-row: span 2; }
  .pc-2 { grid-column: span 4; }
  .pc-3 { grid-column: span 3; }
  .pc-4 { grid-column: span 3; }
  .pc-5 { grid-column: span 3; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-container { flex-wrap: nowrap; padding-left: 2rem; }
  .nav-logo img { height: 52px; max-width: 200px; }
  #navbar.scrolled .nav-logo img { height: 44px; }
  #signup { padding-top: 3.5rem; }

  #hero { padding: 160px 0 0; }
  .hero-content {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 0 2rem 5rem;
    gap: 2.5rem;
  }
  .hero-photo { height: 340px; order: -1; margin: 0 -2rem; border-radius: 0; border-left: none; border-right: none; }
  .hero-ctas, .involve-ctas { flex-direction: column; align-items: stretch; width: 100%; align-self: stretch; }
  .hero-ctas .btn, .involve-ctas .btn { width: 100%; justify-content: center; text-align: center; }
  /* every prominent CTA button fills its row on tablet/mobile */
  .btn-lg { width: 100%; justify-content: center; text-align: center; }

  .about-grid { display: block; }
  .about-image { display: none; }
  .about-text { display: block; }
  .about-image-mobile {
    display: block;
    float: right;
    width: 40%;
    margin: 0.25rem 0 0.75rem 1rem;
    border-radius: 2px;
    overflow: hidden;
  }
  .about-image-mobile img { width: 100%; height: auto; display: block; }
  .about-text::after { content: ''; display: table; clear: both; }
  .about-cta-btn { width: 100%; text-align: center; justify-content: center; display: flex; }
  .about-chapters { grid-template-columns: 1fr; }
  .ward2-grid { grid-template-columns: 1fr; gap: 3rem; }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, max-content); }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .nav-container { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Full-width stacked CTAs on mobile */
  .hero-ctas, .involve-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn, .involve-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .issues-grid { grid-template-columns: 1fr; }
  .ward2-stats { grid-template-columns: 1fr; }
  .hero-logo { height: 52px; }
  #hero { padding: 150px 0 0; }
  .hero-content { padding: 0 1.25rem 4rem; gap: 2rem; }
  .hero-photo { height: 260px; order: -1; margin: 0 -1.25rem; border-radius: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { grid-template-columns: 1fr; }

  /* Photo mosaic: stack into a 2-col grid */
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .pc-1 { grid-column: span 1; grid-row: span 1; }
  .pc-2 { grid-column: span 2; grid-row: span 1; }
  .pc-3 { grid-column: span 1; grid-row: span 1; }
  .pc-4 { grid-column: span 1; grid-row: span 1; }
  .pc-5 { grid-column: span 2; grid-row: span 1; }

  #signup { padding-top: 4rem; }

  .ward2-grid { gap: 1.5rem; }
}


/* ── Hero quick paths ─────────────────────────────── */
.hero-paths {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.1rem;
  margin-top: 1.6rem;
}
.hero-paths a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.hero-paths a:hover { color: #fff; }
.hero-paths a:not(:last-child)::after {
  content: '·';
  margin-left: 1.1rem;
  color: rgba(255,255,255,0.22);
}

/* ── Receipts strip: printed receipt with cutter zigzag ── */
#receipts {
  background: transparent;
  padding: 0;
}
.receipt-paper {
  position: relative;
  background:
    repeating-linear-gradient(rgba(168,67,43,0.1) 0 8px, transparent 8px 18px) 50px 0 / 2px 100% no-repeat,
    var(--paper);
  padding: 6rem 0;
}
/* sawtooth edges, like the tear-off cutter on a receipt printer */
.receipt-paper::before,
.receipt-paper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background-repeat: repeat-x;
  background-size: 14px 10px;
}
.receipt-paper::before {
  top: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath d='M0 10 L7 0 L14 10 Z' fill='%23f6f1e7'/%3E%3C/svg%3E");
}
.receipt-paper::after {
  bottom: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath d='M0 0 L7 10 L14 0 Z' fill='%23f6f1e7'/%3E%3C/svg%3E");
}

.receipt-head {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.receipts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 1.5rem;
}
.receipt-stat {
  display: block;
  text-decoration: none;
  padding: 0 1.5rem;
}
.receipt-stat:first-child { padding-left: 0; }
.receipt-stat + .receipt-stat { border-left: 1px solid var(--paper-line); }
.receipt-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900;
  line-height: 1.1;
  color: #161310;
  margin-bottom: 0.4rem;
}
.receipt-desc {
  display: block;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(20,15,5,0.62);
  transition: color var(--transition);
}
.receipt-stat:hover .receipt-num { color: var(--primary); }
.receipt-stat:hover .receipt-desc { color: rgba(20,15,5,0.85); }
.receipts-cta {
  display: block;
  text-align: right;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--paper-line);
}
.receipts-cta:hover { color: var(--primary-dark); }

/* ── Full-platform link under the 4 cards ─────────── */
.issues-all-link {
  display: block;
  text-align: center;
  padding: 2rem 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background var(--transition);
}
.issues-all-link:hover { background: rgba(0,0,0,0.18); }

@media (max-width: 820px) {
  .receipts-grid { grid-template-columns: 1fr; gap: 0; }
  .receipt-paper { padding: 4rem 0; background-position: 22px 0, 0 0; }
  .receipt-stat { padding: 1rem 0; }
  .receipt-stat:first-child { padding-top: 0; }
  .receipt-stat + .receipt-stat { border-left: none; border-top: 1px solid var(--paper-line); }
  .issues-grid { grid-template-columns: 1fr; }
}



/* hero lockup: pine "Fighting for", white "Hillsboro" */
.hero-headline span:not(.accent) { color: var(--pine-bright); }
.hero-headline .accent { color: var(--white); }


/* ── Receipt header ───────────────────────────────── */
.receipt-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--paper-line);
}
.receipt-kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.receipt-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  text-transform: uppercase;
  line-height: 1.0;
  color: #161310;
  margin-bottom: 0.65rem;
}
.receipt-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(20,15,5,0.72);
  max-width: 620px;
  margin: 0;
}


/* Homepage: Donate/Volunteer slide in on the left once past the hero.
   The nav links cascade to the right in succession; the CTAs fade into
   the space that opens. Same trigger as the marigold language pill. */
.nav-scroll-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 0;            /* no space reserved until past the hero */
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  transition: max-width 0.4s ease;
}
#navbar.past-hero .nav-scroll-ctas { max-width: 300px; }
/* the buttons themselves fade in AFTER the space has opened (no wipe) */
.nav-scroll-ctas .btn { opacity: 0; transition: opacity 0.3s ease; }
#navbar.past-hero .nav-scroll-ctas .btn { opacity: 1; transition-delay: 0.35s; }
/* the nav links slide to the right in quick succession as the space opens */
.nav-links a { transition: color var(--transition); }
#navbar.past-hero .nav-links a { animation: navLinkSlide 0.35s ease both; }
#navbar.past-hero .nav-links a:nth-child(1) { animation-delay: 0s; }
#navbar.past-hero .nav-links a:nth-child(2) { animation-delay: 0.05s; }
#navbar.past-hero .nav-links a:nth-child(3) { animation-delay: 0.10s; }
#navbar.past-hero .nav-links a:nth-child(4) { animation-delay: 0.15s; }
#navbar.past-hero .nav-links a:nth-child(5) { animation-delay: 0.20s; }
@keyframes navLinkSlide { from { transform: translateX(-10px); } to { transform: translateX(0); } }
@media (max-width: 960px) { .nav-scroll-ctas { display: none; } }


/* ── Action Network embed, restyled to match the site (signup section) ── */
#signup .can_embed h2,
#signup .can_embed h4,
#signup .can_embed .control-label,
#signup .can_embed .floatlabel-label,
#signup .can_embed .form_builder_output,
#signup .can_embed #d_sharing,
#signup .can_embed #action_info { display: none !important; }
#signup .can_embed,
#signup #can_embed_form,
#signup #can_embed_form_inner { background: transparent !important; border: none !important; padding: 0 !important; margin: 0 !important; width: 100% !important; max-width: none !important; }
#signup #form_col1, #signup #form_col2 { width: 100% !important; float: none !important; padding: 0 !important; margin: 0 !important; }
#signup #can_embed_form form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.6rem;
  align-items: stretch;
  margin: 0 0 0.75rem;
}
#signup #form_col1, #signup #form_col2 { display: contents; }
#signup #form_col1 > li { list-style: none; margin: 0 !important; padding: 0 !important; }
#signup #can_embed_form form > div:first-child,
#signup #can_embed_form form > .clear,
#signup .can_embed img.ajax-loading,
#signup #form_col1 .international_link-wrap,
#signup #form_col1 .country_drop_wrap { display: none !important; }
#signup #form_col1 > li { display: flex; }
#signup .can_embed .floatlabel-wrapper { width: 100%; height: 100%; display: flex; }
#signup .can_embed input[type="text"],
#signup .can_embed input[type="email"] {
  width: 100%;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.2) !important;
  border-radius: 3px !important;
  color: var(--dark) !important;
  padding: 0.8rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  height: 100% !important;
  min-height: 100%;
  box-shadow: none !important;
  outline: none;
  transition: border-color var(--transition);
}
#signup .can_embed input[type="text"]:focus,
#signup .can_embed input[type="email"]:focus { border-color: var(--primary) !important; }
#signup .can_embed input[type="text"]::placeholder,
#signup .can_embed input[type="email"]::placeholder { color: rgba(0,0,0,0.4); }
#signup .can_embed input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 2px solid var(--primary) !important;
  border-radius: 3px !important;
  cursor: pointer;
  transition: all var(--transition);
  text-shadow: none !important;
  box-shadow: none !important;
  height: auto !important;
}
#signup .can_embed input[type="submit"]:hover { background: var(--primary-dark) !important; border-color: var(--primary-dark) !important; }
#signup .can_embed #form_col2 ul { list-style: none; margin: 1rem 0 0; padding: 0; }
#signup .can_embed #form_col2 label {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
  text-transform: none;
  font-family: var(--font-body);
}
#signup .can_embed #form_col2 input[type="checkbox"] { margin-top: 3px; accent-color: var(--primary); }
#signup #can_embed_form_inner { display: flex; flex-wrap: wrap; align-items: flex-start; }
#signup #can_embed_form_inner > form { flex: 1 1 100%; }
#signup #donate_disclaimer {
  flex: 1 1 auto;
  font-size: 0.67rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.55;
  max-width: 720px;
  margin-top: 1rem;
}
#signup .can_embed #logo_wrap {
  margin-top: 1rem;
  margin-left: auto;
  padding-left: 1.5rem;
  opacity: 0.4;
  filter: grayscale(1);
}
#signup .can_embed #logo_wrap img,
#signup .can_embed #logo_wrap svg { height: 18px !important; width: auto !important; }
@media (max-width: 600px) {
  #signup .can_embed #logo_wrap { margin-left: 0; padding-left: 0; flex-basis: 100%; }
}
@media (max-width: 960px) {
  #signup #can_embed_form form { grid-template-columns: 1fr 1fr; }
  #signup .can_embed input[type="submit"] { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  #signup #can_embed_form form { grid-template-columns: 1fr; }
  #signup .can_embed input[type="submit"] { width: 100%; grid-column: 1; }
}


/* ── Action Network embed in the footer (secondary pages) ── */
#footer .can_embed, #footer #can_embed_form, #footer #can_embed_form_inner {
  background: transparent !important; border: none !important; padding: 0 !important;
  margin: 0 !important; width: 100% !important; max-width: none !important;
}
#footer .can_embed h2, #footer .can_embed h4,
#footer .can_embed .control-label, #footer .can_embed .floatlabel-label,
#footer .can_embed .form_builder_output, #footer .can_embed #action_info,
#footer .can_embed #d_sharing, #footer .can_embed #donate_disclaimer,
#footer .can_embed #logo_wrap, #footer .can_embed img.ajax-loading,
#footer .can_embed .international_link-wrap, #footer .can_embed .country_drop_wrap,
#footer #can_embed_form form > div:first-child,
#footer #can_embed_form form > .clear { display: none !important; }
#footer #can_embed_form form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
#footer #form_col1, #footer #form_col2 { display: contents; }
#footer #form_col1 > li { list-style: none; margin: 0 !important; padding: 0 !important; grid-column: 1 / -1; }
#footer #form_col1 > li:has(#form-first_name) { order: 1; }
#footer #form_col1 > li:has(#form-email) { order: 2; }
#footer #form_col1 > li:has(#phone) { order: 3; }
#footer #form_col1 > li:has(#form-zip_code) { order: 4; grid-column: 1; }
#footer .can_embed input[type="submit"] { order: 5; grid-column: 2; grid-row: auto; }
#footer .can_embed input[type="text"],
#footer .can_embed input[type="email"] {
  width: 100%;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 3px !important;
  color: #fff !important;
  padding: 0.6rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  height: auto !important;
  box-shadow: none !important;
  outline: none;
}
#footer .can_embed input[type="text"]::placeholder,
#footer .can_embed input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
#footer .can_embed input[type="text"]:focus,
#footer .can_embed input[type="email"]:focus { border-color: rgba(255,255,255,0.3) !important; }
#footer .can_embed input[type="submit"] {
  background: var(--gold-bright) !important;
  color: #1d1500 !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 0.6rem 0.95rem !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  cursor: pointer;
  height: auto !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: background var(--transition);
}
#footer .can_embed input[type="submit"]:hover { background: #c2920f !important; }


/* ── Action Network volunteer form (volunteer page) ── */
.vol-form-section .can_embed,
.vol-form-section #can_embed_form,
.vol-form-section #can_embed_form_inner {
  background: transparent !important; border: none !important; padding: 0 !important;
  margin: 0 !important; width: 100% !important; max-width: none !important;
}
.vol-form-section .can_embed h2, .vol-form-section .can_embed h4,
.vol-form-section .can_embed #action_info,
.vol-form-section .can_embed .form_builder_output,
.vol-form-section .can_embed .floatlabel-label,
.vol-form-section .can_embed li.core_field > .control-label,
.vol-form-section .can_embed li.js-fb-textinput > .control-label,
.vol-form-section .can_embed #d_sharing,
.vol-form-section .can_embed img.ajax-loading,
.vol-form-section .can_embed .international_link-wrap,
.vol-form-section .can_embed .country_drop_wrap,
.vol-form-section #can_embed_form form > div:first-child,
.vol-form-section #can_embed_form form > .clear { display: none !important; }
.vol-form-section #can_embed_form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 0.9rem;
}
.vol-form-section #form_col1, .vol-form-section #form_col2 { display: contents; }
.vol-form-section #form_col1 > li { list-style: none; margin: 0 !important; padding: 0 !important; }
.vol-form-section #form_col1 > li.checkbox_group_wrap,
.vol-form-section #form_col1 > li.js-fb-multipleradios { grid-column: 1 / -1; }
.vol-form-section .can_embed .floatlabel-wrapper { width: 100%; }
.vol-form-section .can_embed input[type="text"],
.vol-form-section .can_embed input[type="email"] {
  width: 100%;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.2) !important;
  border-radius: 3px !important;
  color: var(--dark) !important;
  padding: 0.8rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  height: auto !important;
  box-shadow: none !important;
  outline: none;
  transition: border-color var(--transition);
}
.vol-form-section .can_embed input[type="text"]:focus,
.vol-form-section .can_embed input[type="email"]:focus { border-color: var(--primary) !important; }
.vol-form-section .can_embed input[type="text"]::placeholder,
.vol-form-section .can_embed input[type="email"]::placeholder { color: rgba(0,0,0,0.4); }
/* question labels */
.vol-form-section .can_embed .check_radio_label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
/* chip-style checkboxes + radios */
.vol-form-section .can_embed .check_radio_field {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.vol-form-section .can_embed label.checkbox {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  border: 2px solid rgba(0,0,0,0.14);
  border-radius: 3px;
  padding: 0.55rem 1.1rem;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark);
  user-select: none;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.vol-form-section .can_embed label.checkbox:hover { border-color: var(--primary); }
.vol-form-section .can_embed label.checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.vol-form-section .can_embed label.checkbox:has(input:checked) {
  background: var(--fight-tint);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}
.vol-form-section .can_embed label.checkbox:has(input:checked)::after {
  content: '\2713';
  font-weight: 700;
}
/* radios: real option circles styled to the site */
.vol-form-section .can_embed label.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0.75rem 0 0;
  padding: 0.35rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  user-select: none;
}
.vol-form-section .can_embed label.radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.vol-form-section .can_embed label.radio::before {
  content: '';
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.vol-form-section .can_embed label.radio:hover::before {
  border-color: var(--primary);
}
.vol-form-section .can_embed label.radio:has(input:checked)::before {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 3.5px #fff;
}
.vol-form-section .can_embed label.radio:has(input:checked) {
  color: var(--primary);
  font-weight: 600;
}
/* "Other" reveal input */
.vol-form-section .can_embed .form_builder_other_input { display: none; flex-basis: 100%; }
.vol-form-section .can_embed label.checkbox:has(.js-other_option:checked) .form_builder_other_input {
  display: block;
  margin-top: 0.5rem;
}
.vol-form-section .can_embed .form_builder_other_input input {
  min-width: 220px;
}
/* multiselect layer over checkbox groups (UI lives in volunteer.html styles) */
.vol-form-section .can_embed .ms-src-hidden { display: none !important; }
.vol-form-section .can_embed .ms-other-slot { margin-top: 0.6rem; }
.vol-form-section .can_embed .ms-other-slot input { width: 100%; }
/* skeleton loaders shown while the Action Network embed loads */
.an-skeleton { display: grid; gap: 0.75rem; }
.an-skeleton .skel {
  height: 55px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(0,0,0,0.06) 25%, rgba(0,0,0,0.11) 50%, rgba(0,0,0,0.06) 75%);
  background-size: 200% 100%;
  animation: an-shimmer 1.4s ease-in-out infinite;
}
@keyframes an-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.an-skeleton--signup { grid-template-columns: repeat(4, 1fr) auto; }
.an-skeleton--signup .skel:last-child { width: 140px; }
.an-skeleton--volunteer { grid-template-columns: 1fr 1fr; }
.an-skeleton--volunteer .skel-label { height: 16px; width: 45%; grid-column: 1 / -1; }
.an-skeleton--volunteer .skel-wide { height: 48px; grid-column: 1 / -1; }
.an-skeleton--volunteer .skel-btn { width: 200px; grid-column: 1 / -1; }
.an-skeleton--footer { grid-template-columns: 1fr 48px; gap: 0.6rem; }
.an-skeleton--footer .skel {
  height: 48px;
  grid-column: 1 / -1;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
}
.an-skeleton--footer .skel:nth-last-child(2) { grid-column: 1; }
.an-skeleton--footer .skel:last-child { grid-column: 2; }
@media (max-width: 960px) {
  .an-skeleton--signup { grid-template-columns: 1fr; }
  .an-skeleton--signup .skel:last-child { width: 100%; }
}
/* submit */
.vol-form-section .can_embed input[type="submit"] {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 2px solid var(--primary) !important;
  border-radius: 3px !important;
  cursor: pointer;
  transition: all var(--transition);
  text-shadow: none !important;
  box-shadow: none !important;
  height: auto !important;
}
.vol-form-section .can_embed input[type="submit"]:hover { background: var(--primary-dark) !important; border-color: var(--primary-dark) !important; }
.vol-form-section .can_embed #donate_disclaimer {
  grid-column: 1 / -1;
  font-size: 0.67rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.55;
}
.vol-form-section .can_embed #logo_wrap { margin-top: 1rem; opacity: 0.4; filter: grayscale(1); }
.vol-form-section .can_embed #logo_wrap img,
.vol-form-section .can_embed #logo_wrap svg { height: 18px !important; width: auto !important; }
@media (max-width: 600px) {
  .vol-form-section #can_embed_form form { grid-template-columns: 1fr; }
  .vol-form-section .can_embed input[type="submit"] { width: 100%; }
}
