/* ==========================================================================
   THE KANSAS AFRICAN AMERICAN MUSEUM — Homepage Redesign
   Design system: KAAM 2026 rebrand
   Palette: Oxblood #5A0F1A · Heritage Gold #C49A2C · Clay #C65A3A
            Cream #F4F1E6 · Charcoal #1B1E27
   Type: Montserrat (Bold / Regular)
   ========================================================================== */

:root {
  --oxblood: #5A0F1A;
  --oxblood-deep: #430A13;
  --gold: #C49A2C;
  --gold-bright: #D9AF3E;
  --clay: #C65A3A;
  --cream: #F4F1E6;
  --cream-dim: #E9E4D4;
  --charcoal: #1B1E27;
  --charcoal-deep: #12141B;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

/* ---------- Pattern bands (brand pattern system) ---------- */

.band {
  height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='480' height='80' viewBox='0 0 480 80'%3E%3Crect width='80' height='80' fill='%235A0F1A'/%3E%3Cpath d='M0 10l40 22 40-22v15L40 47 0 25z' fill='%23F4F1E6'/%3E%3Cpath d='M0 38l40 22 40-22v15L40 75 0 53z' fill='%23C49A2C'/%3E%3Crect x='80' width='80' height='80' fill='%23C49A2C'/%3E%3Cpath d='M120 10l32 30-32 30-32-30z' fill='%231B1E27'/%3E%3Cpath d='M120 24l17 16-17 16-17-16z' fill='%23C49A2C'/%3E%3Ccircle cx='120' cy='40' r='7' fill='%23F4F1E6'/%3E%3Crect x='160' width='80' height='80' fill='%23C65A3A'/%3E%3Cpath d='M168 66l16-30 16 30z' fill='%23F4F1E6'/%3E%3Cpath d='M200 66l16-30 16 30z' fill='%231B1E27'/%3E%3Cpath d='M184 34l16-24 16 24z' fill='%23F4F1E6'/%3E%3Crect x='240' width='80' height='80' fill='%231B1E27'/%3E%3Cpath d='M280 8l32 32-32 32-32-32z' fill='none' stroke='%23C49A2C' stroke-width='7'/%3E%3Cpath d='M280 28l13 12-13 12-13-12z' fill='%23C65A3A'/%3E%3Crect x='320' width='80' height='80' fill='%235A0F1A'/%3E%3Cpath d='M330 14h19l11 13 11-13h19l-25 26 25 26h-19l-11-13-11 13h-19l25-26z' fill='%23F4F1E6'/%3E%3Crect x='400' width='80' height='80' fill='%23C49A2C'/%3E%3Cpath d='M410 14h9v52h-9zM427 14h9v52h-9zM444 14h9v52h-9zM461 14h9v52h-9z' fill='%235A0F1A'/%3E%3Ccircle cx='439' cy='40' r='5' fill='%23F4F1E6'/%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: repeat-x;
}

.band--thin { height: 26px; }

/* subtle mosaic texture for dark sections */
.mosaic-dark {
  background-color: var(--charcoal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%23C49A2C' stroke-opacity='.10' stroke-width='4'%3E%3Cpath d='M30 60l30-44 30 44z'/%3E%3Cpath d='M230 40l34 30-34 30-34-30z'/%3E%3Cpath d='M60 230l40 24-40 24'/%3E%3Ccircle cx='170' cy='160' r='16'/%3E%3Cpath d='M260 220h44M260 240h44M260 260h44'/%3E%3C/g%3E%3Cg fill='%23C65A3A' fill-opacity='.08'%3E%3Cpath d='M120 250l22-34 22 34z'/%3E%3Cpath d='M40 140l24 20-24 20z'/%3E%3C/g%3E%3Cg fill='%23F4F1E6' fill-opacity='.05'%3E%3Ccircle cx='290' cy='120' r='7'/%3E%3Ccircle cx='110' cy='30' r='6'/%3E%3Ccircle cx='210' cy='290' r='6'/%3E%3C/g%3E%3C/svg%3E");
}

/* diamond rule, as on the brand sheet and YAM reference */
.diamond-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 18px 0;
}
.diamond-rule::before,
.diamond-rule::after {
  content: "";
  height: 2px;
  width: 72px;
  background: currentColor;
  opacity: .6;
}
.diamond-rule .dr-gems {
  display: inline-flex;
  gap: 9px;
}
.diamond-rule .dr-gems i {
  width: 9px;
  height: 9px;
  background: currentColor;
  transform: rotate(45deg);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border: 3px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px dashed var(--gold); outline-offset: 3px; }

.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-bright); }

