/* CJP — Maroon protest editorial UI */
:root {
  --bg: #faf7f5;
  --bg-2: #f3ebe6;
  --surface: #ffffff;
  --ink: #1c1010;
  --muted: #6b5348;
  --line: rgba(28, 16, 16, 0.12);
  --signal: #9f1239;
  --signal-2: #be123c;
  --gold: #d97706;
  --mint: #9f1239;
  --mint-dim: rgba(159, 18, 57, 0.1);
  --glow: rgba(159, 18, 57, 0.3);
  --navy: #1c1010;
  --max: 1140px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(159, 18, 57, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(217, 119, 6, 0.06), transparent 45%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--signal); color: #fff; padding: 0.6rem 1rem; z-index: 100; font-weight: 700;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.announce-bar {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 2.5rem 0.35rem 1rem;
  overflow: hidden;
  background: linear-gradient(90deg, #9f1239, #7f1d1d 50%, #b45309);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
}
.announce-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 42s linear infinite;
}
.announce-close {
  position: absolute; right: 0.45rem; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; color: #fff; font-size: 1.2rem; cursor: pointer;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(28, 16, 16, 0.04);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0.75rem 1.2rem;
  display: flex; align-items: center; gap: 1.25rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(159, 18, 57, 0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.brand:hover img {
  transform: rotate(-8deg) scale(1.06);
  box-shadow: 0 8px 22px rgba(159, 18, 57, 0.45);
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.15;
  display: block;
}
.brand-text small {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex; flex: 1; justify-content: center; gap: 0.35rem 1.35rem; flex-wrap: wrap;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--signal);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.4rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap; background: transparent; color: var(--ink);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(28,16,16,0.1); }
.btn-solid {
  background: var(--signal); border-color: var(--signal); color: #fff;
}
.btn-solid:hover { background: var(--signal-2); box-shadow: 0 10px 28px var(--glow); }
.btn-ghost { background: #fff; }
.btn-accent { background: var(--gold); border-color: var(--gold); color: #1c1010; }
.btn-wide { width: 100%; border-radius: 12px; padding: 0.9rem; }
.btn-google { background: #f5f0eb; border-color: var(--line); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  border: 0; background: transparent; cursor: pointer; padding: 0.4rem; margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero-home {
  position: relative;
  min-height: min(86vh, 780px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 6vw 4rem;
  overflow: hidden;
}
.hero-home::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(250,247,245,0.95) 0%, rgba(250,247,245,0.55) 48%, transparent 70%),
    url("../img/cjp/press-conference.png") right center / cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-copy { position: relative; z-index: 1; max-width: 540px; }
.hero-brand {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--signal); margin: 0 0 1rem;
  animation: rise 0.7s var(--ease) both;
}
.hero-brand::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal); animation: pulse 1.4s ease infinite;
}
.hero-copy h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 0.98; letter-spacing: -0.03em;
  margin: 0 0 1rem; animation: rise 0.85s var(--ease) 0.05s both;
}
.hero-copy h1 .accent { color: var(--signal); }
.hero-copy > p {
  font-size: 1.08rem; color: var(--muted); max-width: 42ch; margin: 0 0 1.5rem;
  animation: rise 0.95s var(--ease) 0.1s both;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  animation: rise 1.05s var(--ease) 0.15s both;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  margin-top: 2rem; animation: rise 1.1s var(--ease) 0.2s both;
}
.hero-stat {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease);
}
.hero-stat:hover { transform: translateY(-4px); }
.hero-stat strong {
  display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--signal);
}
.hero-stat span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

