:root {
  --primary: #990000;
  --primary-dark: #6b0000;
  --dark: #000000;
  --dark-alt: #0d0d0d;
  --gray: #444444;
  --gray-light: #f0ece8;
  --white: #ffffff;
  --cream: #ffffff;
  --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);
  transform: translateY(-2px);
}

.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);
  transform: translateY(-2px);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  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);
  transform: translateY(-2px);
}

.btn-primary-inv {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 800;
}
.btn-primary-inv:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-hero-volunteer {
  background: var(--primary);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-hero-volunteer:hover {
  background: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.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 1.25rem 0.5rem;
  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: 150px;
  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: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,0.22); }
.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: rgba(220, 80, 80, 0.9);
  justify-content: flex-start;
}
.mobile-menu .mobile-footer a.btn:hover {
  background: transparent;
  color: #ff8080;
}
.mobile-menu .mobile-footer .lang-toggle-btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* HERO */
#hero {
  background: #1e0000;
  position: relative;
  overflow: hidden;
  padding: 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(153,0,0,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: 2.5rem;
  font-weight: 400;
  line-height: 1.65;
}
.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(--primary);
  padding: 280px 0 3.5rem;
  border-bottom: 3px solid var(--primary-dark);
}
.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(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  line-height: 1;
}
.signup-heading .accent { color: var(--white); }
.signup-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  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: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  color: var(--white);
  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(255,255,255,0.5); }
.signup-input:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
}
.signup-legal {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 800px;
}
.signup-legal a { color: rgba(255,255,255,0.7); 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(--primary); 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(3, 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) {
  .issue-card:last-child:nth-child(3n+1) { grid-column: 2; }
}

/* 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(153,0,0,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 {
  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); transform: translateY(-2px); }
.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: 160px; }

  #hero { padding: 2.5rem 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; }
  .hero-ctas .btn, .involve-ctas .btn { 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: 30%;
    margin: 0 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: 2rem 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: 200px; }
  #faq-teaser { padding-top: 3.75rem; padding-bottom: 3.75rem; }
  .ward2-grid { gap: 1.5rem; }
}
