/* ==========================================================================
   Nate Cornell for 27th Ward Alderman — Site Stylesheet
   Brand: brick red #A8453D / near-black #1A1A1A / white
   Headline font: Oswald. Body font: system sans-serif.
   ========================================================================== */

:root {
  --brick: #A8453D;
  --brick-dark: #8a382f;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gray-bg: #F5F5F5;
  --gray-text: #5c5c5c;
  --border-gray: #e2e2e2;
  --font-head: 'Oswald', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --nav-height: 76px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: calc(var(--nav-height) + 56px); /* account for sticky nav + platform sub-nav */
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.nav-links a, .logo, .btn, .pillar-title, .footer-nav a {
  font-family: var(--font-head);
}

h1, h2, h3, h4 { margin: 0 0 16px; font-weight: 700; text-transform: none; }

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

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

/* -------------------- Photo with fade-to-black bottom -------------------- */
.hero-photo-fade {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.hero-photo-fade img { width: 100%; }
.hero-photo-fade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 45%, rgba(0,0,0,0.85) 82%, rgba(0,0,0,1) 100%);
  pointer-events: none;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* -------------------- Placeholder blocks (images/content) -------------------- */
.placeholder {
  background: repeating-linear-gradient(45deg, #eee, #eee 10px, #f7f7f7 10px, #f7f7f7 20px);
  border: 2px dashed #bbb;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  padding: 24px;
  border-radius: 4px;
  min-height: 220px;
}
.placeholder.dark {
  background: repeating-linear-gradient(45deg, #2a2a2a, #2a2a2a 10px, #232323 10px, #232323 20px);
  border-color: #555;
  color: #bbb;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--brick);
  color: var(--white);
}
.btn-primary:hover { background: var(--brick-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); }

.btn-outline-black {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-black:hover { background: var(--black); color: var(--white); }

.btn-white-on-brick {
  background: var(--white);
  color: var(--brick);
}
.btn-white-on-brick:hover { background: #f2e9e8; }

.btn-outline-brick {
  background: transparent;
  color: var(--brick);
  border-color: var(--brick);
}
.btn-outline-brick:hover { background: var(--brick); color: var(--white); }

.btn-disabled {
  background: #e8e8e8;
  color: #999;
  border-color: #e8e8e8;
  cursor: not-allowed;
  pointer-events: none;
}

/* -------------------- Nav -------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
}
.logo-top-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.logo-nate {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-ward-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-ward-line {
  font-size: 10px;
  font-weight: 700;
  color: var(--brick);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-cornell {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
}

/* -------------------- Nav landing state (large logo, fixed size) -------------------- */
@media (min-width: 900px) {
  .site-nav { height: 110px; }
  .logo-nate, .logo-cornell { font-size: 40px; }
  .logo-ward-line { font-size: 17px; }
  .logo-top-row { gap: 12px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brick);
  border-bottom-color: var(--brick);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-donate {
  padding: 10px 22px;
  font-size: 13px;
}
.nav-donate-mobile { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
}

.site-nav-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--black) 0%, var(--black) 28%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0) 80%);
  border-bottom: none;
}
.site-nav-hero-overlay .logo-nate,
.site-nav-hero-overlay .logo-cornell { color: var(--white); }
.site-nav-hero-overlay .nav-links a { color: rgba(255,255,255,0.92); }
.site-nav-hero-overlay .nav-links a:hover,
.site-nav-hero-overlay .nav-links a.active { color: var(--white); border-bottom-color: var(--white); }
.site-nav-hero-overlay .nav-toggle span { background: var(--white); }
.site-nav-hero-overlay.is-scrolled {
  position: sticky;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
}
.site-nav-hero-overlay.is-scrolled .logo-nate,
.site-nav-hero-overlay.is-scrolled .logo-cornell { color: var(--black); }
.site-nav-hero-overlay.is-scrolled .nav-links a { color: inherit; }
.site-nav-hero-overlay.is-scrolled .nav-toggle span { background: var(--black); }
.hero-photo-bg.hero-under-overlay-nav { padding-top: 220px; }
@media (max-width: 899px) {
  .hero-photo-bg.hero-under-overlay-nav { padding-top: 120px; }
}

/* -------------------- Hero sections -------------------- */
.hero {
  padding: 88px 0 72px;
}
.hero-dark { background: var(--black); color: var(--white); }
.hero-photo-bg {
  position: relative;
  background-size: cover;
  background-position: 78% 38%;
  background-repeat: no-repeat;
}
.hero-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, var(--black) 15%, rgba(0,0,0,0.9) 28%, rgba(0,0,0,0.72) 42%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.28) 68%, rgba(0,0,0,0.1) 82%, rgba(0,0,0,0) 96%);
}
.hero-photo-bg .container { position: relative; z-index: 1; }
.hero-photo-bg .hero-headline-xl,
.hero-photo-bg .subhead { max-width: 620px; }
@media (max-width: 720px) {
  .hero-photo-bg { background-position: 70% center; }
  .hero-photo-bg::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.82) 55%, rgba(0,0,0,0.92) 100%);
  }
  .hero-photo-bg .hero-headline-xl,
  .hero-photo-bg .subhead { max-width: none; }
}
.hero-spacious { padding: 140px 0 120px; }
.hero-spacious .hero-headline-xl { line-height: 1.22; margin-bottom: 40px; }
.hero-spacious .subhead { margin-bottom: 44px; }
.hero-spacious .hero-ctas { margin-top: 8px; }
@media (max-width: 720px) {
  .hero-spacious { padding: 72px 0 64px; }
  .hero-spacious .hero-headline-xl { margin-bottom: 32px; }
}
.hero-brick { background: var(--brick); color: var(--white); }
.hero-plain {
  background: var(--white);
  color: var(--black);
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--border-gray);
}
.hero-plain h1 { color: var(--black); }
.hero-plain .subhead { color: var(--gray-text); }
.platform-disclaimer {
  color: var(--gray-text);
  font-size: 16px;
  margin: 16px 0 0;
}