.hero-collage {
  position: relative; z-index: 1; height: min(520px, 70vh);
  display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: 1.1fr 0.9fr; gap: 0.75rem;
  animation: rise 1s var(--ease) 0.12s both;
}
.hero-collage .shot {
  border-radius: 16px; overflow: hidden; position: relative;
  box-shadow: 0 16px 40px rgba(28,16,16,0.15);
  transition: transform 0.35s var(--ease);
}
.hero-collage .shot:hover { transform: scale(1.02); }
.hero-collage .shot img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .shot:first-child { grid-row: 1 / 3; }
.shot-label {
  position: absolute; left: 0.75rem; bottom: 0.75rem;
  background: rgba(28,16,16,0.75); color: #fff;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.55rem; border-radius: 6px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* Sections */
.page { max-width: var(--max); margin: 0 auto; padding: 3rem 1.25rem 4.5rem; }
.section-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--bg-2));
}
.breadcrumb {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem;
}
.breadcrumb a:hover { color: var(--signal); }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); margin: 0 0 0.7rem;
}
.page-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.05; margin: 0 0 1rem; letter-spacing: -0.02em;
}
.page-title em { font-style: normal; color: var(--signal); }
.lede { font-size: 1.05rem; max-width: 58ch; color: var(--muted); margin: 0 0 2rem; }

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.news-card {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 220px; color: #fff;
  box-shadow: 0 12px 32px rgba(28,16,16,0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(28,16,16,0.18); }
.news-card.feature { min-height: 460px; grid-row: span 2; }
.news-grid.campaign-align {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.news-grid.campaign-align .news-card {
  min-height: 340px;
  height: 100%;
}
.news-grid.campaign-align .news-card h3 { font-size: 1.15rem; }

/* News page — equal cards, wrap to next row */
.news-grid.press-align {
  grid-template-columns: repeat(3, 1fr);
}
.news-grid.press-align .news-card {
  min-height: 300px;
}
.photo-credit {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 70ch;
}
.news-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-card:hover img { transform: scale(1.08); }
.news-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(28,16,16,0.88));
}
.news-card .body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.25rem; z-index: 1;
}
.news-card .meta {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: #fbbf24; margin-bottom: 0.4rem;
}
.news-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 0.35rem; line-height: 1.2;
}
.news-card.feature h3 { font-size: 1.7rem; }
.news-card p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); }

.demand-list { list-style: none; padding: 0; margin: 2rem 0; display: grid; gap: 1rem; }
.demand-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  border: 1px solid var(--line); background: #fff; border-radius: 14px; padding: 1.1rem 1.2rem;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.demand-list li:hover { transform: translateX(6px); border-color: var(--signal); }
.demand-num {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--signal); line-height: 1;
}
.demand-list strong { display: block; margin-bottom: 0.25rem; }
.demand-list p { margin: 0; color: var(--muted); }

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem; margin-top: 1.5rem;
}
.content-card {
  border: 1px solid var(--line); background: var(--surface);
  padding: 1.25rem; border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(28,16,16,0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(28,16,16,0.1);
  border-color: rgba(159,18,57,0.35);
}
.content-card h3 { font-family: var(--font-display); margin: 0 0 0.45rem; font-size: 1.15rem; }
.content-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.content-card .meta {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal); margin-bottom: 0.45rem;
}

.photo-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem; margin: 2rem 0;
}
.photo-strip figure {
  margin: 0; border-radius: 14px; overflow: hidden; position: relative;
  aspect-ratio: 4/5; box-shadow: 0 10px 28px rgba(28,16,16,0.12);
}
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.photo-strip figure:hover img { transform: scale(1.08); }
.photo-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(28,16,16,0.85));
  color: #fff; font-size: 0.78rem; font-weight: 600;
}

/* About page — full-width aligned art (no bad crop) */
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  width: 100%;
}
.about-shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1c1010;
  box-shadow: 0 10px 28px rgba(28,16,16,0.12);
  aspect-ratio: 3 / 4;
}
.about-shot.wide {
  aspect-ratio: 16 / 10;
  background: #faf7f5;
}
.about-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.about-shot.wide img {
  object-fit: contain;
  object-position: center;
  padding: 0.5rem;
}
.about-shot:hover img { transform: scale(1.04); }
.about-shot.wide:hover img { transform: scale(1.02); }
.about-shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(28,16,16,0.88));
  color: #fff; font-size: 0.82rem; font-weight: 600;
}
.about-shot.wide figcaption {
  background: linear-gradient(transparent, rgba(28,16,16,0.75));
}

