/* =============================================================
   Missouri Conservatives PAC
   Editorial American heritage. Newspaper masthead meets
   Truman-era civic poster. No purple gradients here.
   ============================================================= */

:root {
  --ink:      #252C3D;   /* deep navy (logo)  rgb(37, 44, 61) */
  --ink-2:    #303852;
  --blood:    #7E2717;   /* barn red (logo)  rgb(126, 39, 23) */
  --blood-2:  #9A3220;
  --cream:    #F2EBDA;   /* paper cream */
  --cream-2:  #E8DFC8;   /* deeper paper */
  --bone:     #FBF7EC;   /* lightest */
  --char:     #14110D;
  --gold:     #B8893A;
  --rule:     rgba(37, 44, 61, 0.18);
  --rule-2:   rgba(37, 44, 61, 0.35);
  --shadow:   0 1px 0 rgba(37,44,61,.06), 0 28px 60px -28px rgba(37,44,61,.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  color: var(--char);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* Subtle paper texture: layered noise via SVG data URI + faint vignette */
  background-image:
    radial-gradient(ellipse at top, rgba(255,255,255,.55) 0%, transparent 55%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.07 0 0 0 0 0.1 0 0 0 0.045 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: auto, 240px 240px;
}

::selection { background: var(--ink); color: var(--cream); }

a { color: inherit; text-decoration: none; }

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

/* ---------- shared display type ---------- */

.display {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 600;
  color: var(--blood);
  font-variation-settings: "SOFT" 100;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: "Oswald", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(37,44,61,.45); }

.btn--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ink:hover { background: var(--char); border-color: var(--char); }

.btn--red { background: var(--blood); color: var(--cream); border-color: var(--blood); }
.btn--red:hover { background: var(--blood-2); border-color: var(--blood-2); box-shadow: 0 10px 30px -10px rgba(126,39,23,.55); }

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

.btn--lg { padding: 18px 28px; font-size: 14px; }

/* =============================================================
   MASTHEAD / NAV
   ============================================================= */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(6px);
  background-color: rgba(242,235,218,.94);
}
.masthead__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.masthead__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.masthead__mark {
  width: 46px; height: 46px;
  flex: 0 0 46px;
}
.masthead__brandtext {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.masthead__line1 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.masthead__line2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}

.masthead__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.masthead__nav a:not(.btn) {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.masthead__nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.masthead__nav a:not(.btn):hover { color: var(--blood); }
.masthead__nav a:not(.btn):hover::after { transform: scaleX(1); }
.masthead__nav .btn { padding: 11px 18px; font-size: 11px; }

.masthead__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  cursor: pointer;
  position: relative;
}
.masthead__burger span {
  position: absolute;
  left: 7px; right: 7px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .2s ease;
}
.masthead__burger span:nth-child(1) { top: 12px; }
.masthead__burger span:nth-child(2) { top: 18px; }
.masthead__burger span:nth-child(3) { top: 24px; }
.masthead__burger.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.masthead__burger.is-open span:nth-child(2) { opacity: 0; }
.masthead__burger.is-open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

.masthead__mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 28px 22px;
  border-top: 1px solid var(--rule);
}
.masthead__mobile[hidden] { display: none; }
.masthead__mobile a:not(.btn) {
  padding: 14px 0;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.masthead__mobile .btn { margin-top: 14px; align-self: flex-start; }

@media (max-width: 880px) {
  .masthead__nav { display: none; }
  .masthead__burger { display: block; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 50px;
}
.hero__grid {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto auto auto;
  column-gap: 56px;
  row-gap: 28px;
  align-items: start;
}

.hero__eyebrow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .82;
}
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 0 4px rgba(126,39,23,.12);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126,39,23,.35); }
  50%      { box-shadow: 0 0 0 8px rgba(126,39,23,0); }
}

.hero__title {
  grid-column: 1 / 2;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-variation-settings: "SOFT" 30;
  font-size: clamp(48px, 8.4vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--blood);
}
.hero__title-row {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title-row--a { animation-delay: .05s; }
.hero__title-row--b { animation-delay: .18s; padding-left: clamp(0px, 6vw, 90px); }
.hero__title-row--c { animation-delay: .32s; }
.hero__title-row--d { animation-delay: .46s; color: var(--blood); padding-left: clamp(0px, 18vw, 220px); }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  grid-column: 1 / 2;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  max-width: 56ch;
  color: var(--char);
  border-left: 3px solid var(--blood);
  padding-left: 18px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(12px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) .65s forwards;
}