.btn--oxblood { background: var(--oxblood); color: var(--cream); }
.btn--oxblood:hover { background: #71202D; }

.btn--clay { background: var(--clay); color: var(--cream); }
.btn--clay:hover { background: #D46A48; }

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

.btn--outline-dark { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--cream); }

/* ---------- Header / navigation ---------- */

.site-header {
  background: var(--cream);
  border-bottom: 4px solid var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--charcoal);
  flex-shrink: 0;
}
.brand svg { height: 46px; width: auto; display: block; }
.brand-text { line-height: 1.15; }
.brand-text .bt-name {
  display: block;
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand-text .bt-tag {
  display: block;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.nav-toggle-label span {
  height: 4px;
  background: var(--charcoal);
  display: block;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.site-nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-nav > ul > li { position: relative; }
.site-nav > ul > li > a {
  display: block;
  padding: 12px 13px;
  color: var(--charcoal);
  border-bottom: 4px solid transparent;
}
.site-nav > ul > li:hover > a,
.site-nav > ul > li:focus-within > a { border-bottom-color: var(--gold); color: var(--oxblood); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--charcoal);
  list-style: none;
  padding: 8px 0;
  border-top: 4px solid var(--gold);
  display: none;
  z-index: 50;
}
.site-nav li:hover > .dropdown,
.site-nav li:focus-within > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 11px 20px;
  color: var(--cream);
  font-size: 11.5px;
}
.dropdown a:hover { background: var(--oxblood); color: var(--gold-bright); }

.nav-donate { margin-left: 10px; }
.nav-donate .btn { padding: 12px 22px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: var(--cream);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero-eyebrow::before {
  content: "";
  width: 36px; height: 4px;
  background: var(--clay);
}

.hero h1 {
  font-weight: 900;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 20px 0 26px;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .accent-clay { color: var(--clay); }

.hero p.lede {
  font-size: 17px;
  max-width: 34em;
  color: #D8D4C6;
  margin-bottom: 34px;
}

.hero-art { position: relative; }
.hero-art .frame {
  border: 6px solid var(--gold);
  padding: 12px;
  background: var(--charcoal-deep);
  transform: rotate(-1.2deg);
}
.hero-art .frame img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-art .stamp {
  position: absolute;
  bottom: -26px;
  left: -26px;
  width: 96px;
  height: 96px;
  transform: rotate(2deg);
}

/* ---------- Quad pathways (VISIT / GROW / JOIN / CONNECT) ---------- */

.pathways {
  background: var(--charcoal-deep);
  padding: 0;
}
.pathways-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pathway {
  display: block;
  text-decoration: none;
  padding: 44px 30px 40px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  transition: filter .2s ease;
}
.pathway:hover { filter: brightness(1.12); }
.pathway .pw-eyebrow {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .85;
}
.pathway h2 {
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-top: 8px;
}
.pathway .pw-arrow {
  display: inline-block;
  margin-top: 18px;
  font-weight: 900;
  font-size: 20px;
  transition: transform .2s ease;
}
.pathway:hover .pw-arrow { transform: translateX(8px); }
.pathway::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  transform: rotate(45deg);
  border: 10px solid currentColor;
  opacity: .22;
}
.pathway--oxblood { background: var(--oxblood); color: var(--cream); }
.pathway--gold { background: var(--gold); color: var(--charcoal); }
.pathway--clay { background: var(--clay); color: var(--cream); }
.pathway--charcoal { background: var(--charcoal); color: var(--gold-bright); }

/* ---------- Generic section scaffolding ---------- */

.section { padding: 88px 0; }

.kicker {
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.section h2.title {
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: .01em;
}

/* ---------- Campaign feature ---------- */

.campaign { background: var(--cream); }
.campaign-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.campaign-copy p { margin: 20px 0; max-width: 36em; }
.campaign-art { position: relative; }
.campaign-art img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 6px solid var(--charcoal);
}
.campaign-art::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 34px;
  bottom: 34px;
  background:
    repeating-linear-gradient(45deg, var(--gold) 0 14px, transparent 14px 28px);
  z-index: -1;
  opacity: .5;
}
.campaign-stats {
  display: flex;
  gap: 36px;
  margin: 26px 0 30px;
}
.stat .stat-num {
  font-weight: 900;
  font-size: 34px;
  color: var(--oxblood);
  line-height: 1;
}
.stat .stat-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--clay);
}