.press-row {
  display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem;
}
.press-pill {
  display: inline-flex; align-items: center;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.press-pill:hover { border-color: var(--signal); color: var(--signal); transform: translateY(-2px); }

/* Forms etc */
.notice-box {
  border: 1px solid var(--line); background: #fff; border-radius: var(--radius);
  padding: 1.4rem; margin: 1.75rem 0; box-shadow: 0 8px 24px rgba(28,16,16,0.05);
}
.notice-box h2, .notice-box h3 {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); margin: 0 0 0.7rem;
}
.info-dot {
  display: inline-grid; place-items: center; width: 22px; height: 22px;
  border-radius: 50%; border: 1.5px solid var(--signal); color: var(--signal);
  font-size: 0.75rem; font-weight: 700;
}
.notice-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1.5rem;
  margin: 1rem 0 0; padding: 0; list-style: none;
}
.notice-grid li { position: relative; padding-left: 0.9rem; color: var(--muted); }
.notice-grid li::before { content: "▸"; position: absolute; left: 0; color: var(--signal); }

.donate-amounts { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.25rem 0; }
.amount-chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px;
  padding: 0.6rem 1rem; font-weight: 700; cursor: pointer;
}
.amount-chip.is-selected, .amount-chip:hover {
  background: var(--signal); border-color: var(--signal); color: #fff;
}
.donate-form { max-width: 460px; }
.form-card { max-width: 640px; }

.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 1.5rem 0 2rem; padding: 1rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat strong {
  display: block; font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.3rem;
}
.stat span { font-family: var(--font-display); font-size: 1.25rem; }