.hero__cta {
  grid-column: 1 / 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(12px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) .78s forwards;
}

/* right column — logo + quote */
.hero__logo {
  grid-column: 2 / 3;
  grid-row: 2 / 5;
  align-self: start;
  justify-self: end;
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: scale(.96) rotate(-2deg);
  animation: bloom 1.1s cubic-bezier(.2,.7,.2,1) .25s forwards;
}
.hero__logo::before {
  content: "";
  position: absolute;
  inset: -22px;
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  pointer-events: none;
}
.hero__logo::after {
  content: "";
  position: absolute;
  inset: -42px;
  border: 1px dashed var(--rule);
  border-radius: 50%;
  pointer-events: none;
}
.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(37,44,61,.18));
}
@keyframes bloom {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero__pullquote {
  grid-column: 2 / 3;
  grid-row: 5 / 6;
  align-self: end;
  justify-self: end;
  max-width: 360px;
  text-align: right;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  border-top: 1.5px solid var(--ink);
  padding-top: 18px;
  margin-top: 24px;
  position: relative;
}
.hero__quotemark {
  position: absolute;
  top: -12px;
  right: -6px;
  font-family: "Fraunces", serif;
  font-size: 78px;
  line-height: 1;
  color: var(--blood);
  opacity: .8;
}

.hero__stripes {
  position: absolute;
  right: -120px;
  bottom: -60px;
  width: 360px;
  height: 60px;
  background: repeating-linear-gradient(
    to bottom,
    var(--blood) 0 10px,
    var(--cream) 10px 20px
  );
  transform: rotate(-8deg);
  opacity: .42;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 980px) {
  .hero { padding-top: 50px; }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__title, .hero__lede, .hero__cta { grid-column: 1 / -1; }
  .hero__logo {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: center;
    width: min(72vw, 360px);
    margin-top: 10px;
  }
  .hero__pullquote {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: stretch;
    text-align: left;
    max-width: none;
  }
  .hero__title-row--b,
  .hero__title-row--d { padding-left: 0; }
  .hero__stripes { display: none; }
}

/* =============================================================
   TICKER
   ============================================================= */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(242,235,218,.08);
  border-bottom: 1px solid rgba(242,235,218,.08);
  position: relative;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  pointer-events: none;
  z-index: 2;
}
.ticker::before { left: 0;  background: linear-gradient(to right, var(--ink), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding: 18px 0;
  animation: scroll 38s linear infinite;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  letter-spacing: .28em;
  text-transform: uppercase;
  will-change: transform;
}
.ticker__sep { color: var(--blood); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   MISSION
   ============================================================= */
.mission {
  padding: 110px 0 90px;
  position: relative;
}
.mission__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 38px;
}
.section-eyebrow .rule {
  flex: 1;
  height: 1px;
  background: var(--rule-2);
}
.section-eyebrow--light { color: var(--cream); }
.section-eyebrow--light .rule { background: rgba(242,235,218,.28); }

.mission__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission__copy h2.display {
  font-size: clamp(34px, 4.2vw, 60px);
  margin-bottom: 28px;
}
.mission__copy p {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--char);
  max-width: 60ch;
}
.mission__copy p:first-of-type::first-letter {
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 4.4em;
  float: left;
  line-height: .82;
  padding: 6px 12px 0 0;
  color: var(--blood);
}

.mission__stats {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.stat {
  padding: 26px 4px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: baseline;
}
.stat:last-child { border-bottom: 0; }
.stat__num {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  color: var(--blood);
  letter-spacing: -.02em;
}
.stat__lbl {
  font-family: "Source Serif 4", serif;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}

@media (max-width: 900px) {
  .mission { padding: 70px 0 60px; }
  .mission__grid { grid-template-columns: 1fr; gap: 50px; }
  .stat { grid-template-columns: 110px 1fr; }
  .stat__num { font-size: 44px; }
}

/* =============================================================
   ISSUES (dark)
   ============================================================= */
.issues {
  background: var(--ink);
  color: var(--cream);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.issues::before {
  /* top torn-paper accent stripe */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    var(--blood) 0 22px,
    var(--cream) 22px 28px,
    var(--blood) 28px 50px,
    var(--cream) 50px 56px
  );
}
.issues__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.issues__title {
  color: var(--cream);
  font-size: clamp(40px, 6.4vw, 92px);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.issues__title::after {
  content: ".";
  color: var(--blood);
}
.issues__sub {
  font-size: 19px;
  max-width: 58ch;
  color: rgba(242,235,218,.86);
  margin-bottom: 70px;
  border-left: 3px solid var(--blood);
  padding-left: 18px;
}

.issues__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 0;
}
.issue {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 32px 0;
  border-top: 1px solid rgba(242,235,218,.14);
  position: relative;
  transition: transform .35s ease;
}
.issues__list > .issue:nth-last-child(-n+2) { border-bottom: 1px solid rgba(242,235,218,.14); }
.issue:nth-child(odd) { padding-right: 28px; border-right: 1px solid rgba(242,235,218,.08); }

.issue:hover { transform: translateX(4px); }
.issue:hover .issue__num { color: var(--blood); }

.issue__num {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1;
  color: rgba(242,235,218,.4);
  letter-spacing: -.02em;
  transition: color .3s ease;
}
.issue__body h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--cream);
  letter-spacing: -.01em;
}
.issue__body p {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(242,235,218,.78);
  max-width: 44ch;
}