/* ---------- Juneteenth thank-you ---------- */

.juneteenth {
  background: var(--oxblood);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.juneteenth::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%23F4F1E6' stroke-opacity='.07' stroke-width='4'%3E%3Cpath d='M20 60l30-40 30 40z'/%3E%3Cpath d='M190 30l30 26-30 26-30-26z'/%3E%3Cpath d='M40 190l36 22-36 22'/%3E%3Ccircle cx='150' cy='140' r='14'/%3E%3Cpath d='M200 200h40M200 218h40'/%3E%3C/g%3E%3C/svg%3E");
}
.juneteenth-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.juneteenth .kicker { color: var(--gold-bright); }
.juneteenth p { margin-top: 20px; max-width: 36em; color: #EDE6D4; }
.juneteenth-art img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 6px solid var(--gold);
  transform: rotate(1.2deg);
}

/* ---------- Senior Wednesdays + events ---------- */

.seniors { background: var(--cream-dim); }
.seniors-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 64px;
  align-items: start;
}
.seniors-copy img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 6px solid var(--charcoal);
  margin-top: 28px;
}
.seniors-copy p { margin-top: 20px; max-width: 36em; }
.seniors-copy a { color: var(--oxblood); font-weight: 700; }

.events-panel {
  background: var(--charcoal);
  color: var(--cream);
  padding: 36px;
  border-top: 8px solid var(--gold);
}
.events-panel h3 {
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 24px;
}
.event-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 2px solid rgba(244, 241, 230, .18);
  align-items: center;
}
.event-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border: 3px solid var(--clay);
}
.event-card .ev-date {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.event-card .ev-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  margin: 5px 0 4px;
}
.event-card .ev-name a { text-decoration: none; }
.event-card .ev-name a:hover { color: var(--gold-bright); }
.event-card .ev-venue { font-size: 12.5px; color: #B9B4A5; }
.event-card .ev-rsvp {
  display: inline-block;
  margin-top: 9px;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 7px 16px;
  text-decoration: none;
}
.event-card .ev-rsvp:hover { background: var(--gold-bright); }

/* ---------- Bank of America strip ---------- */

.boa {
  background: var(--clay);
  color: var(--cream);
}
.boa-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  padding: 34px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.boa-inner img {
  height: 30px;
  width: auto;
  background: var(--cream);
  padding: 8px 14px;
  box-sizing: content-box;
}
.boa-inner p {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 15px;
}

/* ---------- News / press releases ---------- */

.news { background: var(--cream); }
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: #fff;
  border: 3px solid var(--charcoal);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 var(--gold);
}
.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 3px solid var(--charcoal);
}
.news-card .nc-body { padding: 22px 22px 26px; }
.news-card .nc-tag {
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--clay);
}
.news-card h3 {
  font-weight: 800;
  font-size: 17px;
  line-height: 1.4;
  margin-top: 10px;
  color: var(--charcoal);
}
.news-card .nc-more {
  margin-top: 14px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oxblood);
}

