/* Polega-Quigley campaign website — UI styles.
   Tokens come from tokens.css (loaded first). */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pq-paper);
  color: var(--pq-navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--container-narrow); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: 15px; line-height: 1;
  padding: 15px 28px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; transition: background .15s ease, transform .1s ease, color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--pq-green); color: #fff; }
.btn-primary:hover { background: var(--pq-green-700); color: #fff; }
.btn-donate { background: var(--pq-gold); color: var(--pq-navy); }
.btn-donate:hover { background: var(--pq-gold-600); color: #fff; }
.btn-ghost { background: transparent; color: var(--pq-navy); border-color: var(--pq-navy); }
.btn-ghost:hover { background: var(--pq-navy); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: #fff; color: var(--pq-navy); border-color: #fff; }
.btn-lg { font-size: 17px; padding: 18px 34px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   FORMS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 11px; letter-spacing: .06em; color: var(--pq-navy);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 16px; padding: 13px 15px;
  border: 1.5px solid var(--pq-line-strong); border-radius: var(--radius-sm);
  background: #fff; color: var(--pq-navy); width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--pq-green); box-shadow: 0 0 0 3px rgba(34,96,64,.15);
}
.field input[aria-invalid="true"] { border-color: var(--pq-rust); }

.on-dark .field label { color: rgba(255,255,255,.85); }
.on-dark .field input, .on-dark .field textarea {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); color: #fff;
}
.on-dark .field input::placeholder { color: rgba(255,255,255,.45); }

/* Honeypot — visually hidden, kept reachable for naive bots */
.lpq-hp {
  position: absolute !important; left: -10000px !important; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* ============================================================
   KICKER + FLORIDA RULE
   ============================================================ */
.kicker {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 19px; letter-spacing: .14em; color: var(--pq-rust);
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px;
}
.kicker img { width: 18px; height: 18px; }
.band-green .kicker, .band-navy .kicker { color: var(--pq-gold); }

/* Florida-terminus rule */
.fl-rule { display: flex; align-items: center; }
.fl-rule .line { height: 4px; background: var(--pq-navy); flex: 1; border-radius: 2px; }
.fl-rule img { width: 26px; height: 26px; margin-left: 10px; }
.band-green .fl-rule .line, .band-navy .fl-rule .line { background: var(--pq-gold); }

h1, h2, h3, h4 { font-family: var(--font-display); }

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
.section { padding: var(--sp-9) 0; position: relative; }
.section-sm { padding: var(--sp-8) 0; position: relative; }
.band-green { background: var(--pq-green); color: #fff; }
.band-navy  { background: var(--pq-navy); color: #fff; }
.band-sand  { background: var(--pq-sand); }
.band-green .pq-h2, .band-navy .pq-h2,
.band-green h2,     .band-navy h2 { color: #fff; }
.band-green p,      .band-navy p   { color: rgba(255,255,255,.85); }

/* Strategic section overlap: a feature element bleeds across a band seam.
   Give it `.seam` for stacking, then a negative margin to cross the edge;
   the receiving section gets extra padding to clear it. */
.seam { position: relative; z-index: 3; }
.clear-seam-top { padding-top: calc(var(--sp-9) + 60px); }

/* ============================================================
   STICKY SITE HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s, backdrop-filter .2s;
}
.site-header.is-scrolled {
  background: rgba(250, 248, 244, .94);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
          backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: var(--pq-line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 24px;
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img {
  height: 125px; width: auto;
  transition: height .25s ease;
}
.site-header.is-scrolled .site-logo img { height: 72px; }

/* Primary nav */
.site-nav {
  display: flex; align-items: center; gap: 30px;
}
.site-nav a.nav-link {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 14px; letter-spacing: .04em;
  color: var(--pq-navy); text-decoration: none;
  transition: color .15s ease;
}
.site-nav a.nav-link:hover { color: var(--pq-green); }
.nav-donate { padding: 12px 22px !important; font-size: 14px !important; }
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--pq-navy); padding: 6px; line-height: 0;
}
.nav-burger svg { width: 28px; height: 28px; }
.site-mobile-menu {
  display: none; padding: 0 24px 18px;
}
.site-mobile-menu.is-open { display: flex; flex-direction: column; gap: 14px; }
.site-mobile-menu a {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 16px; color: var(--pq-navy); text-decoration: none;
}

/* ============================================================
   HERO (used on both splash and full home)
   ============================================================ */
.hero { position: relative; padding: 24px 0 96px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: .96;
  margin: 0 0 22px;
  color: var(--pq-navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.hero .lead {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--fg1);
  max-width: 520px;
  margin: 0 0 30px;
}
/* On the full home, the hero leaves room below for the donate-strip seam */
.hero.is-home { padding-bottom: 0; }

.signup-form {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; max-width: 560px;
  position: relative;
}
.signup-form .submit-wrap { display: flex; align-items: flex-end; }
.signup-form .submit-wrap button { height: 49px; }
.signup-success {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px;
  background: var(--pq-green-100); border: 1px solid var(--pq-green);
  border-radius: var(--radius-md); max-width: 560px;
  font-family: var(--font-body); font-size: 16px; color: var(--pq-navy);
}
.signup-error {
  margin-top: 12px; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--pq-rust-100); border: 1px solid var(--pq-rust);
  color: var(--pq-navy); font-size: 14px; max-width: 560px;
}

/* Headshot card + badge */
.headshot-wrap { position: relative; }
.headshot-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 5px solid #fff;
  aspect-ratio: 4 / 5;
}
.headshot-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
}
.headshot-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--pq-navy); color: #fff;
  padding: 14px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 15px; letter-spacing: .03em;
  display: flex; align-items: center; gap: 10px;
}
.headshot-badge img { height: 30px; width: auto; }