.check-row {
  display: flex; gap: 0.65rem; align-items: flex-start;
  margin: 1.1rem 0; font-size: 0.92rem; color: var(--muted);
}
.check-row input { margin-top: 0.2rem; accent-color: var(--signal); }
.check-row a { color: var(--signal); text-decoration: underline; }
.or-sep {
  display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.or-sep::before, .or-sep::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.form-section h3, .form-section h2 { font-family: var(--font-display); margin: 0 0 1rem; }
.field { display: grid; gap: 0.3rem; margin-bottom: 0.95rem; }
.field label {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--muted);
}
.field input, .field textarea, .field select {
  border: 1.5px solid var(--line); background: #fff; padding: 0.75rem 0.85rem;
  width: 100%; border-radius: 10px; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--signal); outline-offset: 1px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.issue-gate {
  max-width: 500px; margin: 2rem auto; border: 1px solid var(--line);
  background: #fff; border-radius: var(--radius); padding: 1.6rem; text-align: center;
  box-shadow: 0 12px 32px rgba(28,16,16,0.08);
}
.issue-gate .tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; border: 1px solid var(--signal); color: var(--signal);
  padding: 0.25rem 0.5rem; border-radius: 999px; margin-bottom: 1rem;
}
.issue-gate h2 { font-family: var(--font-display); margin: 0 0 0.7rem; }
.center-hero { text-align: center; padding: 2rem 0 0.5rem; }
.center-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.8rem); margin: 0.4rem 0 0;
}
.center-hero h1 em { font-style: normal; color: var(--signal); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.65rem;
}
.gallery-item {
  aspect-ratio: 1; border-radius: 14px; overflow: hidden; position: relative;
  box-shadow: 0 8px 24px rgba(28,16,16,0.1);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item span {
  position: absolute; left: 0.6rem; bottom: 0.6rem;
  background: rgba(28,16,16,0.75); color: #fff;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.45rem; border-radius: 6px;
}

.tracker-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-top: 1.25rem; }
.tracker-table th, .tracker-table td { border: 1px solid var(--line); padding: 0.7rem; text-align: left; background: #fff; }
.tracker-table th {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase; background: var(--bg-2); color: var(--muted);
}
.status {
  display: inline-block; font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.06em; padding: 0.2rem 0.4rem; border: 1px solid currentColor; border-radius: 6px;
}
.status-open { color: var(--signal); }
.status-progress { color: var(--gold); }
.status-won { color: #15803d; }

.faq details { border-bottom: 1px solid var(--line); padding: 0.9rem 0; }
.faq summary { cursor: pointer; font-weight: 700; font-family: var(--font-display); }
.faq p { color: var(--muted); margin: 0.5rem 0 0; }

.hero-rev { text-align: center; padding: 3.5rem 1.25rem 1rem; max-width: 760px; margin: 0 auto; }
.hero-rev h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem); margin: 0.4rem 0 1rem; line-height: 1.05;
}
.rev-frame {
  max-width: 880px; margin: 1.5rem auto; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(28,16,16,0.15);
}
.rev-art { aspect-ratio: 16/9; position: relative; }
.rev-art img { width: 100%; height: 100%; object-fit: cover; }
.rev-art-inner {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: linear-gradient(180deg, rgba(28,16,16,0.2), rgba(28,16,16,0.75)); color: #fff; padding: 2rem;
}
.rev-art-inner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.6rem); margin: 0.4rem 0; }
.rev-art-inner p { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0; color: #fbbf24; }
.rev-motto {
  text-align: center; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 1rem 0 2.5rem;
}

.dispatch {
  background: linear-gradient(135deg, #1c1010, #4c0519);
  color: #f5e6e0; padding: 3rem 1.25rem;
}
.dispatch-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: end;
}
.dispatch .eyebrow { color: #fbbf24; }
.dispatch h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.7rem; color: #fff;
}
.dispatch h2 em { font-style: normal; color: #fda4af; }
.dispatch-copy p { color: rgba(245,230,224,0.7); max-width: 40ch; }
.dispatch-row { display: flex; gap: 0.5rem; }
.dispatch-row input {
  flex: 1; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06);
  padding: 0.75rem 0.9rem; color: #fff; border-radius: 999px;
}
.dispatch-row input::placeholder { color: rgba(255,255,255,0.45); }
.form-note { font-size: 0.75rem; color: rgba(245,230,224,0.55); margin: 0.5rem 0 0; }
.form-success { color: #86efac; font-size: 0.9rem; margin: 0.5rem 0 0; }

.site-footer { background: #120808; color: #b8a29a; padding: 2.5rem 1.25rem 1.4rem; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 2fr; gap: 2.2rem;
}
.footer-brand { display: flex; gap: 0.85rem; align-items: flex-start; }
.footer-brand strong {
  display: block; font-family: var(--font-display); font-size: 0.95rem; color: #fff; margin-bottom: 0.35rem;
}
.footer-brand p { margin: 0; font-size: 0.88rem; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.footer-cols h4 {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fbbf24; margin: 0 0 0.7rem;
}
.footer-cols a { display: block; font-size: 0.88rem; margin-bottom: 0.35rem; color: #b8a29a; }
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max); margin: 2rem auto 0; padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.75rem;
}
.footer-bottom p { margin: 0; }

.live-chat {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 50;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--signal); color: #fff; border: 0; border-radius: 999px;
  padding: 0.75rem 1.15rem; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 10px 30px var(--glow);
  animation: chatBounce 3s ease-in-out infinite;
}
@keyframes chatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.live-chat:hover { animation: none; transform: translateY(-3px); }

.chat-panel {
  position: fixed; right: 1.1rem; bottom: 4.5rem;
  width: min(340px, calc(100vw - 2rem));
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(28,16,16,0.18); z-index: 55;
  display: flex; flex-direction: column; max-height: 420px;
}
.chat-panel[hidden] { display: none !important; }
.chat-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 1rem; background: var(--signal); color: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
}
.chat-head button { border: 0; background: transparent; color: inherit; font-size: 1.2rem; cursor: pointer; }
.chat-body { padding: 1rem; overflow-y: auto; flex: 1; font-size: 0.9rem; }
.chat-messages { display: grid; gap: 0.5rem; margin-top: 0.7rem; }
.chat-bubble { padding: 0.5rem 0.7rem; background: var(--bg-2); border-radius: 10px; font-size: 0.85rem; }
.chat-form { display: flex; border-top: 1px solid var(--line); }
.chat-form input { flex: 1; border: 0; padding: 0.75rem; background: transparent; }
.chat-form button {
  border: 0; background: var(--signal); color: #fff; padding: 0 1rem; font-weight: 700; cursor: pointer;
}

