:root {
  --red: #cf321f;
  --red-bright: #e43b25;
  --black: #050505;
  --dark: #15151a;
  --dark-2: #1c1c22;
  --gray: #f2f1f4;
  --muted: #b9b9bf;
  --line: #34343c;
  --white: #fff;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: white;
  color: black;
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.top-bar {
  background: var(--red);
  color: #111;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
  padding: .7rem 1rem;
  font-size: clamp(.9rem, 1.7vw, 1.5rem);
}

.site-nav {
  min-height: 68px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(5,5,5,.96);
  border-bottom: 1px solid #242429;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-name {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .02em;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  color: #ddd;
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--red-bright); }

.hero {
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.7) 42%, rgba(0,0,0,.12) 78%),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 6vw;
  position: relative;
  overflow: hidden;
}
.hero-content { max-width: 900px; position: relative; z-index: 2; }
.hero-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: .82;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
}
.against { position: relative; display: inline-block; color: var(--red-bright); z-index: 2; }
.against::before {
  content: "";
  position: absolute;
  inset: -12px -30px;
  background: url("../images/brush-stroke.svg") center/100% 100% no-repeat;
  z-index: -1;
}
.date {
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.2;
  margin: 2.2rem 0 0;
}
.hero-badge { position: absolute; right: 5vw; top: 12rem; width: min(24vw, 340px); z-index: 3; }
.hero-badge img { display: block; width: 100%; height: auto; }
.hero-actions { margin-top: 1.5rem; }

.section-pad { padding: 6rem 6vw; }
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 4rem;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