/* ============================================================
   DONATE STRIP (bleeds across hero -> about seam)
   ============================================================ */
.donate-strip-wrap { margin-top: 56px; margin-bottom: -70px; }
.donate-strip {
  background: var(--pq-navy); border-radius: var(--radius-lg); color: #fff;
  padding: 22px 26px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.donate-strip-title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 20px; line-height: 1;
}
.donate-amounts { display: flex; gap: 10px; flex-wrap: wrap; }
.donate-amount {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px; padding: 11px 20px;
  border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent; color: #fff; transition: all .15s;
}
.donate-amount:hover { background: rgba(255,255,255,.08); color: #fff; }
.donate-amount.is-selected,
.donate-amount.is-selected:hover {
  background: var(--pq-gold); color: var(--pq-navy); border-color: var(--pq-gold);
}
.donate-strip .btn { margin-left: auto; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start;
}
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.about-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 20%;
}
.about-copy h2 { margin-bottom: 22px; }
.about-copy p { margin-bottom: 1em; }
.about-copy p:last-child { margin-bottom: 0; font-weight: 600; }

/* ============================================================
   PRIORITIES (accordion)
   ============================================================ */
.priorities-intro { max-width: 720px; margin-bottom: 44px; }
.priorities-intro h2 { margin-bottom: 16px; }
.priorities-list { border-top: 1px solid var(--pq-line); }
/* padding-top adds 1em above the toggle to counteract the 1em margin-bottom
   that WP applies to <p> tags inside .priority-body, so the top and bottom
   whitespace around each open priority stay visually balanced. */
.priority-item { border-bottom: 1px solid var(--pq-line); padding-top: 1em; padding-bottom: 1em; }
.priority-toggle {
  width: 100%; display: flex; align-items: center; gap: 18px; padding: 22px 4px;
  background: none; border: none; cursor: pointer; text-align: left;
}
.priority-toggle img { width: 30px; height: 30px; flex: none; }
.priority-toggle .priority-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(18px, 2.1vw, 24px); color: var(--pq-navy); flex: 1; line-height: 1.05;
}
.priority-toggle .priority-chev {
  color: var(--pq-rust);
  transition: transform .2s ease;
  flex: none;
}
.priority-item.is-open .priority-toggle .priority-chev { transform: rotate(180deg); }
.priority-body {
  max-height: 0; overflow: hidden;
  padding-left: 48px; max-width: 760px; color: var(--fg2);
  transition: max-height .3s ease;
}
/* max-height is a fixed value (not auto) so we can transition it. Set it
   well above any realistic priority-body length so content isn't clipped. */
.priority-item.is-open .priority-body {
  max-height: 1600px;
  padding-bottom: 24px;
}

/* ============================================================
   ENDORSEMENTS
   ============================================================ */