.toast {
  position: fixed; left: 50%; bottom: 5.5rem; transform: translateX(-50%); z-index: 60;
  padding: 0.85rem 1.2rem; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; box-shadow: 0 12px 32px rgba(28,16,16,0.15);
  font-size: 0.9rem; animation: rise 0.35s var(--ease), fadeOut 0.4s ease 4.5s forwards;
}
.toast-ok { border-left: 4px solid #15803d; }
.toast-error { border-left: 4px solid var(--signal); }
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

.contest-card { display: none; }

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .header-inner.nav-open .main-nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 1rem;
    border-bottom: 1px solid var(--line); gap: 0.7rem;
  }
  .nav-toggle { display: flex; }
  .hero-home { grid-template-columns: 1fr; min-height: auto; }
  .hero-collage { height: 320px; }
  .news-grid,
  .news-grid.campaign-align,
  .news-grid.press-align { grid-template-columns: 1fr; }
  .news-card.feature { min-height: 280px; grid-row: auto; }
  .news-grid.campaign-align .news-card,
  .news-grid.press-align .news-card { min-height: 260px; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-shot { aspect-ratio: 4 / 5; }
  .about-shot.wide { aspect-ratio: 16 / 10; }
  .dispatch-inner, .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero-stats, .stats-row, .notice-grid, .field-row { grid-template-columns: 1fr; }
  .dispatch-row { flex-direction: column; }
}

/* —— Protest slider (equal cards) —— */
.cjp-slider {
  margin: 2rem 0 0;
  width: 100%;
}
.cjp-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
}
.cjp-slider-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.cjp-slide {
  flex: 0 0 auto;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(28, 16, 16, 0.08);
  display: flex;
  flex-direction: column;
}
.cjp-slide-media {
  aspect-ratio: 4 / 3;
  background: #1c1010;
  overflow: hidden;
}
.cjp-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.cjp-slide:hover .cjp-slide-media img { transform: scale(1.05); }
.cjp-slide-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 148px;
}
.cjp-slide-body .meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 0.4rem;
}
.cjp-slide-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
  line-height: 1.2;
}
.cjp-slide-body p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.cjp-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.cjp-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(28, 16, 16, 0.08);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cjp-slider-btn:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}
.cjp-slider-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.cjp-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(28, 16, 16, 0.22);
  cursor: pointer;
  transition: width 0.2s, background 0.2s;
}
.cjp-slider-dot.is-active {
  width: 22px;
  background: var(--signal);
}
.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .cjp-slide-body { min-height: 132px; }
}

/* —— Website support / QR (legal voluntary support) —— */
.support-top {
  background: linear-gradient(135deg, #fff7ed, #faf7f5 40%, #fff1f2);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 1.25rem 2rem;
}
.support-top.support-after-art {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.support-top-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.75rem;
  align-items: center;
}
.support-top-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.support-top-copy h2 em { font-style: normal; color: var(--signal); }
.support-top-copy > p { color: var(--muted); margin: 0 0 1rem; max-width: 52ch; }
.support-bullets {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.92rem;
}
.support-bullets li { margin-bottom: 0.35rem; }
.support-fine { font-size: 0.82rem; color: var(--muted); margin: 0; }
.support-fine a { color: var(--signal); font-weight: 700; text-decoration: underline; }

.support-qr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: 0 12px 36px rgba(28, 16, 16, 0.1);
  text-align: center;
}
.qr-slot {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 0.5rem;
  border-radius: 12px;
  background: #faf7f5;
  border: 2px dashed rgba(159, 18, 57, 0.35);
  margin-bottom: 0.75rem;
}
.qr-slot img {
  width: min(240px, 100%);
  height: auto;
  border-radius: 8px;
}
.qr-caption { margin: 0 0 0.35rem; font-size: 0.95rem; }
.qr-hint { margin: 0; font-size: 0.78rem; color: var(--muted); }
.qr-hint code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: var(--bg-2);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.support-pay-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
  margin: 2rem 0;
}

@media (max-width: 900px) {
  .support-top-inner,
  .support-pay-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
