@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-DemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
:root {
  --dsa-red: #EC1F27;
  --dsa-red-dark: #C9171E;
  --dsa-red-tint-4: #FBD2D4;
  --dsa-black: #231F20;
  --dsa-dark-gray: #3B3838;
  --dsa-gray: #605C5C;
  --dsa-light-gray: #C1C0BF;
  --paper: #F8F4EF;
  --paper-2: #FFFDFC;
  --white: #FFFFFF;
  --focus: #005FCC;
  --max: 1180px;
  --radius-sm: 12px;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(35,31,32,0.13);
  --shadow-soft: 0 12px 40px rgba(35,31,32,0.10);
  --font-main: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Manifold DSA", var(--font-main);
  --font-accent: Georgia, Cambria, "Times New Roman", serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--dsa-black);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6,
.brand, .site-nav, .button, .eyebrow, .section-kicker,
.doc-type, .work-detail span, .action-card span, .copy-button,
summary, .hero-quote cite {
  font-family: var(--font-display);
}
a { color: inherit; text-underline-offset: 0.18em; }
a:hover { color: var(--dsa-red); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position: absolute; left: 20px; top: -80px; background: var(--white); color: var(--dsa-black); z-index: 1000; padding: 10px 14px; border: 2px solid var(--dsa-black); border-radius: 8px; }
.skip-link:focus { top: 20px; }
.topline { height: 8px; background: var(--dsa-red); }
.site-header { position: sticky; top: 0; z-index: 900; background: rgba(248,244,239,0.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(35,31,32,0.11); }
.header-inner { min-height: 124px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; min-width: 326px; }
.brand img { width: 96px; height: 96px; object-fit: contain; }
.brand strong { display: block; font-size: 1.36rem; letter-spacing: -0.025em; line-height: 1.02; }
.brand small { display: block; color: var(--dsa-gray); font-size: 0.92rem; line-height: 1.15; margin-top: 3px; }
.site-nav { display: flex; align-items: center; gap: 16px; }
.nav-link { text-decoration: none; font-size: 0.94rem; font-weight: 700; color: var(--dsa-dark-gray); }
.nav-link.is-active { color: var(--dsa-red); }
.nav-stack { display: inline-flex; flex-direction: column; align-items: center; line-height: 1.05; text-align: center; }
.nav-stack span { display: block; }
.nav-cta { min-width: 96px; min-height: 72px; padding: 10px 14px; text-align: center; line-height: 1.1; white-space: normal; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 2px solid var(--dsa-black); background: var(--white); border-radius: 50%; align-items: center; justify-content: center; }
.menu-toggle-bars, .menu-toggle-bars::before, .menu-toggle-bars::after { content: ""; display: block; width: 20px; height: 2px; background: var(--dsa-black); position: relative; }
.menu-toggle-bars::before { position: absolute; top: -7px; }
.menu-toggle-bars::after { position: absolute; top: 7px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 12px 18px; border-radius: 999px; font-weight: 800; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease; }
.button:hover { transform: translateY(-1px); }
.button-red { background: var(--dsa-red); color: var(--white); box-shadow: 0 10px 24px rgba(236,31,39,0.24); }
.button-red:hover { background: var(--dsa-red-dark); color: var(--white); }
.button-light { background: var(--white); color: var(--dsa-black); }
.button-light:hover { color: var(--dsa-red); }
.button-outline { border-color: var(--dsa-black); background: transparent; color: var(--dsa-black); }
.button-outline:hover { background: var(--dsa-black); color: var(--white); }
.button-small { min-height: 38px; padding: 8px 14px; font-size: 0.88rem; }
.button-disabled { background: var(--dsa-light-gray); color: var(--dsa-dark-gray); cursor: not-allowed; box-shadow: none; }
.hero { position: relative; overflow: hidden; background: var(--dsa-black); color: var(--white); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,31,32,0.90), rgba(35,31,32,0.72), rgba(236,31,39,0.46)); z-index: 1; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.05); }
.hero-quote-wrap { position: relative; z-index: 2; min-height: 720px; padding: 104px 0 112px; display: grid; place-items: center; text-align: center; }
.hero-quote-card { width: min(1240px, 100%); margin: 0 auto; }
.hero-quote { margin: 0 auto 26px; }
.hero-kicker { margin: 0 0 22px; color: var(--white); font-family: var(--font-display); font-size: clamp(1.05rem, 1.55vw, 1.6rem); line-height: 1.1; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; text-shadow: 0 4px 24px rgba(0,0,0,0.45); }
.hero-quote .hero-quote-text { margin: 0; max-width: 17ch; margin-left: auto; margin-right: auto; font-family: var(--font-display); font-size: clamp(2.1rem, 3.1vw, 3.5rem); line-height: 1.04; font-weight: 700; letter-spacing: -0.025em; text-shadow: 0 8px 34px rgba(0,0,0,0.48); text-wrap: balance; }
.hero-quote .hero-quote-text .br-soft { display: inline; }
.hero-quote cite { display: inline-block; margin-top: 20px; font-style: normal; font-size: clamp(1rem, 1.45vw, 1.28rem); font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.92); }
.hero-quote cite::before { content: "— "; }
.hero-quote-card .hero-lede { margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.92); font-weight: 700; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 42px; align-items: center; min-height: 690px; padding: 86px 0; }
.hero h1, .page-hero h1 { font-family: var(--font-display); font-size: clamp(3.1rem, 8vw, 7.25rem); line-height: 0.88; letter-spacing: -0.075em; margin: 0 auto 24px; max-width: 950px; }
.hero-lede, .page-hero p { font-size: clamp(1.15rem, 2vw, 1.5rem); max-width: 760px; margin: 0 0 28px; }
.eyebrow { margin: 0 0 12px; color: var(--dsa-red); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.hero .eyebrow, .light-heading .eyebrow, .donate-band .eyebrow { color: var(--white); }
.hero-actions, .inline-actions, .centered-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.centered-actions { justify-content: center; }
.hero-card { background: rgba(255,255,255,0.96); color: var(--dsa-black); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.42); }
.hero-card img { width: 100px; height: 100px; margin-bottom: 18px; }
.hero-card h2 { margin: 0 0 8px; font-size: 1.9rem; letter-spacing: -0.04em; }
.hero-card a { font-weight: 900; color: var(--dsa-red); }
.section { padding: 88px 0; }
.section-tight { padding: 44px 0; }
.section-muted { background: #EFE9E2; }
.section-red { background: var(--dsa-red); color: var(--white); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading h2, .split h2, .feature-panel h2, .media-copy h2, .donate-band h2, .contact-panel h2, .contact-form h2, .faq-list h2 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 4.15rem); line-height: 0.98; letter-spacing: -0.06em; }
.section-heading p, .large-text { font-size: 1.18rem; color: var(--dsa-dark-gray); }
.light-heading p, .light-heading .large-text, .section-red .section-heading p { color: rgba(255,255,255,0.90); }
.split { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 72px; align-items: start; }
.section-kicker { position: sticky; top: 120px; color: var(--dsa-red); font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; }
.light-kicker { color: var(--white); }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.pill-row span { border: 1px solid rgba(35,31,32,0.24); border-radius: 999px; padding: 8px 12px; background: var(--white); font-weight: 800; font-size: 0.92rem; }
.cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: -82px; position: relative; z-index: 5; }
.action-card { background: var(--white); border: 2px solid var(--dsa-black); border-radius: var(--radius); padding: 26px; min-height: 240px; text-decoration: none; box-shadow: 9px 9px 0 var(--dsa-black); transition: transform 160ms ease, box-shadow 160ms ease; }
.action-card:hover { transform: translate(-3px, -3px); box-shadow: 13px 13px 0 var(--dsa-red); color: var(--dsa-black); }
.action-card span { color: var(--dsa-red); font-weight: 950; }
.action-card h2 { font-size: 2rem; line-height: 1; margin: 18px 0 12px; letter-spacing: -0.05em; }
.action-card p { margin: 0; color: var(--dsa-dark-gray); }
.cards-three, .cards-four, .cards-five, .cards-two, .resource-grid, .values-grid { display: grid; gap: 18px; }
.cards-three { grid-template-columns: repeat(3, 1fr); }
.cards-four { grid-template-columns: repeat(4, 1fr); }
.cards-five { grid-template-columns: repeat(5, 1fr); }
.cards-two { grid-template-columns: repeat(2, 1fr); }
.info-card, .work-card, .resource-card, .values-grid article { background: var(--paper-2); padding: 26px; border-radius: var(--radius-sm); border: 1px solid rgba(35,31,32,0.12); box-shadow: var(--shadow-soft); }
.info-card h3, .work-card h3, .resource-card h2, .values-grid h2 { margin: 0 0 8px; font-size: 1.3rem; letter-spacing: -0.04em; line-height: 1.1; }
.info-card p, .work-card p, .resource-card p, .values-grid p { margin: 0; color: var(--dsa-dark-gray); }
.light-card { background: var(--white); color: var(--dsa-black); }
.light-card a { color: var(--dsa-red); font-weight: 900; }
.feature-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; background: var(--white); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid rgba(35,31,32,0.12); }
.feature-panel.reverse { grid-template-columns: 0.9fr 1.1fr; }
.feature-panel img { width: 100%; border-radius: 16px; max-height: 420px; object-fit: cover; }
.embed-placeholder { min-height: 245px; border: 2px dashed rgba(35,31,32,0.35); border-radius: 18px; display: grid; place-content: center; text-align: center; gap: 6px; padding: 24px; background: #F6F0EA; color: var(--dsa-dark-gray); }
.embed-placeholder strong { color: var(--dsa-black); font-size: 1.08rem; }
.embed-placeholder.tall { min-height: 430px; }
.action-network-embed { background: var(--white); border: 1px solid rgba(35,31,32,0.12); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); overflow: hidden; }
.action-network-embed #can-form-area-dsa-member-sign-up { width: 100%; }
.action-network-embed .can_embed { font-family: var(--font-main) !important; color: var(--dsa-black) !important; }
.action-network-embed .can_embed h1, .action-network-embed .can_embed h2, .action-network-embed .can_embed h3 { font-family: var(--font-display) !important; }
.action-network-embed .can_embed input[type="submit"], .action-network-embed .can_embed button { background: var(--dsa-red) !important; border-radius: 999px !important; font-family: var(--font-display) !important; font-weight: 900 !important; text-transform: none !important; }
.action-network-embed .can_embed input, .action-network-embed .can_embed textarea, .action-network-embed .can_embed select { border-radius: 10px !important; }
.actblue-embed { background: var(--white); border: 1px solid rgba(35,31,32,0.12); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); overflow: hidden; margin: 22px 0 12px; }
.actblue-embed [data-ab-form] { width: 100%; min-height: 360px; }
.actblue-embed iframe { width: 100%; border: 0; }
.calendar-embed { min-height: 560px; }
.calendar-embed-wrap { background: var(--white); border: 1px solid rgba(35,31,32,0.12); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; margin: 22px 0 12px; }
.calendar-iframe { width: 100%; min-height: 720px; border: 0; display: block; background: var(--white); }
.calendar-preview-card { min-height: 245px; border: 2px solid rgba(35,31,32,0.18); border-radius: 18px; display: grid; place-content: center; text-align: center; gap: 8px; padding: 24px; background: #F6F0EA; color: var(--dsa-dark-gray); }
.calendar-preview-card strong { color: var(--dsa-black); font-family: var(--font-display); font-size: 1.35rem; line-height: 1; }
.calendar-preview-card a { color: var(--dsa-red); font-weight: 900; }

.calendar-agenda-wrap { background: var(--white); border: 1px solid rgba(35,31,32,0.12); border-radius: 18px; box-shadow: var(--shadow-soft); overflow: hidden; }
.calendar-agenda-iframe { width: 100%; min-height: 420px; border: 0; display: block; background: var(--white); }
.calendar-fallback { margin: 10px 14px 14px; }
.helper-text { color: var(--dsa-gray); font-size: 0.95rem; }
.donation-disclosure { background: var(--white); border-left: 10px solid var(--dsa-red); border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; box-shadow: var(--shadow-soft); margin-bottom: 24px; border-top: 1px solid rgba(35,31,32,0.12); border-right: 1px solid rgba(35,31,32,0.12); border-bottom: 1px solid rgba(35,31,32,0.12); }
.donation-disclosure h2, .donation-disclosure h3 { margin: 0 0 8px; font-size: 1.6rem; letter-spacing: -0.04em; }
.donation-disclosure p { margin: 0; color: var(--dsa-dark-gray); }
.center-block { text-align: center; margin-top: 30px; }
.media-strip { display: grid; grid-template-columns: 170px 170px 170px 1fr; gap: 16px; align-items: center; }
.media-strip img { aspect-ratio: 4/5; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-soft); }
.media-copy { margin-left: 18px; }
.donate-band { background: var(--dsa-black); color: var(--white); padding: 54px 0; }
.donate-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.donate-band h2 { margin: 0 0 8px; }
.donate-band p { margin: 0; color: rgba(255,255,255,0.86); max-width: 780px; }
.page-hero { background: var(--dsa-black); color: var(--white); text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: auto -10% -45% -10%; height: 260px; background: var(--dsa-red); transform: rotate(-3deg); opacity: 0.92; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero.compact-hero { text-align: left; padding: 76px 0; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.page-hero-grid img { border-radius: var(--radius); box-shadow: var(--shadow); max-height: 390px; width: 100%; object-fit: cover; background: var(--white); }
.check-list { padding: 0; list-style: none; margin: 20px 0 26px; }
.check-list li { margin: 10px 0; padding-left: 28px; position: relative; }
.check-list li::before { content: ""; width: 12px; height: 12px; background: var(--dsa-red); border-radius: 50%; position: absolute; left: 0; top: 0.55em; }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.work-list { display: grid; gap: 18px; }
.work-detail { background: var(--white); border-left: 10px solid var(--dsa-red); border-radius: 0 var(--radius) var(--radius) 0; padding: 28px 34px; box-shadow: var(--shadow-soft); }
.work-detail span, .doc-type { display: inline-block; color: var(--dsa-red); font-weight: 950; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; margin-bottom: 8px; }
.work-detail h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1; letter-spacing: -0.05em; }
.work-detail p { margin: 0; color: var(--dsa-dark-gray); max-width: 900px; }
.resource-grid { grid-template-columns: repeat(3, 1fr); }
.resource-card a { display: inline-block; margin-top: 18px; font-weight: 900; color: var(--dsa-red); }
.publication-list { display: grid; gap: 16px; }
.publication-card { background: var(--white); border: 1px solid rgba(35,31,32,0.12); border-radius: var(--radius-sm); padding: 24px; display: flex; justify-content: space-between; gap: 24px; align-items: center; box-shadow: var(--shadow-soft); }
.publication-card h2 { margin: 0 0 6px; font-size: 1.6rem; letter-spacing: -0.04em; }
.publication-card p { margin: 0; color: var(--dsa-dark-gray); }
code { background: #EFE9E2; padding: 0.12em 0.35em; border-radius: 6px; }
.faq-list { max-width: 860px; }
details { background: var(--white); border: 1px solid rgba(35,31,32,0.12); padding: 18px 22px; border-radius: var(--radius-sm); margin: 12px 0; box-shadow: var(--shadow-soft); }
summary { cursor: pointer; font-weight: 900; font-size: 1.1rem; }
details p { margin-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: start; }
.contact-panel, .contact-form { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); border: 1px solid rgba(35,31,32,0.12); }
.contact-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.contact-list li { display: grid; grid-template-columns: 100px 1fr auto; gap: 12px; align-items: center; border-top: 1px solid rgba(35,31,32,0.12); padding-top: 14px; }
.contact-list span { font-weight: 950; color: var(--dsa-red); }
address { font-style: normal; }
.copy-button { border: 1px solid var(--dsa-black); border-radius: 999px; background: transparent; padding: 6px 10px; cursor: pointer; font-weight: 800; }
.contact-form { display: grid; gap: 10px; }
.contact-form label { font-weight: 900; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 2px solid rgba(35,31,32,0.20); border-radius: 12px; padding: 12px 13px; font: inherit; background: #FFFDFC; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 3px solid var(--focus); border-color: transparent; }
.form-status { margin: 4px 0 0; font-weight: 800; color: var(--dsa-red); min-height: 1.4em; }
.site-footer { background: var(--dsa-black); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.footer-mark { width: 72px; height: 72px; margin-bottom: 12px; }
.site-footer h2, .site-footer h3 { margin: 0 0 10px; letter-spacing: -0.04em; }
.site-footer p { color: rgba(255,255,255,0.74); }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: rgba(255,255,255,0.82); }
.footer-list a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 38px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-size: 0.92rem; color: rgba(255,255,255,0.68); }
.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}
@media (max-width: 1120px) {
  .site-nav { gap: 10px; }
  .nav-link { font-size: 0.86rem; }
  .cards-five { grid-template-columns: repeat(3, 1fr); }
  .media-strip { grid-template-columns: repeat(3, 1fr); }
  .media-copy { grid-column: 1 / -1; margin-left: 0; margin-top: 12px; }
}
@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: 124px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; background: var(--white); border: 2px solid var(--dsa-black); border-radius: 18px; padding: 16px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .nav-link, .nav-cta { padding: 10px 12px; }
  .nav-cta { min-width: 0; min-height: 46px; }
  .hero-grid, .page-hero-grid, .split, .feature-panel, .feature-panel.reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 70px 0 120px; }
  .hero-quote-wrap { min-height: 560px; padding: 70px 0 96px; }
  .hero-quote .hero-quote-text { font-size: clamp(1.85rem, 6.2vw, 3rem); max-width: 20ch; }
  .cta-grid { grid-template-columns: 1fr; margin-top: -82px; }
  .cards-three, .cards-four, .cards-five, .cards-two, .resource-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .section-kicker { position: static; }
  .donate-band-inner, .publication-card { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .brand small { display: none; }
  .brand { min-width: 0; }
  .brand img { width: 68px; height: 68px; }
  .header-inner { min-height: 96px; }
  .site-nav { top: 100px; left: 14px; right: 14px; }
  .section { padding: 62px 0; }
  .page-hero { padding: 74px 0; }
  .cards-three, .cards-four, .cards-five, .cards-two, .resource-grid, .values-grid { grid-template-columns: 1fr; }
  .action-card { min-height: 190px; box-shadow: 6px 6px 0 var(--dsa-black); }
  .hero-quote-wrap { min-height: 520px; }
  .hero-quote .hero-quote-text { line-height: 1.06; letter-spacing: -0.02em; max-width: 24ch; }
  .hero-kicker { font-size: clamp(0.92rem, 3vw, 1.15rem); letter-spacing: 0.13em; }
  .hero-quote .hero-quote-text .br-soft { display: inline; }
  .calendar-iframe { min-height: 640px; }
  .calendar-agenda-iframe { min-height: 500px; }
  .hero-actions, .inline-actions { align-items: stretch; }
  .hero-actions .button, .inline-actions .button { width: 100%; }
  .media-strip { grid-template-columns: 1fr; }
  .media-strip img { max-height: 420px; width: 100%; }
  .contact-list li { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* v0.2 sharp button and publication polish */
.button {
  border-radius: 6px;
  min-height: 44px;
  padding: 11px 18px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.015em;
  box-shadow: none;
}

.button-red {
  box-shadow: 7px 7px 0 rgba(35,31,32,0.18);
}

.button-light {
  box-shadow: 6px 6px 0 rgba(35,31,32,0.14);
}

.button-outline {
  border-radius: 6px;
}

.button-small {
  min-height: 38px;
  padding: 9px 14px;
}

.nav-cta {
  min-height: 46px;
  border-radius: 6px;
  padding: 11px 18px;
  white-space: nowrap;
}

.copy-button {
  border-radius: 6px;
}

.page-hero:not(.compact-hero) p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.publication-card .button {
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .nav-cta {
    white-space: normal;
  }
}

/* v0.2 sitewide sharp-corner pass */
:root {
  --radius: 0px;
  --radius-sm: 0px;
  --radius-lg: 0px;
}

/* Core site surfaces */
.button,
.button-red,
.button-light,
.button-outline,
.button-small,
.nav-cta,
.copy-button,
.card,
[class*="card"],
.calendar-embed-wrap,
.calendar-preview-card,
.actblue-embed-wrap,
.donation-disclosure,
.hero-quote-card,
.publication-card,
.site-header,
.site-nav,
.site-footer,
input,
select,
textarea,
iframe,
img {
  border-radius: 0 !important;
}

/* If there are wrappers using radius variables, flatten them too */
.section-card,
.resource-card,
.contact-card,
.committee-card,
.event-card,
.publication-card,
.social-card,
.hero-quote-card,
.calendar-embed-wrap,
.calendar-preview-card,
.actblue-embed-wrap,
.donation-disclosure {
  border-radius: 0 !important;
}

/* Buttons: sharper and more modern */
.button,
.nav-cta,
.copy-button {
  border-radius: 0 !important;
  min-height: 44px;
  padding: 11px 18px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.015em;
  box-shadow: none;
}

/* Optional squared shadow language */
.button-red {
  box-shadow: 7px 7px 0 rgba(35,31,32,0.18) !important;
}

.button-light,
.button-outline {
  box-shadow: 6px 6px 0 rgba(35,31,32,0.12) !important;
}

/* Make sure publication page hero subtitle centers cleanly */
.page-hero:not(.compact-hero) p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Keep publication buttons from stretching weirdly */
.publication-card .button {
  flex: 0 0 auto;
}

/* Form controls on your own site */
input,
select,
textarea {
  border-radius: 0 !important;
}

/* Mobile nav CTA */
@media (max-width: 640px) {
  .nav-cta {
    white-space: normal;
  }
}
/* v0.2.2 review feedback polish */
:root {
  --radius: 0px;
  --radius-sm: 0px;
  --radius-lg: 0px;
}

/* Sitewide first-party sharp-corner rule. Third-party embeds may retain internal vendor styling. */
.button,
.button-red,
.button-light,
.button-outline,
.button-small,
.nav-cta,
.copy-button,
.menu-toggle,
.site-nav,
.hero-card,
.hero-quote-card,
.action-card,
.info-card,
.work-card,
.resource-card,
.publication-card,
.contact-panel,
.contact-form,
.feature-panel,
.embed-placeholder,
.calendar-embed-wrap,
.calendar-preview-card,
.actblue-embed-wrap,
.donation-disclosure,
input,
select,
textarea,
iframe,
[class*="card"] {
  border-radius: 0 !important;
}

.button,
.nav-cta,
.copy-button {
  border-radius: 0 !important;
  min-height: 44px;
  padding: 11px 18px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.015em;
  box-shadow: none !important;
}

.button-red,
.button-light,
.button-outline {
  box-shadow: none !important;
}

.button-red {
  border-color: var(--dsa-red);
}

.button-light,
.button-outline {
  border: 2px solid var(--dsa-black);
}

.button:hover,
.action-card:hover {
  transform: translate(-2px, -2px);
}

.action-card {
  box-shadow: 6px 6px 0 var(--dsa-black);
}

.action-card:hover {
  box-shadow: 8px 8px 0 var(--dsa-red);
}

.hero h1,
.page-hero h1 {
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-hero:not(.compact-hero) > .container:not(.narrow):not(.page-hero-grid) {
  max-width: 900px;
}

.page-hero:not(.compact-hero) p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.publication-card h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.publication-card .button {
  flex: 0 0 auto;
}

.calendar-iframe,
.calendar-preview-iframe,
.calendar-embed-wrap iframe {
  width: 100% !important;
  max-width: 100%;
}

@media (max-width: 640px) {
  .nav-cta {
    white-space: normal;
  }
}
/* end v0.2.2 review feedback polish */

/* v0.2.3 hero quote accent font */
.hero-quote .hero-quote-text {
  margin: 0;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-accent);
  font-size: clamp(2.65rem, 4.4vw, 5.15rem);
  line-height: 0.95;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.018em;
  text-shadow: 0 8px 34px rgba(0,0,0,0.48);
  text-wrap: balance;
}

.hero-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-quote .hero-quote-text {
    font-size: clamp(2.25rem, 6.4vw, 3.7rem);
    max-width: 19ch;
    line-height: 0.98;
  }
}

@media (max-width: 640px) {
  .hero-quote .hero-quote-text {
    font-size: clamp(2rem, 9vw, 3rem);
    max-width: 20ch;
    line-height: 1.02;
    letter-spacing: -0.01em;
  }
}

/* v0.2.4 reduce hero quote size */
.hero-quote .hero-quote-text {
  font-size: clamp(2.05rem, 3.15vw, 3.75rem);
  max-width: 19ch;
  line-height: 1.02;
}

@media (max-width: 900px) {
  .hero-quote .hero-quote-text {
    font-size: clamp(1.85rem, 5.4vw, 3rem);
    max-width: 20ch;
  }
}

@media (max-width: 640px) {
  .hero-quote .hero-quote-text {
    font-size: clamp(1.65rem, 8vw, 2.55rem);
    max-width: 21ch;
    line-height: 1.04;
  }
}

/* v0.3 Manifold webfont path override */
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-DemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Manifold DSA";
  src: url("../fonts/Webfont/ManifoldDSA-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

/* v0.3 donation/contact styles */
.payment-card {
  background: var(--white);
  border: 2px solid var(--dsa-black);
  padding: 24px;
  box-shadow: none;
}

.payment-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.payment-card p {
  margin: 0 0 16px;
  color: var(--dsa-dark-gray);
}

.cashapp-qr {
  width: min(220px, 100%);
  border: 2px solid var(--dsa-black);
  background: var(--white);
  padding: 12px;
  margin: 14px 0 0;
}

.form-note,
.form-disclosure {
  background: var(--paper-2);
  border-left: 8px solid var(--dsa-red);
  padding: 16px 18px;
  margin: 18px 0;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.3em;
}

.press-link-card {
  background: var(--white);
  border: 2px solid var(--dsa-black);
  padding: 24px;
  margin-top: 22px;
}

.press-link-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.site-form-disabled {
  opacity: 0.82;
}

/* v0.3.1 compact interior page heroes */
.page-hero {
  padding: 50px 0 !important;
}

.page-hero.compact-hero {
  padding: 38px 0 !important;
}

.page-hero::before {
  height: 130px !important;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3.6rem) !important;
  line-height: 0.98 !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-hero p {
  font-size: clamp(1rem, 1.35vw, 1.18rem) !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 640px) {
  .page-hero {
    padding: 42px 0 !important;
  }

  .page-hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.8rem) !important;
  }
}