.endorsements { padding-bottom: 0; }
.endorsements-intro { max-width: 720px; margin-bottom: 40px; }
.endorsements-intro h2 { margin-bottom: 16px; }
.endorsement-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px;
}
.endorsement-card {
  background: #fff; border: 1px solid var(--pq-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  display: flex; flex-direction: column;
}
.endorsement-card .rule { height: 5px; }
.endorsement-card .rule-green { background: var(--pq-green); }
.endorsement-card .rule-gold { background: var(--pq-gold); }
.endorsement-card .rule-rust { background: var(--pq-rust); }
.endorsement-card .card-body {
  padding: 24px 24px 22px; display: flex; flex-direction: column; flex: 1;
}
.endorsement-card .quote {
  font-family: var(--font-body); font-size: 17px; line-height: 1.5;
  color: var(--pq-navy); margin: 0 0 20px; flex: 1;
}
.endorsement-card .person {
  display: flex; align-items: center; gap: 13px;
}
.endorsement-card .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .02em;
  overflow: hidden;
}
.endorsement-card .avatar-green { background: var(--pq-green); color: #fff; }
.endorsement-card .avatar-gold  { background: var(--pq-gold);  color: var(--pq-navy); }
.endorsement-card .avatar-rust  { background: var(--pq-rust);  color: #fff; }
/* When a featured image is set, the <img> replaces the initials and the
   accent ring stays visible as a 2px border around the portrait. */
.endorsement-card .avatar.has-photo { padding: 0; border: 2px solid transparent; background: #fff; }
.endorsement-card .avatar.has-photo.avatar-green { border-color: var(--pq-green); }
.endorsement-card .avatar.has-photo.avatar-gold  { border-color: var(--pq-gold); }
.endorsement-card .avatar.has-photo.avatar-rust  { border-color: var(--pq-rust); }
.endorsement-card .avatar.has-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%;
}
.endorsement-card .role {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 13px; letter-spacing: .03em; color: var(--pq-navy); line-height: 1.1;
}
.endorsement-card .place {
  font-family: var(--font-body); font-size: 14px; color: var(--fg2);
}
.endorsement-card.is-hidden { display: none; }

.endorsements-toggle-wrap {
  display: flex; justify-content: center; margin-top: 28px;
}
.endorsements-toggle .chev { transition: transform .2s; }
.endorsements-toggle.is-expanded .chev { transform: rotate(180deg); }

/* Featured pull-quote — bleeds into the band below */
.endorsement-featured {
  margin-top: 40px; margin-bottom: -80px;
  background: var(--pq-navy); color: #fff;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 38px 44px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.endorsement-featured > img { height: 80px; flex: none; }
.endorsement-featured-photo {
  width: 120px; height: 120px; flex: none; border-radius: 50%;
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 3px solid var(--pq-gold); background: #fff;
}
.endorsement-featured-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%;
}
.endorsement-featured .copy { flex: 1; min-width: 280px; }
.endorsement-featured .quote {
  font-family: var(--font-body); font-size: clamp(20px, 2.3vw, 26px); line-height: 1.4;
  margin: 0 0 14px; color: #fff;
}
.endorsement-featured .attribution {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: .08em; color: var(--pq-gold);
}

/* ============================================================
   MEDIA CARDS (Newsroom links on home)
   ============================================================ */
.media-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 40px;
}
.media-head h2 { margin: 0; }
.media-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.media-card {
  text-decoration: none;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 24px; min-height: 170px;
  display: flex; flex-direction: column;
  transition: background .15s, transform .15s;
}
.media-card:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.media-card h4 {
  color: #fff; font-weight: 800; text-transform: uppercase; font-size: 19px; margin: 0 0 10px;
}
.media-card p { color: rgba(255,255,255,.78); font-size: 15px; margin: 0; flex: 1; }
.media-card .view {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 11px; letter-spacing: .1em; color: var(--pq-gold); margin-top: 16px;
  display: inline-flex; align-items: center; gap: 7px;
}
.media-foot {
  color: rgba(255,255,255,.6); margin-top: 24px; margin-bottom: 0;
}

/* ============================================================
   DONATE BOX (persistent CTA)
   ============================================================ */
.donate-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.donate-copy h2 { margin-bottom: 16px; }
.donate-copy .body { color: rgba(255,255,255,.8); max-width: 460px; margin: 0; }
.donate-copy .glyph { margin-top: 28px; }
.donate-copy .glyph img { height: 70px; opacity: .9; }
.donate-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
}
.donate-card .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px;
}
.donate-card .amount-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 19px; padding: 16px 0;
  border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
  transition: all .15s;
  border: 2px solid var(--pq-line-strong);
  background: #fff; color: var(--pq-navy);
}
.donate-card .amount-btn:hover { background: var(--pq-sand); color: var(--pq-navy); }
.donate-card .amount-btn.is-selected,
.donate-card .amount-btn.is-selected:hover {
  background: var(--pq-green); color: #fff; border-color: var(--pq-green);
}
.donate-card .custom {
  font-family: var(--font-display); font-weight: 800; font-size: 17px; text-align: center;
  border-radius: var(--radius-sm); border: 2px solid var(--pq-line-strong);
  color: var(--pq-navy); padding: 16px 4px;
}
.donate-card .disclaimer {
  text-align: center; margin: 16px 0 0;
}

