:root {
  --red: #c81e1e;
  --red-dark: #9c1414;
  --ink: #17130f;
  --paper: #f7f3ea;
  --paper-alt: #efe8d8;
  --line: rgba(23, 19, 15, 0.12);
  --max: 1120px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Oswald", Impact, "Archivo", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}

a { color: var(--red-dark); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: "Oswald", Impact, "Archivo", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 3px 14px 5px;
  margin: 0 0 0.7em;
  transform: rotate(-1deg);
}
.eyebrow--light { background: #fff; color: var(--red-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__logo { height: 42px; width: auto; }
.brand__text {
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
}
.brand__text span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: #555;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-nav a { text-decoration: none; color: var(--ink); }
.site-nav a:hover { color: var(--red-dark); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn--small { padding: 8px 16px; font-size: 0.82rem; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { border-color: #fff; color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn:hover { transform: translateY(-1px); }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.72) 0%, rgba(10,8,6,0.6) 45%, rgba(10,8,6,0.85) 100%);
}
.hero__inner {
  position: relative;
  padding-top: 90px;
  padding-bottom: 70px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 5.5rem);
  margin: 0.1em 0;
  letter-spacing: 0.01em;
}
.hero__tagline {
  font-family: "Oswald", Impact, "Archivo", sans-serif;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.9);
}

.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8em; }
.hero__hashtags { font-size: 0.85rem; color: #ddd; letter-spacing: 0.02em; }
.hero__hashtags--dark { color: #555; text-align: center; margin-top: 2em; }

/* Callout — why October 26 + why we fight */
.callout {
  background: var(--ink);
  color: #eee;
  padding: 72px 0;
  font-size: 1.05rem;
}
.callout > .wrap > p:first-child { max-width: none; margin-bottom: 1.4em; }
.callout strong { color: var(--red); }

/* Sections */
.section { padding: 84px 0; }
.section--alt { background: var(--paper-alt); }
.section h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  margin-bottom: 0.4em;
}
.section-intro { max-width: 68ch; color: #333; margin-bottom: 2.4em; }

/* Flow line — bold label + dash statement, reused on dark backgrounds */
.flow-line {
  font-family: "Oswald", Impact, "Archivo", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin: 0.6em 0;
  color: rgba(255,255,255,0.85);
}
.flow-line strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* What's at Stake — full-bleed red band */
.stake-band {
  background: var(--red);
  color: #fff;
  padding: 84px 0;
}
.stake-band h2 { color: #fff; margin-bottom: 0.6em; }

/* How to Take Action — divided list */
.action-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 2em 0 0;
  padding: 0;
}
.action-list li {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}
.action-list li:first-child { border-left: none; padding-left: 0; }
.action-list h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.action-list p { margin: 0; color: #333; font-size: 0.95rem; }

.demands {
  margin-top: 3em;
  padding: 32px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(23,19,15,0.06), 0 16px 32px -20px rgba(23,19,15,0.4);
}
.demands h3 { font-size: 1.3rem; }
.demands ol { padding-left: 1.2em; margin: 0.8em 0 0; }
.demands li { margin-bottom: 0.6em; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
  background: #fff;
  box-shadow: 0 1px 2px rgba(23,19,15,0.06), 0 10px 24px -18px rgba(23,19,15,0.35);
  overflow: hidden;
}
.accordion__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  gap: 16px;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__title { font-size: 1.05rem; }
.accordion__chevron {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--red-dark);
  transition: transform 0.15s ease;
}
.accordion__item[open] .accordion__chevron { transform: rotate(45deg); }
.accordion__body {
  padding: 0 24px 24px;
  color: #333;
  font-size: 0.96rem;
}
.accordion__body ul { padding-left: 1.2em; }
.accordion__body li { margin-bottom: 0.4em; }
.accordion__source { font-size: 0.85rem; color: #666; margin-top: 1em; }

.what-real-looks-like {
  margin: 2.6em 0 0;
  max-width: 62ch;
  font-family: "Oswald", Impact, "Archivo", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.35;
  color: var(--ink);
}
.what-real-looks-like strong { color: var(--red-dark); }

/* Resources */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  max-width: 520px;
  margin-bottom: 2.2em;
}
.resource-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 1px 2px rgba(23,19,15,0.06), 0 10px 20px -16px rgba(23,19,15,0.4);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -14px rgba(23,19,15,0.35); }
.resource-card img { width: 100%; display: block; }
.resource-card span { display: block; padding: 12px 14px; font-weight: 700; font-size: 0.9rem; }

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 60ch;
}
.resource-list a {
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px dotted var(--line);
  padding-bottom: 10px;
}
.resource-list a:hover { color: var(--red); }

/* CTA */
.section--cta {
  background: var(--ink);
  color: #f2f2f2;
  text-align: center;
}
.section--cta h2 { color: #fff; }
.cta__lead { max-width: 56ch; margin: 0 auto 2em; color: #ccc; }
.cta__contact { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { padding: 40px 0; text-align: center; }
.site-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.site-footer__logo { height: 56px; width: auto; opacity: 0.85; }
.site-footer p { margin: 0; font-size: 0.85rem; color: #555; }
.site-footer__note { font-style: italic; color: var(--red-dark); font-weight: 600; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .action-list { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .action-list li:nth-child(odd) { border-left: none; padding-left: 0; }
}
@media (max-width: 560px) {
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 560px; }
  .statement-list li { flex-direction: column; gap: 8px; }
  .statement-list h3 { flex-basis: auto; }
  .action-list { grid-template-columns: 1fr; gap: 24px; }
  .action-list li { border-left: none; padding-left: 0; }
}