@media (max-width: 900px) {
  .issues { padding: 70px 0 80px; }
  .issues__list { grid-template-columns: 1fr; column-gap: 0; }
  .issue { grid-template-columns: 70px 1fr; padding: 26px 0; }
  .issue:nth-child(odd) { border-right: 0; padding-right: 0; }
  .issue__num { font-size: 44px; }
  .issue__body h3 { font-size: 24px; }
}

/* =============================================================
   GET INVOLVED
   ============================================================= */
.involved {
  padding: 110px 0 100px;
  background: var(--cream);
  position: relative;
}
.involved__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.involved__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.involved__card {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.involved__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--rule-2);
}
.involved__kicker {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blood);
}
.involved__card .display {
  font-size: 26px;
  line-height: 1.1;
}
.involved__card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--char);
}
.involved__card .btn { align-self: flex-start; margin-top: auto; }

/* Feature-card overrides — must come AFTER the base card rules */
.involved__card--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  padding: 44px 38px;
  position: relative;
}
.involved__card--feature::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background:
    repeating-linear-gradient(45deg, var(--blood) 0 6px, transparent 6px 12px);
  opacity: .55;
  pointer-events: none;
}
.involved__card--feature .display { color: var(--cream); font-size: 32px; }
.involved__card--feature p { color: rgba(242,235,218,.82); }
.involved__card--feature .involved__kicker { color: #E89B6A; }
.involved__finewrite {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(242,235,218,.6);
  text-transform: uppercase;
  margin-top: 6px;
}

@media (max-width: 1000px) {
  .involved__grid { grid-template-columns: 1fr 1fr; }
  .involved__card--feature { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .involved { padding: 70px 0 60px; }
  .involved__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 0 36px;
  position: relative;
}
.foot__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}
.foot__brand { display: flex; flex-direction: column; gap: 14px; }
.foot__seal { width: 78px; height: 78px; }
.foot__brandtext { display: flex; flex-direction: column; line-height: 1; }
.foot__line1 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  color: var(--cream);
  letter-spacing: -.01em;
}
.foot__line2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 6px;
}
.foot__motto {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--blood-2);
  margin-top: 8px;
}

.foot__hed {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blood-2);
  margin-bottom: 14px;
}
.foot__col address {
  font-style: normal;
  line-height: 1.65;
  color: rgba(242,235,218,.85);
}
.foot__phone {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -.01em;
  color: var(--cream);
  border-bottom: 2px solid transparent;
  transition: border-color .3s ease, color .3s ease;
}
.foot__phone:hover { border-bottom-color: var(--blood-2); color: var(--blood-2); }

.foot__rule {
  height: 1px;
  background: rgba(242,235,218,.18);
  margin: 60px 0 24px;
}
.foot__base {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(242,235,218,.62);
}
.foot__legal { max-width: 64ch; font-family: "JetBrains Mono", monospace; font-size: 11.5px; letter-spacing: .02em; text-transform: uppercase; }
.foot__copy { font-family: "JetBrains Mono", monospace; font-size: 11.5px; letter-spacing: .02em; }

@media (max-width: 900px) {
  .foot { padding: 60px 0 28px; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .foot__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   PRINT
   ============================================================= */
@media print {
  .banner, .ticker, .masthead, .hero__stripes { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title-row,
  .hero__lede,
  .hero__cta { opacity: 1 !important; transform: none !important; }
  .hero__logo { opacity: 1 !important; transform: none !important; }
}