/* ---------- Pillars ---------- */

.pillars {
  color: var(--cream);
  text-align: center;
}
.pillars .kicker { color: var(--gold-bright); }
.pillars .title { color: var(--cream); }
.pillars .pillars-sub {
  max-width: 34em;
  margin: 16px auto 0;
  color: #C9C4B4;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.pillar {
  background: rgba(244, 241, 230, .04);
  border: 2px solid rgba(196, 154, 44, .45);
  padding: 40px 24px 36px;
  transition: transform .18s ease, border-color .2s ease, background .2s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(196, 154, 44, .1);
}
.pillar .p-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  padding: 14px;
}
.pillar .p-icon img { max-height: 44px; width: auto; }
.pillar h3 {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ---------- Stay connected ---------- */

.connectband {
  background: var(--gold);
  color: var(--charcoal);
  text-align: center;
}
.connectband .kicker { color: var(--oxblood); }
.connectband .cb-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ---------- Sponsors ---------- */

.sponsors { background: var(--cream); text-align: center; padding: 64px 0 76px; }
.sponsors .kicker { color: var(--clay); }
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 52px;
  margin-top: 40px;
}
.sponsors-grid img {
  max-height: 46px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  background: #fff;
  padding: 10px 16px;
  box-sizing: content-box;
  border: 1px solid #DDD6C2;
  filter: grayscale(1) opacity(.85);
  transition: filter .2s ease;
}
.sponsors-grid img:hover { filter: none; }
.sponsors-grid .sp-text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: #55503f;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal-deep);
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.site-footer h4 {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #CFCaba; text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-brand svg { height: 58px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: #A7A292; max-width: 28em; }
.footer-contact p { font-size: 14px; color: #CFCABA; margin-bottom: 8px; }
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.footer-social a {
  width: 42px; height: 42px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--gold); }
.footer-social a:hover svg path { fill: var(--charcoal); }
.footer-social svg { width: 18px; height: 18px; }
.footer-social svg path { fill: var(--gold-bright); }

.footer-form { margin-top: 4px; }
.footer-form label {
  display: block;
  font-size: 13px;
  color: #CFCABA;
  margin-bottom: 10px;
}
.footer-form .ff-row { display: flex; }
.footer-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
}
.footer-form input[type="email"]::placeholder { color: #8f8a7a; }
.footer-form button {
  padding: 13px 22px;
  background: var(--gold);
  color: var(--charcoal);
  border: 2px solid var(--gold);
  font-family: inherit;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-form button:hover { background: var(--gold-bright); }

.footer-legal {
  border-top: 1px solid rgba(244, 241, 230, .14);
  padding: 26px 0 34px;
  font-size: 12.5px;
  color: #8F8A7A;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .site-nav > ul { gap: 0; }
  .site-nav > ul > li > a { padding: 12px 8px; font-size: 11.5px; }
}

@media (max-width: 960px) {
  .hero-inner,
  .campaign-grid,
  .juneteenth-grid,
  .seniors-grid { grid-template-columns: 1fr; gap: 44px; }
  .pathways-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* mobile nav */
  .header-inner { padding: 12px 16px; gap: 12px; }
  .brand { gap: 10px; min-width: 0; }
  .brand svg { height: 34px; }
  .brand-text .bt-name { font-size: 10px; }
  .brand-text .bt-tag { font-size: 7.5px; letter-spacing: .22em; }
  .nav-toggle-label { display: flex; flex-shrink: 0; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--charcoal);
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; }
  .site-nav > ul > li > a { color: var(--cream); padding: 15px 24px; border-bottom: 1px solid rgba(244,241,230,.12); }
  .dropdown {
    position: static;
    display: block;
    border-top: none;
    background: var(--charcoal-deep);
    min-width: 0;
  }
  .dropdown a { padding-left: 40px; }
  .nav-donate { margin: 16px 24px 24px; }
}

@media (max-width: 560px) {
  .pathways-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 0; }
  .campaign-stats { flex-wrap: wrap; gap: 24px; }
}