h2, h3 { font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; }
h2 { font-size: clamp(2.7rem, 6vw, 5.5rem); line-height: .95; margin: 0; }
h3 { line-height: 1.05; }
p { color: var(--gray); }
.eyebrow {
  color: var(--red-bright);
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: .06em;
  font-size: .85rem;
  margin: 0 0 .9rem;
}
.section-heading { max-width: var(--max); margin: 0 auto 3rem; }
.section-heading.centered { max-width: 940px; text-align: center; }
.section-heading.centered > p:last-child { max-width: 760px; margin: 1.25rem auto 0; color: var(--muted); font-size: 1.1rem; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.split-heading > p { max-width: 520px; margin: 0 0 .5rem; color: var(--muted); }

.btn {
  display: inline-block;
  background: var(--red);
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  text-decoration: none;
  padding: .95rem 1.35rem;
  border: 1px solid var(--red);
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); background: var(--red-bright); border-color: var(--red-bright); }
.btn-dark { background: rgba(5,5,5,.75); border-color: #666; }
.btn-light { background: white; border-color: white; color: #111; }
.button-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.intro { background: #0d0d10; border-bottom: 1px solid #25252b; }
.intro h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.intro-copy p { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #d3d3d6; margin-top: 0; }

.mission { background: var(--black); }
.mission-statement { font-size: clamp(1.25rem, 2.5vw, 1.8rem) !important; color: white !important; line-height: 1.35; }
.pillar-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card { background: var(--dark); border: 1px solid var(--line); overflow: hidden; }
.pillar-art { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center; display: block; filter: grayscale(1) contrast(1.08); }
.pillar-content { padding: 1.7rem; }
.pillar-card h3 { font-size: 1.85rem; margin: 0 0 .8rem; color: var(--red-bright); }
.pillar-card p:last-child { color: var(--muted); margin-bottom: 0; }

.artists { background: #111114; border-top: 1px solid #25252b; border-bottom: 1px solid #25252b; }
.artist-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.artist-card { min-width: 0; }
.artist-card a { display: block; background: #050505; border: 1px solid #38383f; overflow: hidden; aspect-ratio: 1/1; }
.artist-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease, filter .25s ease; }
.artist-card a:hover img, .artist-card a:focus-visible img { transform: scale(1.025); filter: brightness(1.08); }
.artist-card h3 { margin: .8rem 0 0; font-size: 1rem; }

.expect { background: var(--black); }
.expect-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.expect-card { background: var(--dark); border: 1px solid var(--line); overflow: hidden; }
.expect-card > img { width: 100%; aspect-ratio: 970/444; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); }
.expect-content { padding: 1.6rem 1.75rem 1.8rem; }
.expect-card h3 { font-size: 1.35rem; margin: 0 0 .65rem; color: var(--red-bright); }
.expect-card p { color: var(--muted); margin: 0; }

.community { background: var(--red); color: white; }
.community .eyebrow { color: #111; }
.community p { color: white; }
.community-lede { max-width: var(--max); margin: 0 auto 3.75rem; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); column-gap: 4rem; align-items: end; }
.community-lede .eyebrow { grid-column: 1 / -1; }
.community-lede h2 { margin-bottom: 0; }
.community-lede > p:last-child { margin: 0 0 .35rem; font-size: 1.1rem; line-height: 1.65; }
.organization-groups { max-width: var(--max); margin: 0 auto; display: grid; gap: 3.5rem; }
.organization-group-heading { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.organization-group-heading::after { content: ""; height: 2px; flex: 1; background: rgba(0,0,0,.35); }
.organization-group-heading h3 { margin: 0; color: #111; font-size: 1.35rem; }
.group-number { margin: 0; color: #111 !important; font-family: "Archivo Black", sans-serif; }
.organization-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(0,0,0,.28); border: 1px solid rgba(0,0,0,.28); }
.organization-card { min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; gap: 1.25rem; padding: 1.25rem; background: #111114; color: white; text-decoration: none; font-weight: 850; line-height: 1.3; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.organization-card:hover, .organization-card:focus-visible { background: #1b1b20; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.organization-card:focus-visible { outline: 3px solid white; outline-offset: -3px; }
.organization-mark { width: fit-content; max-width: 100%; color: var(--red-bright); font-family: "Archivo Black", sans-serif; font-size: 1rem; letter-spacing: .03em; text-transform: uppercase; border-bottom: 3px solid var(--red); padding-bottom: .35rem; }
.confirmation-note { max-width: var(--max); margin: 1.5rem auto 0; font-size: .85rem; opacity: .9; }

.issues { background: #0d0d10; }
.issues-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.issues-grid article { border-top: 5px solid var(--red); background: var(--dark); padding: 2rem; }
.issues-grid h3 { margin: 0 0 1rem; font-size: 1.25rem; }
.issues-grid p { color: var(--muted); margin: 0; }

.movement { background: var(--red); padding-top: 5rem; padding-bottom: 5rem; }
.movement-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.movement .eyebrow { color: #111; }
.movement h2 { font-size: clamp(4rem, 10vw, 8rem); }
.movement p { color: white; font-size: 1.2rem; max-width: 780px; margin: 1.5rem auto 0; }
.movement-actions { justify-content: center; margin-top: 2rem; }

.flyers { background: #111; border-top: 1px solid #2a2a2f; }
.flyers-heading { max-width: var(--max); margin: 0 auto 2.5rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.flyers-heading h2 { margin-bottom: .5rem; }
.flyers-heading p:not(.eyebrow) { margin: 0; color: var(--muted); }
.flyer-pack-btn { flex-shrink: 0; }
.flyer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.flyer-card { display: flex; flex-direction: column; min-width: 0; background: var(--dark); border: 1px solid #333; }
.flyer-preview { display: block; overflow: hidden; background: #080808; aspect-ratio: 4 / 3; }
.flyer-preview img { width: 100%; height: 100%; display: block; object-fit: contain; transition: transform .2s ease; }
.flyer-preview:hover img { transform: scale(1.02); }
.flyer-card-content { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.flyer-card h3 { margin: 0 0 .65rem; font-size: 1.35rem; }
.flyer-card p { margin: 0 0 1.5rem; color: var(--muted); }
.flyer-card .btn { width: 100%; margin-top: auto; }

footer { background: #050505; border-top: 1px solid #26262c; padding: 2rem 6vw; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
footer p { margin: 0; color: #aaa; font-family: "Archivo Black", sans-serif; font-size: .7rem; text-transform: uppercase; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #ddd; text-decoration: none; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.footer-links a:hover { color: var(--red-bright); }

@media (max-width: 1100px) {
  .artist-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-badge { width: 260px; }
}

@media (max-width: 850px) {
  .site-nav { position: static; padding: 1rem 6vw; align-items: flex-start; }
  .nav-links { display: none; }
  .hero { min-height: 650px; align-items: flex-start; padding-top: 4rem; background-position: center top; }
  .hero-title { font-size: clamp(5rem, 24vw, 8rem); }
  .hero-badge { display: none; }
  .date { margin-top: 3rem; }
  .section-pad { padding: 4.5rem 6vw; }
  .section-grid, .pillar-grid, .expect-grid, .issues-grid, .flyer-grid { grid-template-columns: 1fr; }
  .community-lede { grid-template-columns: 1fr; gap: 1.25rem; }
  .organization-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading, .flyers-heading, .footer-inner { flex-direction: column; align-items: flex-start; }
  .button-row { flex-direction: column; }
  .button-row .btn { width: 100%; }
  .flyer-pack-btn { width: 100%; }
  .community-lede { margin-bottom: 2.75rem; }
}

@media (max-width: 560px) {
  .top-bar { font-size: .85rem; line-height: 1.25; padding: 1rem; }
  .hero { min-height: 590px; }
  .hero-title { font-size: clamp(4.5rem, 25vw, 6.8rem); }
  .against::before { inset: -8px -18px; }
  .artist-grid { grid-template-columns: 1fr; }
  .organization-grid { grid-template-columns: 1fr; }
  .artist-card h3 { font-size: 1.1rem; }
  h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
}

/* Organization cards: explicit linked-card treatment */
.organization-card {
  position: relative;
  min-height: 170px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2px;
  overflow: hidden;
}
.organization-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid transparent;
  pointer-events: none;
  transition: border-color .18s ease;
}
.organization-card:hover::after,
.organization-card:focus-visible::after {
  border-top-color: var(--red-bright);
}
.organization-card > span:not(.organization-mark):not(.organization-link-label) {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
}
.organization-link-label {
  margin-top: auto;
  color: #bdbdc5;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.organization-card:hover .organization-link-label,
.organization-card:focus-visible .organization-link-label {
  color: white;
}

/* Organization logo cards */
.organization-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: transparent;
  border: 0;
}

.organization-card {
  min-height: 230px;
  padding: 0;
  gap: 0;
  border: 1px solid rgba(255,255,255,.24);
  background: #111114;
  overflow: hidden;
}

.organization-card::after {
  border-top-width: 5px;
}

.organization-logo-panel {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.logo-panel-light {
  background: #f4f2ed;
}

.logo-panel-dark {
  background: #111114;
}

.organization-logo-panel img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.organization-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .8rem;
  padding: 1.15rem 1.25rem 1.25rem;
}

.organization-name {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.organization-link-label {
  margin-top: auto;
}

.organization-card:hover .organization-logo-panel img,
.organization-card:focus-visible .organization-logo-panel img {
  transform: scale(1.025);
}

.organization-logo-panel img {
  transition: transform .18s ease;
}

@media (max-width: 900px) {
  .organization-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .organization-grid { grid-template-columns: 1fr; }
  .organization-card { min-height: 215px; }
  .organization-logo-panel { height: 125px; }
}

/* Mobile overflow cleanup */
@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .section-heading,
  .movement-inner,
  .community-lede,
  .issues-grid,
  .pillar-grid {
    min-width: 0;
    max-width: 100%;
  }

  .mission .section-heading h2 {
    font-size: clamp(2.5rem, 11.5vw, 3.45rem);
    line-height: .94;
    overflow-wrap: normal;
    word-break: normal;
  }

  .issues .section-heading h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
    line-height: .94;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .movement h2 {
    font-size: clamp(3rem, 13vw, 4rem);
    line-height: .92;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .movement-inner {
    padding-left: 0;
    padding-right: 0;
  }
}


/* Footer fundraising CTA */
.footer-links a.footer-donate {
  color: var(--red-bright);
  font-family: "Archivo Black", sans-serif;
}
.footer-links a.footer-donate:hover,
.footer-links a.footer-donate:focus-visible {
  color: #fff;
}