.back-link {
  display: inline-block;
  color: var(--gray-text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.back-link:hover { color: var(--brick); }
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  color: inherit;
  text-transform: uppercase;
}
.hero .hero-headline-xl {
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.1;
}
.brick-text { color: var(--brick); }
.hero-closer {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}
.hero-closer .pipe { display: inline-block; margin: 0 22px; }
.hero .subhead {
  font-size: 19px;
  max-width: 640px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.88);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.page-hero-simple {
  text-align: left;
}
.page-hero-simple .subhead { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 0; }
.page-hero-simple.hero-plain .subhead { color: var(--gray-text); }

/* -------------------- Section headings -------------------- */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  text-transform: uppercase;
  color: var(--black);
}
.section-head.on-dark h2 { color: var(--white); }
.section-head .brick-text { color: var(--brick); }
.section-head p.lede { color: var(--gray-text); font-size: 17px; max-width: 560px; margin: 0 auto; }

.platform-header { margin-bottom: 20px; }
.platform-header h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  text-transform: uppercase;
  color: var(--black);
  margin: 4px 0 0;
}
.platform-intro-full { font-family: var(--font-body); color: var(--black); font-size: 19px; margin: 0 0 40px; }

.divider {
  width: 64px;
  height: 4px;
  background: var(--brick);
  border: none;
  margin: 20px 0;
}
.divider.center { margin: 20px auto; }

/* -------------------- Bio content -------------------- */
.bio-content p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.bio-content p:last-child { margin-bottom: 0; }
.bio-emphasis {
  font-family: var(--font-head);
  font-size: 22px !important;
  line-height: 1.5 !important;
  color: var(--brick);
  border-left: 4px solid var(--brick);
  padding-left: 24px;
  margin: 44px 0 !important;
}

