:root {
  --navy: #101e3c;
  --navy-2: #182b52;
  --red: #e23b2e;
  --red-dark: #b92b20;
  --cream: #f6efdf;
  --cream-2: #efe5ce;
  --gold: #f0b429;
  --ink-on-cream: #101e3c;
  --line: rgba(16, 30, 60, 0.2);
  --line-strong: rgba(16, 30, 60, 0.4);
  --display: "Anton", Impact, sans-serif;
  --body: "Libre Franklin", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --maxw: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  background: var(--cream);
  color: var(--ink-on-cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.mono {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- bunting stripe (signature motif) ---------- */
.bunting {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 40px,
    var(--cream) 40px 80px,
    var(--navy) 80px 120px
  );
}

/* ---------- nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 4px solid var(--red);
}
.nav-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand b {
  color: var(--gold);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-links a:hover {
  border-color: var(--gold);
}
.nav-cta {
  background: var(--red);
  color: var(--cream) !important;
  padding: 9px 16px !important;
  border: none !important;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

/* ---------- hero: campaign poster ---------- */
.hero {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(var(--cream) 1px, transparent 1px);
  background-size: 14px 14px;
}
.hero .rays {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 1600px;
  height: 1600px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.07;
  background: repeating-conic-gradient(
    var(--cream) 0deg 6deg,
    transparent 6deg 14deg
  );
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(246, 239, 223, 0.4);
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 34px;
  color: var(--gold);
}
.hero-eyebrow .star {
  color: var(--red);
  font-size: 0.9rem;
}
h1.poster {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  font-size: clamp(3.4rem, 12.5vw, 10rem);
}
h1.poster .row2 {
  color: var(--red);
  -webkit-text-stroke: 0;
  display: block;
}
h1.poster .row3 {
  color: var(--gold);
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.14em;
  margin-top: 14px;
}
.hero-sub {
  max-width: 52ch;
  margin: 28px auto 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(246, 239, 223, 0.85);
  position: relative;
  z-index: 1;
}
.hero-sub b {
  color: var(--cream);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0 0;
  position: relative;
  z-index: 1;
}
.hero-deck {
  position: relative;
  z-index: 1;
  margin: 20px auto 0;
  max-width: 58ch;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.65;
}
.hero-deck b {
  color: var(--cream);
}

.btn {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: 2px;
  border: 2px solid var(--cream);
  color: var(--cream);
  cursor: pointer;
  background: transparent;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition:
    transform 0.15s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.red {
  background: var(--red);
  border-color: var(--red);
}
.btn.red:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.btn.ghost:hover {
  background: var(--cream);
  color: var(--navy);
}
.btn.navy {
  border-color: var(--navy);
  color: var(--navy);
}
.btn.navy:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn.navy-solid {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.btn.navy-solid:hover {
  background: var(--red);
  border-color: var(--red);
}

/* rosette badge */
.rosette {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 52px auto -64px;
  width: 168px;
  height: 168px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}
.rosette svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .rosette {
    width: 132px;
    height: 132px;
    margin-bottom: -52px;
  }
}

/* ticker */
.ticker {
  background: var(--red);
  color: var(--cream);
  overflow: hidden;
  padding: 12px 0;
  border-top: 4px solid var(--gold);
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: scroll 26s linear infinite;
  width: max-content;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.ticker-track .s {
  color: var(--gold);
}

/* ---------- sections ---------- */
section {
  padding: 88px 0;
}
.sec-head {
  margin-bottom: 48px;
}
.sec-kicker {
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sec-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
}
.sec-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.sec-head h2 em {
  font-style: normal;
  color: var(--red);
}
.sec-head .lede {
  margin-top: 16px;
  max-width: 60ch;
  font-size: 1.1rem;
  color: rgba(16, 30, 60, 0.75);
}

/* ---------- THE ASK (sponsorship, head-on) ---------- */
.ask {
  background: var(--cream-2);
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}
.ask-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: start;
}
@media (max-width: 860px) {
  .ask-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
.ask-copy p {
  font-size: 1.12rem;
  margin-bottom: 18px;
  max-width: 56ch;
}
.ask-copy p b {
  font-weight: 700;
}
.ask-copy .big-line {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 22px;
}
.ask-copy .big-line em {
  font-style: normal;
  color: var(--red);
}
.ledger {
  border: 2px solid var(--navy);
  background: var(--cream);
}
.ledger-head {
  background: var(--navy);
  color: var(--cream);
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.ledger-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.ledger-row .chk {
  width: 22px;
  height: 22px;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 2px;
}
.ledger-row h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 3px;
}
.ledger-row p {
  font-size: 0.9rem;
  color: rgba(16, 30, 60, 0.72);
  line-height: 1.45;
}
.ledger-foot {
  padding: 14px 20px;
  border-top: 2px solid var(--navy);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(16, 30, 60, 0.6);
}

/* ---------- record (work) ---------- */
.plates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .plates {
    grid-template-columns: 1fr;
  }
}
.plate {
  border: 2px solid var(--navy);
  background: var(--cream);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.plate:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--red);
}
.plate:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.plate.feature {
  grid-column: 1/-1;
}
.plate.feature .plate-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 760px) {
  .plate.feature .plate-body {
    grid-template-columns: 1fr;
  }
}
.plate-img {
  aspect-ratio: 4/3;
  background: var(--navy-2);
  overflow: hidden;
  position: relative;
}
.plate.feature .plate-img {
  aspect-ratio: auto;
  min-height: 340px;
}
.plate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  transform: rotate(3deg);
  border: 1px solid var(--navy);
  z-index: 2;
}
.ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--cream);
}
.ph.p1 {
  background: var(--red);
}
.ph.p2 {
  background: var(--navy);
}
.ph.p3 {
  background: var(--gold);
  color: var(--navy);
}
.ph .ph-num {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
}
.ph .ph-cap {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.plate-txt {
  padding: 24px;
}
.refno {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.plate h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.plate .role {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.plate p {
  font-size: 0.95rem;
  color: rgba(16, 30, 60, 0.75);
  line-height: 1.5;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  padding: 4px 8px;
  color: rgba(16, 30, 60, 0.7);
}
.view-cue {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.plate:hover .view-cue {
  border-color: var(--red);
}

/* ---------- endorsements ---------- */
.endorse {
  background: var(--navy);
  color: var(--cream);
}
.endorse .sec-head h2 em {
  color: var(--gold);
}
.endorse .sec-kicker {
  color: var(--gold);
}
.endorse .sec-kicker::before {
  background: var(--gold);
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}
.quote {
  border: 1px solid rgba(246, 239, 223, 0.3);
  padding: 30px 26px;
  position: relative;
  background: var(--navy-2);
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 18px;
  font-family: var(--display);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
}
.quote p {
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 26px 0 20px;
  font-style: italic;
  color: rgba(246, 239, 223, 0.92);
}
.quote .who {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote .who small {
  display: block;
  color: rgba(246, 239, 223, 0.55);
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* ---------- platform (skills) ---------- */
.planks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--navy);
}
@media (max-width: 760px) {
  .planks {
    grid-template-columns: 1fr;
  }
}
.plank {
  padding: 32px 28px;
  border-left: 2px solid var(--navy);
}
.plank:first-child {
  border-left: none;
}
@media (max-width: 760px) {
  .plank {
    border-left: none;
    border-top: 2px solid var(--navy);
  }
  .plank:first-child {
    border-top: none;
  }
}
.plank .no {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
}
.plank h4 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.plank ul {
  list-style: none;
}
.plank li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.plank li::before {
  content: "★";
  color: var(--red);
  font-size: 0.7rem;
}
.plank li:last-child {
  border-bottom: none;
}
.plank li span {
  color: rgba(16, 30, 60, 0.6);
  font-weight: 400;
  font-size: 0.82rem;
}

/* ---------- ballot (contact) ---------- */
.vote {
  background: var(--cream-2);
}
.vote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 860px) {
  .vote-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.vote-copy h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 0.95;
  margin-bottom: 18px;
}
.vote-copy h2 em {
  font-style: normal;
  color: var(--red);
}
.vote-copy p {
  font-size: 1.12rem;
  max-width: 46ch;
  color: rgba(16, 30, 60, 0.78);
  margin-bottom: 26px;
}
.ballot {
  background: var(--cream);
  border: 2px solid var(--navy);
  box-shadow: 10px 10px 0 var(--navy);
  max-width: 460px;
  width: 100%;
  justify-self: center;
}
.ballot-head {
  border-bottom: 2px solid var(--navy);
  padding: 18px 24px;
  text-align: center;
}
.ballot-head .t1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.ballot-head .t2 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 30, 60, 0.6);
  margin-top: 4px;
}
.ballot-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px dashed var(--line-strong);
}
.ballot-row:last-of-type {
  border-bottom: none;
}
.bx {
  width: 26px;
  height: 26px;
  border: 2px solid var(--navy);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--red);
}
.ballot-row .cand {
  font-weight: 700;
  font-size: 1.05rem;
}
.ballot-row .cand small {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(16, 30, 60, 0.6);
}
.ballot-row.dim {
  opacity: 0.45;
}
.ballot-foot {
  padding: 18px 24px;
  border-top: 2px solid var(--navy);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ballot-foot a.line {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.ballot-foot a.line:hover {
  color: var(--red);
}
.ballot-foot a.line:last-child {
  border-bottom: none;
}

/* ---------- modal (shared pattern) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16, 30, 60, 0.66);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 18px;
}
.modal-overlay[hidden] {
  display: none;
}
.modal {
  background: var(--cream);
  border: 2px solid var(--navy);
  max-width: 940px;
  width: 100%;
  max-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  box-shadow: 12px 12px 0 var(--red);
  animation: pop 0.24s ease;
}
@keyframes pop {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.modal-topbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 12px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  z-index: 2;
}
.modal-close {
  width: 38px;
  height: 38px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.modal-close:hover {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.modal-scroll {
  overflow-y: auto;
  padding: 10px 34px 40px;
}
@media (max-width: 560px) {
  .modal-scroll {
    padding: 8px 20px 30px;
  }
}
.modal-ref {
  color: var(--red);
  margin-bottom: 8px;
}
.modal-head h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
  margin: 0 0 8px;
}
.modal-role {
  font-weight: 700;
  margin-bottom: 12px;
}
.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
  padding: 22px 0;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 620px) {
  .modal-meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.meta-block h5 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.meta-block p {
  font-size: 1rem;
  line-height: 1.5;
}
.modal-link {
  margin: 4px 0 8px;
}
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 620px) {
  .modal-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gfig {
  border: 1px solid var(--line-strong);
  background: var(--cream-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gfig img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.gfig figcaption {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 30, 60, 0.65);
  padding: 8px 10px;
  border-top: 1px solid var(--line);
}
.gph-label {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1.1;
  padding: 12px;
  color: var(--cream);
}
.gfig--ph.p1 .gph-label {
  background: var(--red);
}
.gfig--ph.p2 .gph-label {
  background: var(--navy);
}
.gfig--ph.p3 .gph-label {
  background: var(--gold);
  color: var(--navy);
}

footer {
  background: var(--navy);
  color: rgba(246, 239, 223, 0.7);
  padding: 30px 0;
  border-top: 4px solid var(--red);
}
.foot-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.rise {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rise.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .rise {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .plate:hover {
    transform: none;
  }
  .modal {
    animation: none;
  }
}