/* v0.3.2 Cash App card layout */
.cashapp-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cashapp-actions {
  margin: 6px 0 18px;
}

.cashapp-qr-block {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 20px;
  border: 2px solid var(--dsa-black);
  background: var(--white);
}

.cashapp-qr {
  width: min(340px, 100%);
  max-width: 100%;
  border: 0 !important;
  padding: 0;
  margin: 0;
  background: var(--white);
}

.cashapp-handle {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--dsa-red);
}


/* v0.4.1 resources directory */
.resource-intro {
  padding-top: 34px;
}

.resource-alert {
  border: 2px solid var(--dsa-black);
  border-left: 10px solid var(--dsa-red);
  background: var(--white);
  padding: 24px;
  margin-bottom: 24px;
}

.resource-alert h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.resource-alert p:last-child {
  margin-bottom: 0;
}

.resource-alert-secondary {
  margin-top: 34px;
  background: var(--paper);
}

.resource-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 2px solid var(--dsa-black);
  background: var(--dsa-black);
  padding: 12px;
}

.resource-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--dsa-black);
  border: 2px solid var(--white);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.resource-toc a:hover,
.resource-toc a:focus {
  background: var(--dsa-red);
  color: var(--white);
}

.resource-section {
  scroll-margin-top: 110px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.resource-card {
  background: var(--white);
  border: 2px solid var(--dsa-black);
  padding: 24px;
  box-shadow: none;
}

.resource-card-header {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.resource-type {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  background: var(--dsa-black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.high-confidence .resource-type {
  background: var(--dsa-red);
}

.call-first .resource-type {
  background: #5c2d91;
}

.verify-needed .resource-type {
  background: var(--dsa-black);
}

.resource-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.resource-card p {
  margin: 0 0 16px;
  color: var(--dsa-dark-gray);
}

.resource-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.resource-card dl div {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 10px;
}

.resource-card dt {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dsa-dark-gray);
}

.resource-card dd {
  margin: 0;
  font-weight: 750;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.resource-actions .button {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 0.82rem;
}

.verification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.verification-list article {
  border: 2px solid var(--dsa-black);
  background: var(--white);
  padding: 20px;
}

.verification-list h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.verification-list p {
  margin: 0;
}

@media (max-width: 900px) {
  .resource-grid,
  .verification-list {
    grid-template-columns: 1fr;
  }

  .resource-toc {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-toc a {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .resource-toc {
    grid-template-columns: 1fr;
  }

  .resource-card,
  .resource-alert,
  .verification-list article {
    padding: 18px;
  }

  .resource-actions {
    display: grid;
  }
}

/* v0.4.3 smart resources directory */
.resource-intro { padding-top: 34px; }
.resource-alert {
  border: 2px solid var(--dsa-black);
  border-left: 10px solid var(--dsa-red);
  background: var(--white);
  padding: 24px;
  margin-bottom: 24px;
}
.resource-alert h2 { margin-top: 0; font-size: clamp(1.45rem, 2.2vw, 2.1rem); }
.resource-alert p:last-child { margin-bottom: 0; }
.resource-alert-secondary { margin-top: 34px; background: var(--paper); }

.resource-emergency-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--dsa-black);
  background: var(--dsa-black);
  gap: 2px;
  margin-bottom: 24px;
}
.resource-emergency-strip a {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--dsa-red);
  color: var(--white);
  text-decoration: none;
}
.resource-emergency-strip strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
}
.resource-emergency-strip span {
  font-weight: 800;
  font-size: 0.86rem;
}

.resource-finder {
  border: 2px solid var(--dsa-black);
  background: var(--white);
  padding: 20px;
}
.resource-finder-top {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.resource-finder-top label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}
.resource-finder input[type="search"] {
  width: 100%;
  min-height: 52px;
  border: 2px solid var(--dsa-black);
  padding: 12px 14px;
  font: inherit;
  font-weight: 750;
  background: var(--paper);
}
.resource-filter-row,
.resource-tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.resource-tool-row { margin-top: 14px; }
.resource-filter {
  min-height: 38px;
  border: 2px solid var(--dsa-black);
  background: var(--white);
  color: var(--dsa-black);
  padding: 8px 11px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.resource-filter.is-active,
.resource-filter:hover,
.resource-filter:focus {
  background: var(--dsa-red);
  color: var(--white);
}
.resource-empty {
  margin: 16px 0 0;
  font-weight: 900;
}

.resource-priority { padding-top: 44px; }
.resource-directory { padding-top: 34px; }

.resource-category {
  border: 2px solid var(--dsa-black);
  background: var(--white);
  margin-bottom: 22px;
}
.resource-category > summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  padding: 18px 20px;
  background: var(--dsa-black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  letter-spacing: -0.025em;
}
.summary-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.86;
  white-space: nowrap;
}
.resource-category[open] > summary {
  border-bottom: 2px solid var(--dsa-black);
}
.resource-category > .resource-grid,
.resource-category > .verification-list,
.resource-category > .resource-alert {
  margin: 22px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.resource-grid-priority {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.resource-card {
  background: var(--white);
  border: 2px solid var(--dsa-black);
  padding: 24px;
  box-shadow: none;
}
.wide-resource-card { grid-column: 1 / -1; }
.resource-card-header { display: grid; gap: 8px; margin-bottom: 12px; }
.resource-type {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  background: var(--dsa-black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.high-confidence .resource-type { background: var(--dsa-red); }
.call-first .resource-type { background: #5c2d91; }
.verify-needed .resource-type { background: var(--dsa-black); }
.resource-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.resource-card p { margin: 0 0 16px; color: var(--dsa-dark-gray); }
.resource-card dl { display: grid; gap: 10px; margin: 18px 0; }
.resource-card dl div {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 10px;
}
.resource-card dt {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dsa-dark-gray);
}
.resource-card dd { margin: 0; font-weight: 750; }
.resource-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.resource-actions .button,
.resource-tool-row .button {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 0.82rem;
}
.copy-phone {
  min-height: 28px;
  margin-left: 8px;
  padding: 4px 8px;
  font-size: 0.72rem;
}

.embedded-details {
  border: 2px solid var(--dsa-black);
  margin-top: 16px;
}
.embedded-details > summary {
  cursor: pointer;
  padding: 12px 14px;
  background: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.resource-list-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 18px;
}
.resource-list-columns ul { margin: 0; padding-left: 1.2rem; }
.resource-list-columns li { margin-bottom: 10px; }

.verification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.verification-list article {
  border: 2px solid var(--dsa-black);
  background: var(--white);
  padding: 20px;
}
.verification-list h3 { margin: 0 0 8px; font-size: 1.35rem; }
.verification-list p { margin: 0; }

.resource-card[hidden],
.resource-category[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .resource-grid-priority { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .resource-emergency-strip,
  .resource-grid,
  .verification-list,
  .resource-list-columns {
    grid-template-columns: 1fr;
  }
  .resource-category > summary {
    display: grid;
  }
}
@media (max-width: 560px) {
  .resource-card,
  .resource-alert,
  .verification-list article,
  .resource-finder {
    padding: 18px;
  }
  .resource-actions,
  .resource-tool-row {
    display: grid;
  }
  .resource-category > .resource-grid,
  .resource-category > .verification-list,
  .resource-category > .resource-alert {
    margin: 14px;
  }
}

@media print {
  header,
  .site-header,
  .resource-finder,
  .resource-actions,
  .button,
  footer,
  .site-footer {
    display: none !important;
  }
  .page-hero,
  .section,
  .resource-directory {
    padding: 18px 0 !important;
  }
  .resource-category,
  .resource-card,
  .resource-alert,
  .verification-list article {
    break-inside: avoid;
    box-shadow: none !important;
  }
  .resource-category > summary {
    color: #000 !important;
    background: #fff !important;
    border-bottom: 2px solid #000;
  }
}