.bio-photo-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}
.bio-photo-row .photo-tooltip {
  position: relative;
  width: 31%;
  max-width: 320px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.bio-photo-row .photo-tooltip img {
  width: 100%;
  max-width: none;
  cursor: pointer;
  box-shadow: none;
}

/* Crop to match the landscape 3:2 photos above (Welle/house/wedding source photos are portrait/square) */
.bio-photo-row .photo-tooltip.photo-crop {
  aspect-ratio: 3 / 2;
}
.bio-photo-row .photo-tooltip.photo-crop img {
  height: 100%;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-family: 'Caveat', cursive;
  font-size: 25px;
  line-height: 1.3;
  color: var(--brick);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.photo-tooltip:hover .photo-caption,
.photo-tooltip.active .photo-caption {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 720px) {
  .bio-photo-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .bio-photo-row .photo-tooltip { width: 100%; max-width: none; }
}

/* -------------------- Two column generic -------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col h2 { font-size: clamp(28px, 3.5vw, 38px); }
.two-col p { font-size: 19px; }

/* -------------------- Eyebrow (small uppercase label above a heading) -------------------- */
.eyebrow {
  display: block;
  color: var(--brick);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

/* -------------------- Signup / forms -------------------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.form-row.two-field { grid-template-columns: 1fr 1fr; }
.form-full { grid-column: 1 / -1; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: var(--white);
  color: var(--black);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brick);
}
label { font-size: 14px; display: block; margin-bottom: 6px; font-weight: 600; }

.signup-form { text-align: center; }
.signup-form .btn { margin-top: 24px; }

.two-col.align-top { align-items: start; }

.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin: 8px 0 28px; }
.checkbox-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.checkbox-item input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--brick); }
.checkbox-label { display: flex; flex-direction: column; gap: 3px; }
.checkbox-title { font-weight: 700; }
.checkbox-desc { font-style: italic; font-size: 13px; color: var(--black); }

/* -------------------- Platform pillar cards (2x2) -------------------- */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pillar-card {
  position: relative;
  border-top: 4px solid var(--brick);
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pillar-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.pillar-card h3 {
  position: relative;
  font-size: 22px;
  margin-bottom: 14px;
}
.pillar-card p {
  position: relative;
  color: var(--gray-text);
  font-size: 15px;
  margin-bottom: 18px;
}
.read-more {
  position: relative;
  color: var(--brick);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.read-more:hover { text-decoration: underline; }

/* -------------------- Event cards -------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  padding: 26px;
}
.event-card h3 { font-size: 19px; margin-bottom: 8px; }
.event-meta { color: var(--gray-text); font-size: 14px; margin-bottom: 4px; }
.event-card .btn { margin-top: 16px; width: 100%; text-align: center; }

/* -------------------- Follow the Campaign -------------------- */
.social-follow-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 32px;
}
.social-follow-icons a { color: var(--black); display: inline-flex; }
.social-follow-icons a:hover { color: var(--brick); }
.social-follow-icons svg { width: 28px; height: 28px; fill: currentColor; }

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-feed-embeds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.social-embed { max-width: 100%; }
.social-feed-more {
  text-align: center;
  color: var(--gray-text);
  margin-top: 28px;
}
.social-feed-more a { color: var(--brick); font-weight: 700; text-decoration: none; }
.social-feed-more a:hover { text-decoration: underline; }
.social-feed-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  font-size: 13px;
}
.social-feed-card.real {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  padding: 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.social-feed-card.real:hover { opacity: 0.85; }
.social-feed-card.real .social-platform {
  color: var(--brick);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.social-feed-card.real .social-caption {
  font-size: 15px;
  line-height: 1.4;
  margin: 10px 0;
}
.social-feed-card.real .social-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* -------------------- Donate amounts -------------------- */
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* -------------------- Truck section -------------------- */
.truck-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.truck-section h2 { color: var(--white); font-size: clamp(32px, 5vw, 48px); }
.truck-section .subhead { max-width: 480px; margin: 0 auto 28px; color: rgba(255,255,255,0.8); }

/* -------------------- Platform page specifics -------------------- */
.platform-subnav {
  position: sticky;
  top: var(--nav-height);
  z-index: 900;
  background: var(--black);
}
.platform-subnav ul {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
  display: flex;
  gap: 32px;
}
.platform-subnav a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-bottom: 3px solid transparent;
}
.platform-subnav a:hover,
.platform-subnav a.active { color: var(--white); border-bottom-color: var(--brick); }

.pillar-section {
  position: relative;
  padding: 70px 0 90px;
}
.pillar-content { position: relative; max-width: 760px; }
.pillar-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.pillar-content .pillar-eyebrow {
  color: var(--brick);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
.pillar-content p { margin-bottom: 20px; font-size: 16.5px; }
.pillar-commitments { margin: 32px 0; padding: 0; list-style: none; }
.pillar-commitments li {
  padding: 20px 0 20px 32px;
  border-top: 1px solid var(--border-gray);
  position: relative;
  font-size: 16px;
}
.pillar-commitments li:before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--brick);
  font-weight: 700;
}
.pillar-commitments li strong { display: block; margin-bottom: 4px; font-family: var(--font-head); text-transform: uppercase; font-size: 14.5px; letter-spacing: 0.02em; }

.fn-ref {
  font-size: 0.65em;
  font-weight: 700;
  color: var(--brick);
  text-decoration: none;
  margin-left: 1px;
}
.fn-ref:hover { text-decoration: underline; }

.pillar-footnotes {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-gray);
}
.pillar-footnotes .pillar-footnote-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12.5px;
  color: var(--gray-text);
  margin-bottom: 10px;
}
.pillar-footnotes ol {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
}
.pillar-footnotes li { margin-bottom: 8px; }
.pillar-footnotes a { color: var(--brick); word-break: break-word; }
.pillar-footnotes a.fn-back { margin-left: 4px; text-decoration: none; }

.ideas-cta {
  background: var(--brick);
  color: var(--white);
  text-align: center;
}
.ideas-cta h2 { color: var(--white); }
.ideas-cta p { max-width: 500px; margin: 0 auto 30px; }
.qr-placeholder { width: 140px; height: 140px; margin: 30px auto 0; }
.ideas-cta-compact { padding: 48px 0; }
.ideas-cta-compact h2 { font-size: clamp(24px, 3vw, 32px); }
.ideas-cta-compact p { max-width: none; margin-bottom: 24px; font-size: 19px; }

/* -------------------- Press / gallery grids -------------------- */
.press-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press-card {
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  padding: 24px;
  overflow: hidden;
}
.press-card .press-thumb-wrap {
  position: relative;
  display: block;
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  margin: -24px -24px 16px;
}
.press-card .press-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.press-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.press-play-btn svg { width: 20px; height: 20px; fill: var(--white); margin-left: 3px; }
.press-thumb-wrap:hover .press-play-btn { background: rgba(0,0,0,0.65); transform: translate(-50%, -50%) scale(1.08); }
.press-card .pub { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; color: var(--brick); font-size: 13px; margin-bottom: 10px; }
.press-card h3 { font-size: 18px; margin-bottom: 8px; }
.press-card .date { color: var(--gray-text); font-size: 13px; margin-bottom: 12px; }

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 0;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.footer-nav a {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-nav a:hover { color: var(--brick); }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}
.footer-social a { color: var(--white); display: inline-flex; }
.footer-social a:hover { color: var(--brick); }
.footer-social svg { width: 30px; height: 30px; fill: currentColor; }
.footer-contact { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.footer-contact a { display: block; }
.footer-contact a:hover { color: var(--brick); }
.footer-bottom {
  padding: 0 0 24px;
  text-align: center;
}
.footer-legal-box {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
}
.footer-bottom p { margin: 4px 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; gap: 24px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .events-grid, .press-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .social-feed-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .hero { padding: 64px 0 48px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border-gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 16px 24px; border-bottom: 1px solid var(--border-gray); }
  .nav-donate { display: none; }
  .nav-links.open .nav-donate-mobile { display: block; margin: 16px 24px; }

  .platform-subnav ul { gap: 20px; overflow-x: auto; padding: 0 20px; }
  .platform-subnav a { white-space: nowrap; }

  .events-grid, .press-grid, .gallery-grid { grid-template-columns: 1fr; }
  .form-row, .form-row.two-field { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }

  .schedule-grid { grid-template-columns: 1fr !important; }
  .listening-tour-banner .container { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* -------------------- Listening Tour: neighborhood badges -------------------- */
.neighborhood-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.neighborhood-badge {
  display: inline-block;
  background: var(--brick);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}

/* -------------------- Listening Tour: numbered list -------------------- */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.numbered-item { display: flex; gap: 20px; align-items: flex-start; }
.numbered-item .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 48px;
  color: rgba(168, 69, 61, 0.28);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.numbered-item h3 { margin: 0 0 6px; font-size: 19px; font-weight: 700; }
.numbered-item p { margin: 0; color: var(--gray-text); font-size: 16px; }

/* -------------------- Listening Tour: schedule cards -------------------- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .schedule-grid { grid-template-columns: 1fr 1fr; }
}
.schedule-card {
  background: var(--white);
  border: 0.5px solid var(--border-gray);
  border-top: 3px solid var(--brick);
  border-radius: 8px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.schedule-card.coming-soon { border-top-color: #bbb; }
.schedule-card h3 { font-size: 19px; margin: 0 0 10px; }
.schedule-card p { color: var(--gray-text); font-size: 15px; margin: 0 0 18px; flex-grow: 1; }
.schedule-date {
  color: var(--brick);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.schedule-card.coming-soon .schedule-date { color: #999; }
.schedule-card .btn { text-align: center; }

/* -------------------- Listening Tour: promise pull-quote -------------------- */
.promise-quote {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--brick);
  border-radius: 4px;
  padding: 32px;
  margin: 28px 0;
}
.promise-quote p {
  font-style: italic;
  color: var(--white);
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.promise-quote .attribution {
  display: block;
  color: var(--brick);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

/* -------------------- Homepage hero: listening tour banner strip -------------------- */
.hero-banner-strip {
  background: var(--brick);
  padding: 10px 0;
  width: 100%;
}
.hero-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-banner-inner p {
  margin: 0;
  font-size: 14px;
  color: var(--white);
}
.hero-banner-label {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}
.hero-banner-link {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  white-space: nowrap;
}
.hero-banner-link:hover { color: var(--black); }
