:root {
  --navy-950: #031326;
  --navy-900: #071f3c;
  --navy-800: #0b2e57;
  --blue: #1769aa;
  --sky: #9bc8e3;
  --red: #d3182d;
  --red-dark: #a70f20;
  --cream: #f4efe6;
  --paper: #fffdfa;
  --gold: #e2b34f;
  --ink: #0b1b2d;
  --muted: #5b6570;
  --white: #fff;
  --headline: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 1.25rem;
  --shadow: 0 32px 90px rgba(3, 19, 38, .25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}
button, a { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.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: fixed; z-index: 1000; left: 1rem; top: -5rem;
  color: var(--navy-950); background: white; padding: .8rem 1rem; border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }
.scroll-progress { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 4px; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; }

.site-header {
  position: sticky; z-index: 100; top: 0; display: flex; align-items: center;
  justify-content: space-between; min-height: 5.25rem; padding: .85rem clamp(1.25rem, 4vw, 4.5rem);
  color: white; background: rgba(3, 19, 38, .91); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; flex: 0 0 2.6rem; height: 2.6rem;
  color: white; background: var(--red); border-radius: 50%;
  font: 950 1.35rem/1 var(--headline); box-shadow: inset 0 0 0 3px rgba(255,255,255,.2);
}
.brand span:last-child { display: grid; line-height: 1.02; letter-spacing: .035em; }
.brand strong { font-family: var(--headline); font-weight: 900; }
.brand small { margin-top: .28rem; color: var(--sky); font-size: .68rem; font-weight: 800; letter-spacing: .15em; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.site-nav a { text-decoration: none; font-size: .9rem; font-weight: 750; }
.site-nav a:not(.nav-donate) { opacity: .76; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active { opacity: 1; }
.nav-donate {
  padding: .72rem 1.25rem; color: white; background: var(--red); border-radius: 999px;
  box-shadow: 0 10px 30px rgba(211, 24, 45, .28);
}
.menu-toggle { display: none; color: white; border: 0; background: none; padding: .5rem; }
.menu-toggle span:not(.sr-only) { display: block; width: 1.5rem; height: 2px; margin: 4px 0; background: currentColor; }

.hero {
  position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(18rem, 1fr) minmax(0, .95fr);
  align-items: center; min-height: calc(100svh - 7rem); padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7rem) 6rem;
  color: white; overflow: hidden;
}
.hero-landscape, .hero-shade { position: absolute; z-index: -2; inset: -5%; }
.hero-landscape {
  background: url("./rosie-primary-4k.webp") center top / cover no-repeat;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.08); will-change: transform;
}
.hero-shade {
  z-index: -1; background:
    linear-gradient(270deg, rgba(3,19,38,.98) 1%, rgba(3,19,38,.89) 38%, rgba(3,19,38,.22) 68%, rgba(3,19,38,.05)),
    linear-gradient(0deg, rgba(3,19,38,.58), transparent 48%);
}
.hero-copy { position: relative; z-index: 2; grid-column: 2; justify-self: end; max-width: 54rem; }
.eyebrow {
  margin: 0 0 1rem; color: var(--red); font-size: .8rem; font-weight: 900;
  letter-spacing: .18em; text-transform: uppercase;
}
.hero .eyebrow { color: var(--sky); }
h1, h2 { margin: 0; font-family: var(--headline); font-weight: 950; line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
h1 { max-width: 58rem; font-size: clamp(4rem, 9vw, 8.7rem); }
h1 span { color: var(--red); text-shadow: 0 6px 30px rgba(0,0,0,.25); }
.hero-deck { max-width: 43rem; margin: 1.8rem 0 0; color: rgba(255,255,255,.84); font-size: clamp(1.1rem, 2vw, 1.4rem); }
.hero-deck strong { color: white; }
.hero-promise { margin: 1.15rem 0 0; color: var(--gold); font-size: clamp(.9rem, 1.4vw, 1.08rem); font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.hero-actions, .movement-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 3.35rem;
  padding: .78rem 1.4rem; border: 1px solid transparent; border-radius: 999px;
  text-decoration: none; font-weight: 850; cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button-primary { color: white; background: var(--red); box-shadow: 0 12px 34px rgba(211,24,45,.26); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { color: white; border-color: rgba(255,255,255,.44); background: rgba(255,255,255,.07); backdrop-filter: blur(7px); }
.button-ghost-dark { color: var(--navy-950); border-color: rgba(3,19,38,.3); background: transparent; }
.election-strip { display: flex; gap: 0; margin-top: 3.6rem; border-top: 1px solid rgba(255,255,255,.22); }
.election-strip div { min-width: 9rem; padding: 1rem clamp(.75rem, 2vw, 1.5rem) .25rem 0; margin-right: clamp(.75rem, 2vw, 1.5rem); border-right: 1px solid rgba(255,255,255,.2); }
.election-strip div:last-child { border-right: 0; }
.election-strip span, .election-strip small { display: block; }
.election-strip span { font-weight: 900; }
.election-strip small { margin-top: .2rem; color: rgba(255,255,255,.64); font-size: .75rem; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.3rem; display: grid; place-items: center; gap: .4rem; color: rgba(255,255,255,.7); text-decoration: none; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { width: 1px; height: 2.4rem; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 50% { transform: scaleY(.45); transform-origin: top; } }

.promise-sequence { background: var(--navy-950); }
.promise-frame { position: relative; display: grid; align-content: center; min-height: 88svh; padding: clamp(4rem, 10vw, 9rem) clamp(1.25rem, 8vw, 9rem); color: white; overflow: hidden; }
.promise-frame::after { content: ""; position: absolute; right: -9vw; top: 10%; width: 34vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(255,255,255,.025), 0 0 0 14vw rgba(255,255,255,.02); }
.promise-frame h2 { position: relative; z-index: 1; max-width: 74rem; font-size: clamp(3.7rem, 9vw, 9rem); }
.promise-frame h2 span { color: var(--red); }
.promise-copy { position: relative; z-index: 1; max-width: 42rem; margin: 2rem 0 0; color: rgba(255,255,255,.7); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.promise-action { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: fit-content; min-width: 14rem; margin-top: 1.6rem; padding: .85rem 1.05rem .85rem 1.25rem; color: white; background: var(--red); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; text-decoration: none; font-weight: 900; box-shadow: 0 12px 30px rgba(3,19,38,.2); transition: transform .2s ease, background .2s ease; }
.promise-action:hover { background: var(--red-dark); transform: translateY(-2px); }
.promise-action span { display: grid; place-items: center; width: 1.7rem; height: 1.7rem; color: var(--navy-950); background: white; border-radius: 50%; }
.promise-index { position: absolute; top: 3rem; right: clamp(1.25rem, 8vw, 9rem); margin: 0; color: var(--sky); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.promise-frame-light { color: var(--navy-950); background: var(--cream); }
.promise-frame-light h2 span { color: var(--blue); }
.promise-frame-light .promise-copy { color: var(--muted); }
.promise-frame-light .promise-index { color: var(--red); }
.promise-frame-light::after { border-color: rgba(3,19,38,.12); box-shadow: 0 0 0 7vw rgba(3,19,38,.022), 0 0 0 14vw rgba(3,19,38,.018); }
.promise-frame-photo { background: linear-gradient(90deg, rgba(3,19,38,.95), rgba(3,19,38,.55)), url("./oklahoma-story.webp") center / cover no-repeat; }
.promise-frame-photo h2 span { color: var(--gold); }

.section { padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 7vw, 8rem); }
.section-intro { margin-bottom: 3rem; }
.section-intro h2, .movement h2, .donate h2, .story h2 { font-size: clamp(2.65rem, 5.8vw, 5.9rem); }
.section-intro.split { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 2rem; }
.section-intro.split > p { max-width: 28rem; margin: 0 0 .4rem auto; color: var(--muted); font-size: 1.08rem; }

.story { display: grid; grid-template-columns: minmax(18rem, .82fr) minmax(0, 1.18fr); gap: clamp(2rem, 8vw, 8rem); align-items: start; background: var(--paper); }
.story-widgets { position: sticky; top: 7rem; display: grid; gap: .75rem; max-width: 37rem; padding: clamp(1.35rem, 3vw, 2.25rem); color: white; background: var(--navy-950); border-radius: 1.5rem; box-shadow: var(--shadow); }
.story-widgets > h2 { margin-bottom: 1rem; color: white; font-size: clamp(2.7rem, 5vw, 5rem); }
.story-widgets > .eyebrow { color: var(--sky); }
.story-widget { display: grid; grid-template-columns: 2.4rem 1fr; gap: .15rem 1rem; width: 100%; padding: 1rem; color: rgba(255,255,255,.7); text-align: left; border: 1px solid rgba(255,255,255,.14); border-radius: 1rem; background: rgba(255,255,255,.04); cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.story-widget > span { grid-row: 1 / 3; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.story-widget strong { font: 900 1.18rem/1.05 var(--headline); letter-spacing: -.025em; text-transform: uppercase; }
.story-widget small { color: rgba(255,255,255,.56); font-size: .79rem; line-height: 1.45; }
.story-widget:hover, .story-widget.is-active { color: white; background: rgba(255,255,255,.1); border-color: var(--gold); transform: translateX(.35rem); }
.story-widget.is-active small { color: rgba(255,255,255,.78); }
.story-chapters article { display: grid; align-content: center; min-height: 68svh; max-width: 52rem; padding-block: 3rem; border-bottom: 1px solid rgba(3,19,38,.14); }
.story-chapters article:last-child { border-bottom: 0; }
.story-chapters h2 { color: var(--navy-950); font-size: clamp(2.5rem, 4.5vw, 4.7rem); }
.story-chapters article > p:last-of-type { max-width: 44rem; color: var(--muted); font-size: 1.12rem; }
.text-link { display: inline-block; width: fit-content; margin-top: 1rem; color: var(--red-dark); font-weight: 850; text-underline-offset: .3rem; }

.priorities { background: var(--cream); }
.priority-list { border-top: 1px solid rgba(3,19,38,.2); }
.priority-item { border-bottom: 1px solid rgba(3,19,38,.2); }
.priority-item button { display: grid; grid-template-columns: 4rem 1fr 2rem; gap: 1rem; align-items: center; width: 100%; padding: 1.55rem 0; color: var(--navy-950); text-align: left; border: 0; background: transparent; cursor: pointer; }
.priority-item button > span:nth-child(2) { font: 900 clamp(1.35rem, 3vw, 2.6rem)/1.06 var(--headline); letter-spacing: -.04em; }
.priority-item button small { display: block; margin-bottom: .42rem; color: var(--red); font: 900 .74rem var(--body); letter-spacing: .15em; text-transform: uppercase; }
.priority-number { color: var(--muted); font-size: .8rem; font-weight: 900; }
.plus { position: relative; width: 1.6rem; height: 1.6rem; }
.plus::before, .plus::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: var(--navy-900); transition: transform .25s; }
.plus::after { transform: rotate(90deg); }
.priority-item.is-open .plus::after { transform: rotate(0); }
.priority-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.priority-panel p { overflow: hidden; max-width: 50rem; margin: 0 0 0 5rem; color: var(--muted); font-size: 1.06rem; }
.priority-item.is-open .priority-panel { grid-template-rows: 1fr; }
.priority-item.is-open .priority-panel p { margin-bottom: 1.8rem; }

.tuesdays { position: relative; color: white; background: var(--navy-950); overflow: hidden; }
.tuesdays::before { content: "ROSIE’S TABLE"; position: absolute; top: 3rem; left: -2rem; color: rgba(255,255,255,.025); font: 950 clamp(7rem, 18vw, 18rem)/.8 var(--headline); white-space: nowrap; }
.tuesdays .eyebrow { color: var(--sky); }
.show-lockup { position: relative; z-index: 1; margin-bottom: 3rem; text-align: center; }
.show-lockup h2 { display: inline-block; color: white; font-size: clamp(3.4rem, 8.2vw, 8rem); }
.show-lockup h2 span { position: absolute; margin: -.25rem 0 0 .35rem; color: var(--red); font: 950 .78rem var(--body); letter-spacing: .12em; }
.show-line { color: rgba(255,255,255,.68); font-size: 1.16rem; }
.show-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.25rem; }
.show-player { position: relative; display: flex; align-items: flex-end; min-height: 30rem; overflow: hidden; padding: 1.5rem; background: linear-gradient(135deg, rgba(211,24,45,.72), rgba(3,19,38,.45) 48%), url("./oklahoma-story.webp") center / cover no-repeat; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); }
.show-player::before { content: "R"; position: absolute; right: -1rem; top: -4rem; color: rgba(255,255,255,.09); font: 950 28rem/1 var(--headline); transform: rotate(7deg); }
.player-topline { position: absolute; top: 1.3rem; left: 1.5rem; right: 1.5rem; display: flex; justify-content: space-between; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.play-button { position: absolute; left: 50%; top: 44%; display: grid; place-items: center; width: 5rem; height: 5rem; color: white; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(255,255,255,.12); transform: translate(-50%, -50%); cursor: pointer; backdrop-filter: blur(8px); transition: transform .2s, background .2s; }
.play-button:hover { background: var(--red); transform: translate(-50%, -50%) scale(1.06); }
.player-copy { position: relative; z-index: 1; max-width: 31rem; }
.player-copy small { display: block; color: var(--gold); font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.player-copy strong { display: block; margin-top: .5rem; font: 900 clamp(1.65rem, 3vw, 2.7rem)/.98 var(--headline); letter-spacing: -.04em; }
.episode-menu { display: grid; }
.episode { display: flex; gap: 1rem; align-items: center; padding: 1.25rem; color: rgba(255,255,255,.63); text-align: left; border: 0; border-bottom: 1px solid rgba(255,255,255,.15); background: transparent; cursor: pointer; }
.episode span { color: var(--red); font-size: .75rem; font-weight: 900; }
.episode:hover, .episode.active { color: white; background: rgba(255,255,255,.07); }
.social-row { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.16); }
.social-row strong { font: 950 1.6rem var(--headline); }
.social-row p { max-width: 40rem; margin: .4rem 0 0; color: rgba(255,255,255,.62); }
.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; }
.social-links a, .social-links button { padding: .72rem 1rem; color: white; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: none; text-decoration: none; cursor: pointer; }
.social-links button { color: rgba(255,255,255,.75); }
.social-wall { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin-top: 1.5rem; }
.social-card { display: flex; flex-direction: column; min-height: 12rem; padding: 1.25rem; color: white; text-align: left; text-decoration: none; border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; background: rgba(255,255,255,.045); cursor: pointer; }
.social-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.3); }
.social-card .social-type { color: var(--red); font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.social-card strong { margin-top: auto; font: 900 1.3rem/1.05 var(--headline); letter-spacing: -.035em; }
.social-card small { margin-top: .7rem; color: rgba(255,255,255,.58); font-size: .8rem; }

.movement { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(2rem, 8vw, 7rem); background: var(--gold); }
.movement-visual { max-width: 34rem; margin: auto; padding: clamp(.7rem, 2vw, 1.3rem); background: rgba(255,255,255,.55); border-radius: 2rem; transform: rotate(-2deg); box-shadow: var(--shadow); }
.movement-visual img { border-radius: 1rem; }
.movement h2 { color: var(--navy-950); }
.movement h2 span { color: var(--red-dark); }
.movement-copy > p:not(.eyebrow) { max-width: 42rem; font-size: 1.08rem; }
.movement-copy ol { list-style: none; padding: 0; margin: 2rem 0; }
.movement-copy li { display: flex; align-items: center; gap: .8rem; margin: .75rem 0; font-weight: 750; }
.movement-copy li span { display: grid; place-items: center; flex: 0 0 1.9rem; height: 1.9rem; color: white; background: var(--navy-900); border-radius: 50%; font-size: .8rem; }
.copy-status { min-height: 1.5rem; margin: .8rem 0 0; color: var(--navy-800); font-weight: 800; }

.donate { position: relative; isolation: isolate; min-height: 75svh; display: grid; align-items: center; overflow: hidden; }
.donate-landscape { position: absolute; z-index: -2; inset: 0; background: url("./oklahoma-story.webp") center / cover no-repeat; }
.donate::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(3,19,38,.96), rgba(3,19,38,.68)); }
.donate-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; width: 100%; padding: clamp(2rem, 5vw, 4.5rem); color: white; background: rgba(3,19,38,.74); border: 1px solid rgba(255,255,255,.2); border-radius: 2rem; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.donate h2 { color: white; }
.donate-card > div:first-child > p:last-child { max-width: 39rem; color: rgba(255,255,255,.74); font-size: 1.08rem; }
.donate-options { align-self: center; padding: 1.5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 1.25rem; }
.donate-options > p { margin-top: 0; color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.donate-options > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-bottom: 1rem; }
.donate-options > div a { padding: .82rem .25rem; text-align: center; text-decoration: none; border: 1px solid rgba(255,255,255,.3); border-radius: .75rem; font-weight: 900; }
.donate-options > div a:hover { color: var(--navy-950); background: var(--gold); }
.button-light { width: 100%; color: var(--navy-950); background: white; }
.donate-options small { display: block; margin-top: .9rem; color: rgba(255,255,255,.62); font-size: .76rem; }

.vote-banner { display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: center; gap: 1rem; padding: 2rem clamp(1.25rem, 7vw, 8rem); color: white; background: var(--red); }
.vote-banner small, .vote-banner strong { display: block; }
.vote-banner small { font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; opacity: .78; }
.vote-banner strong { font-size: 1.25rem; }
.vote-banner a { padding: .82rem 1rem; text-decoration: none; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; font-weight: 850; }
footer { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem clamp(1.25rem, 7vw, 8rem); color: rgba(255,255,255,.65); background: var(--navy-950); font-size: .84rem; }
.footer-brand { display: flex; gap: .75rem; align-items: center; color: white; }
.footer-brand div { display: grid; line-height: 1.08; }
.footer-brand strong { font-family: var(--headline); }
.footer-brand small { margin-top: .28rem; color: var(--sky); font-size: .68rem; letter-spacing: .11em; }
.footer-note { grid-column: 1 / -1; max-width: 62rem; margin: 0; font-size: .76rem; }

.video-dialog { width: min(90vw, 40rem); padding: clamp(1.5rem, 4vw, 3rem); color: var(--ink); background: var(--paper); border: 0; border-radius: 1.5rem; box-shadow: var(--shadow); }
.video-dialog::backdrop { background: rgba(3,19,38,.8); backdrop-filter: blur(5px); }
.video-dialog > button { float: right; color: var(--navy-950); border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
.video-dialog h2 { color: var(--navy-950); font-size: clamp(2.4rem, 6vw, 4rem); }
.dialog-format { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: 1.5rem; }
.dialog-format span { padding: 1rem; background: var(--cream); border-radius: .8rem; color: var(--muted); font-size: .8rem; }
.dialog-format strong { display: block; color: var(--red-dark); font-size: 1.05rem; }

.js-ready [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.js-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { min-height: 4.7rem; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; align-items: stretch; padding: 1rem 1.25rem 1.4rem; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.12); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: .72rem; }
  .nav-donate { text-align: center; }
  .hero { grid-template-columns: minmax(14rem, .7fr) minmax(0, 1.3fr); min-height: 51rem; }
  .hero h1 { font-size: clamp(4rem, 10vw, 6.5rem); }
  .section-intro.split, .show-grid, .movement, .donate-card { grid-template-columns: 1fr; }
  .section-intro.split > p { margin-left: 0; }
  .social-row { display: grid; }
  .movement-visual { max-width: 27rem; }
  .vote-banner { grid-template-columns: repeat(3, 1fr); }
  .vote-banner a { grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; align-content: end; min-height: 58rem; padding-top: 25rem; }
  .hero-landscape { background-position: center top; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,19,38,.98) 2%, rgba(3,19,38,.91) 48%, rgba(3,19,38,.18) 82%); }
  .hero-copy { grid-column: 1; justify-self: stretch; text-align: left; }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .hero-deck { margin-inline: 0; }
  .hero-actions, .election-strip { justify-content: flex-start; }
  .scroll-cue { display: none; }
  .promise-frame { min-height: 72svh; }
  .promise-frame h2 { font-size: clamp(3.1rem, 14vw, 5.7rem); }
  .story { grid-template-columns: 1fr; }
  .story-widgets { position: relative; top: auto; width: min(100%, 37rem); margin: 0 auto; }
  .story-chapters article { min-height: auto; padding-block: 4.5rem; }
  .social-wall { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .brand small { display: none; }
  .hero { padding-inline: 1.1rem; }
  .hero h1 { letter-spacing: -.07em; }
  .hero-deck { font-size: 1.05rem; }
  .hero-promise { font-size: .82rem; }
  .hero-actions { display: grid; }
  .election-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .election-strip div { min-width: 0; margin-right: 0; border-right: 0; }
  .election-strip div:last-child { grid-column: 1 / -1; }
  .promise-index { top: 2rem; }
  .promise-frame { padding-inline: 1.1rem; }
  .priority-item button { grid-template-columns: 2.3rem 1fr 1.4rem; }
  .priority-panel p { margin-left: 3.3rem; }
  .show-lockup h2 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .player-topline { gap: 1rem; }
  .donate-options > div { grid-template-columns: 1fr 1fr; }
  .vote-banner { grid-template-columns: 1fr; }
  .vote-banner a { grid-column: auto; }
  footer { grid-template-columns: 1fr; }
  .footer-note { grid-column: auto; }
  .dialog-format { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .hero-landscape { transform: none !important; }
  .js-ready [data-reveal] { opacity: 1; transform: none; }
}

/* Display the supplied glasses and I SEE YOU artwork within its existing story panel. */
.signature-art { position: relative; aspect-ratio: 1729 / 910; overflow: hidden; border-radius: .8rem; background: #0b2e57; margin-bottom: .5rem; }
.signature-art img { position: absolute; top: 0; left: 0; width: 100%; max-width: none; height: auto; }