/* ============================================================
   GET INVOLVED
   ============================================================ */
.involved-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.involved-copy h2 { margin-bottom: 18px; }
.involved-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 30px;
}
.volunteer-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.volunteer-form .full { grid-column: 1 / 3; }
.help-group { display: flex; flex-direction: column; gap: 9px; }
.help-group > label {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 11px; letter-spacing: .06em; color: var(--pq-navy);
}
.help-options { display: flex; flex-wrap: wrap; gap: 10px; }
.help-option {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 12px; letter-spacing: .04em; padding: 11px 18px;
  border-radius: var(--radius-sm); cursor: pointer; transition: all .15s ease;
  border: 2px solid var(--pq-line-strong); background: #fff; color: var(--pq-navy);
}
.help-option.is-active {
  background: var(--pq-green); color: #fff; border-color: var(--pq-green);
}
.volunteer-success {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 14px 4px;
}
.volunteer-success .head {
  display: flex; align-items: center; gap: 12px;
}
.volunteer-success .head h4 { margin: 0; font-size: 22px; }
.volunteer-success p { margin: 0; color: var(--fg2); }
.volunteer-success p strong { color: var(--pq-navy); }
.volunteer-error {
  margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--pq-rust-100); border: 1px solid var(--pq-rust);
  color: var(--pq-navy); font-size: 14px;
}

/* ============================================================
   SUB-PAGE BANNER (Press / Statements / Photos & Video)
   ============================================================ */
.page-banner {
  padding-top: 56px; padding-bottom: 64px;
  background: var(--pq-navy); color: #fff;
}
.page-banner .back {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 12px; letter-spacing: .08em; color: rgba(255,255,255,.7); text-decoration: none;
  display: flex; width: fit-content; align-items: center; gap: 7px; margin-bottom: 26px;
}
.page-banner .back:hover { color: #fff; }
.page-banner .kicker { color: var(--pq-gold); display: flex; width: fit-content; }
.page-banner h1 {
  font-size: clamp(38px, 5vw, 64px); line-height: .98; margin: 0 0 18px; color: #fff;
}
.page-banner .lead {
  color: rgba(255,255,255,.82); max-width: 620px; margin: 0;
}

/* ============================================================
   PRESS / STATEMENTS LIST
   ============================================================ */
.press-list .note { margin-bottom: 22px; }
.press-list .rows { border-top: 1px solid var(--pq-line); }
.press-row {
  display: grid; grid-template-columns: 210px 1fr; gap: 32px;
  padding: 30px 0; border-bottom: 1px solid var(--pq-line);
}
.press-row .meta-date {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 13px; letter-spacing: .04em; color: var(--pq-rust); margin-bottom: 8px;
}
.press-row .meta-source {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--pq-navy);
}
.press-row .meta-tag {
  display: inline-block; margin-top: 10px; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; font-size: 11px; letter-spacing: .05em; padding: 5px 12px;
  border-radius: 999px; background: var(--pq-sand); border: 1px solid var(--pq-line-strong); color: var(--pq-navy);
}
.press-row h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.08; margin: 0 0 12px; }
.press-row h3 a { color: var(--pq-navy); text-decoration: none; }
.press-row h3 a:hover { color: var(--pq-green); }
.press-row .excerpt { margin: 0 0 16px; color: var(--fg2); max-width: 680px; }
.press-row .cta {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 13px;
  letter-spacing: .04em; color: var(--pq-green); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
}

/* ============================================================
   PHOTOS & VIDEO
   ============================================================ */
.photos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 16px;
}
.photo-tile {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  background: var(--pq-sand);
}
.photo-tile.span-2 { grid-column: span 2; grid-row: span 2; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card .thumb {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 16/9; background: var(--pq-sand);
}
.video-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card .play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.video-card .play-badge > div {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(1,27,43,.72);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
  color: #fff;
}
.video-card h4 { margin: 14px 0 4px; font-size: 19px; }
.media-kit-strip {
  background: var(--pq-navy); color: #fff; border-radius: var(--radius-lg);
  padding: 30px 36px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.media-kit-strip img.logo { height: 46px; }
.media-kit-strip .body { flex: 1; min-width: 240px; }
.media-kit-strip h4 { color: #fff; margin: 0 0 4px; font-size: 20px; }
.media-kit-strip p { color: rgba(255,255,255,.75); margin: 0; font-size: 15px; }

.section-label { margin-bottom: 24px; }
.section-label h2 { margin: 0; }
.section-label .sub { margin: 6px 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--pq-navy-900); color: #fff; padding-top: 56px; }
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px;
}
.site-footer .footer-logo { height: 58px; width: auto; margin-bottom: 18px; }
.site-footer .footer-blurb { color: rgba(255,255,255,.65); font-size: 15px; max-width: 340px; margin: 0; }
.site-footer h4 {
  font-family: var(--font-display); font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pq-gold); margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.site-footer ul a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-family: var(--font-body); font-size: 15px;
}
.site-footer ul a:hover { color: #fff; text-decoration: underline; }
.site-footer .footer-legal {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 22px 0 34px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center;
}
.site-footer .footer-legal p {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: var(--text-xs); letter-spacing: .04em; color: rgba(255,255,255,.55);
  line-height: 1.4; margin: 0; max-width: 720px;
}
.site-footer .footer-legal img { height: 30px; opacity: .8; }

/* ============================================================
   REVEAL ANIMATIONS
   - .lpq-reveal: above-the-fold cascade with manual delay (splash hero).
   - .reveal:     scroll-triggered, .in toggled by reveal.js when in view.
   ============================================================ */
@keyframes lpq-reveal {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to   { opacity: 1; transform: none; }
}
.lpq-reveal {
  opacity: 0;
  will-change: opacity, transform;
  animation: lpq-reveal .72s cubic-bezier(.21, .78, .36, 1) forwards;
  animation-delay: var(--lpq-delay, 0s);
}
@keyframes lpq-reveal-from-right {
  from { opacity: 0; transform: translate3d(28px, 0, 0); }
  to   { opacity: 1; transform: none; }
}
.lpq-reveal--from-right { animation-name: lpq-reveal-from-right; }

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lpq-reveal,
  .lpq-reveal--from-right {
    animation: none; opacity: 1; transform: none;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 860px) {
  .container { padding: 0 18px; }
  .site-nav { display: none; }
  .nav-burger { display: inline-flex; }
  .site-logo img { height: 80px; }
  .site-header.is-scrolled .site-logo img { height: 56px; }

  .kicker { font-size: 14px; }

  .hero { padding-bottom: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .signup-form { grid-template-columns: 1fr; max-width: 100%; }
  .signup-form .submit-wrap button { width: 100%; }

  .donate-strip { padding: 18px 20px; }
  .donate-strip .btn { margin-left: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .endorsement-featured { padding: 28px 22px; }
  .media-cards { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr; gap: 36px; }
  .donate-card .grid { grid-template-columns: repeat(2, 1fr); }
  .involved-grid { grid-template-columns: 1fr; gap: 36px; }
  .volunteer-form { grid-template-columns: 1fr; }
  .volunteer-form .full { grid-column: 1 / 2; }

  .press-row { grid-template-columns: 1fr; gap: 12px; }

  .photos-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .photo-tile.span-2 { grid-column: span 2; grid-row: span 1; }
  .video-grid { grid-template-columns: 1fr; }

  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .headshot-badge { left: 0; bottom: -14px; }
}
