:root {
  --green: #1f8a46;
  --green-deep: #0c3b1e;
  --gold: #f5d742;
  --gold-hot: #ffe566;
  --fox: #e07a3d;
  --brick: #8a3a32;
  --navy: #0b1018;
  --ink: #07090c;
  --cream: #fff6e4;
  --mist: #e8e2d2;
  --display: "Bungee", Impact, sans-serif;
  --graffiti: "Rubik Wet Paint", "Bungee", Impact, sans-serif;
  --tag: "Oswald", Impact, sans-serif;
  --marker: "Permanent Marker", cursive;
  --body: "Oswald", Impact, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  cursor: crosshair;
}

body.is-intro {
  overflow: hidden;
}

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#arrows {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 215, 66, 0.16), transparent 62%);
  z-index: 60;
  transform: translate(-100vw, -100vh);
  transition: opacity 0.3s ease;
}

.sirens {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
}

body.has-sirens .sirens {
  opacity: 1;
}

.sirens__red,
.sirens__blue {
  position: absolute;
  top: -10%;
  bottom: -10%;
  width: 62%;
  opacity: 0;
}

.sirens__red {
  left: -8%;
  background: radial-gradient(ellipse at 10% 50%, rgba(255, 16, 48, 0.72), rgba(255, 16, 48, 0.12) 42%, transparent 72%);
  animation: sirenPulse 0.56s steps(1, end) infinite;
}

.sirens__blue {
  right: -8%;
  background: radial-gradient(ellipse at 90% 50%, rgba(20, 70, 255, 0.72), rgba(20, 70, 255, 0.12) 42%, transparent 72%);
  animation: sirenPulse 0.56s steps(1, end) infinite;
  animation-delay: 0.28s;
}

.sirens__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, #ff1430 0%, #ff1430 25%, #1638ff 25%, #1638ff 50%, #ff1430 50%, #ff1430 75%, #1638ff 75%, #1638ff 100%);
  background-size: 200% 100%;
  animation: sirenSweep 0.28s linear infinite;
  box-shadow: 0 0 24px rgba(255, 20, 48, 0.65), 0 0 24px rgba(22, 56, 255, 0.65);
}

.sirens__bar--top {
  top: 0;
}

.sirens__bar--bottom {
  bottom: 0;
}

body.is-siren-hot .sirens__red,
body.is-siren-hot .sirens__blue {
  animation-duration: 0.32s;
}

body.is-siren-hot .sirens__red {
  background: radial-gradient(ellipse at 10% 50%, rgba(255, 16, 48, 0.95), rgba(255, 16, 48, 0.28) 46%, transparent 74%);
}

body.is-siren-hot .sirens__blue {
  background: radial-gradient(ellipse at 90% 50%, rgba(40, 90, 255, 0.95), rgba(40, 90, 255, 0.28) 46%, transparent 74%);
}

body.is-siren-hot .sirens__bar {
  height: 14px;
  animation-duration: 0.16s;
}

/* INTRO */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #050705;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.js .intro {
  background: transparent;
}

.intro__sheet,
.intro__flash,
.intro__holes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro__sheet {
  z-index: 1;
}

.intro__spray {
  position: absolute;
  inset: -20%;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 30%, rgba(31, 138, 70, 0.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245, 215, 66, 0.18), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(224, 122, 61, 0.12), transparent 50%);
  animation: sprayPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

.intro__copy {
  position: relative;
  z-index: 3;
  padding: 0 1rem;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.intro__holes {
  z-index: 4;
  pointer-events: none;
}

.intro__flash {
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(circle, #fff6c8 0%, rgba(255, 170, 40, 0.55) 28%, transparent 62%);
  opacity: 0;
}

.intro__flash.is-bang {
  animation: muzzle 0.09s ease-out;
}

.intro.is-shooting {
  animation: recoil 0.1s linear infinite;
}

.intro.is-shooting .intro__copy {
  opacity: 0;
  filter: contrast(1.4) brightness(1.6);
  transform: scale(1.04);
  transition-delay: 0.28s;
}

.intro.is-shooting .intro__spray {
  opacity: 0;
  transition: opacity 0.12s ease;
}

.intro.is-shooting .intro__enter {
  opacity: 0 !important;
  transition-delay: 0s;
}

.intro.is-done {
  animation: introOut 0.55s ease forwards;
  pointer-events: none;
}

.intro__tag,
.intro__ticker {
  position: relative;
  font-family: var(--tag);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.intro__title {
  position: relative;
  font-family: var(--display);
  font-size: clamp(2.2rem, 8vw, 6.4rem);
  line-height: 0.95;
  color: var(--gold);
  -webkit-text-stroke: 1px #031007;
  paint-order: stroke fill;
  text-shadow:
    0 0 18px rgba(31, 138, 70, 0.9),
    0 0 48px rgba(245, 215, 66, 0.45),
    4px 6px 0 #031007;
  animation: titlePop 0.8s cubic-bezier(0.2, 1.4, 0.3, 1) both;
  max-width: 94vw;
}

.intro__enter {
  margin-top: 1.6rem;
  font-family: var(--display);
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  letter-spacing: 0.18em;
  color: var(--cream);
  text-shadow: 0 2px 0 #000, 0 0 18px rgba(245, 215, 66, 0.45);
}

.intro__enter span {
  display: inline-block;
  padding: 0.45rem 0.9rem 0.35rem;
  border: 2px solid var(--gold);
  box-shadow: 5px 5px 0 var(--green);
  animation: enterBlink 1.1s steps(2, end) infinite;
}

.bullet-hole {
  position: absolute;
  width: var(--s, 72px);
  height: var(--s, 72px);
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%) scale(0) rotate(var(--r, 0deg));
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 38%, transparent 28%, rgba(10, 8, 6, 0.2) 32%, #120e0a 36%, #f5d742 41%, #1a140c 46%, #000 52%, transparent 62%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(245, 215, 66, 0.35),
    inset 0 0 10px #000;
  animation: holePunch 0.16s cubic-bezier(0.15, 1.4, 0.3, 1) forwards;
}

.bullet-hole::before,
.bullet-hole::after {
  content: "";
  position: absolute;
  background: #0a0806;
  box-shadow: 0 0 0 1px rgba(245, 215, 66, 0.25);
}

.bullet-hole::before {
  width: 38%;
  height: 3px;
  left: 82%;
  top: 46%;
  transform: rotate(18deg);
}

.bullet-hole::after {
  width: 3px;
  height: 34%;
  left: 48%;
  top: 78%;
  transform: rotate(-12deg);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(to bottom, rgba(7, 9, 12, 0.88), rgba(7, 9, 12, 0.2) 70%, transparent);
  backdrop-filter: blur(6px);
}

.nav__brand {
  font-family: var(--display);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 #000, 0 0 16px rgba(245, 215, 66, 0.45);
}

.nav__feather {
  width: 10px;
  height: 22px;
  border-radius: 10px 10px 2px 2px;
  background: linear-gradient(#ff7a2f, #c13a12);
  box-shadow: 0 0 12px #ff7a2f;
  transform: rotate(-18deg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__x {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 0 18px rgba(245, 215, 66, 0.45);
}

.nav__x:hover {
  background: var(--gold-hot);
  color: var(--ink);
}

.nav__mute {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(7, 9, 12, 0.85);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav__mute:hover,
.nav__mute.is-muted {
  background: var(--gold);
  color: var(--ink);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
}

.hero__art {
  position: absolute;
  inset: 0;
}

.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #07090c 0%, rgba(7, 9, 12, 0.72) 28%, rgba(7, 9, 12, 0.18) 52%, transparent 68%),
    radial-gradient(ellipse at center, transparent 40%, rgba(7, 9, 12, 0.55) 100%);
}

.marquee {
  position: absolute;
  top: 4.4rem;
  left: 0;
  right: 0;
  overflow: hidden;
  border-block: 2px solid rgba(245, 215, 66, 0.35);
  background: rgba(7, 9, 12, 0.55);
  transform: rotate(-1.2deg);
}

.marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--display);
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  color: var(--gold);
  padding: 0.5rem 0;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 0 #000, 0 0 10px rgba(245, 215, 66, 0.5);
}

.marquee__track span::after {
  content: " ◆ ";
  color: var(--green);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 0 6vw 3.2rem;
  max-width: 1100px;
}

.badge {
  display: inline-block;
  font-family: var(--display);
  color: var(--ink);
  background: var(--gold);
  padding: 0.4rem 0.85rem 0.28rem;
  transform: rotate(-2deg);
  box-shadow: 6px 6px 0 var(--green);
  margin-bottom: 0.9rem;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.hero__line {
  font-family: var(--display);
  font-size: clamp(2rem, 5.8vw, 4.6rem);
  line-height: 1.05;
  color: var(--cream);
  -webkit-text-stroke: 1px #000;
  paint-order: stroke fill;
  text-shadow:
    0 0 24px rgba(31, 138, 70, 0.55),
    4px 5px 0 #000;
}

.scroll-cue {
  display: inline-block;
  margin-top: 1.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.2rem;
  animation: bounce 1.8s ease-in-out infinite;
}

/* CODE */
.code {
  padding: 8vh 6vw 10vh;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 138, 70, 0.22), transparent 46%),
    repeating-linear-gradient(90deg, #1a0e0c 0 58px, #231210 58px 60px);
  position: relative;
}

.code::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #07090c, transparent 12%, transparent 88%, #07090c);
  pointer-events: none;
}

.code__whisper,
.chapter {
  font-family: var(--tag);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.code__graffiti {
  position: relative;
  font-family: var(--graffiti);
  font-size: clamp(2.4rem, 9vw, 7.2rem);
  line-height: 1.02;
  display: grid;
  gap: 0.08em;
  color: #f4fff6;
  -webkit-text-stroke: 2px #041208;
  paint-order: stroke fill;
  text-shadow:
    0 0 20px rgba(31, 138, 70, 0.8),
    0 6px 0 #041208,
    0 0 60px rgba(245, 215, 66, 0.25);
}

.code__graffiti .gold {
  color: var(--gold);
  -webkit-text-stroke: 2px #2a1d00;
  text-shadow:
    0 0 22px rgba(245, 215, 66, 0.85),
    0 6px 0 #3a2a00;
}

.code__sub {
  position: relative;
  max-width: 640px;
  margin: 1.8rem auto 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--cream);
  font-weight: 500;
  line-height: 1.55;
}

/* STORY */
.story {
  padding: 8vh 6vw;
  background:
    linear-gradient(rgba(7, 9, 12, 0.82), rgba(7, 9, 12, 0.88)),
    url("assets/hood.jpg") center center / cover fixed;
}

.story__frame h2,
.crew__head h2,
.fox__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 2rem;
  max-width: 16ch;
}

.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.story__grid article,
.tag-card {
  background: rgba(8, 12, 10, 0.78);
  border: 1px solid rgba(245, 215, 66, 0.18);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 0 0 1px rgba(31, 138, 70, 0.15), 8px 10px 0 rgba(0, 0, 0, 0.45);
  --in-transform: rotate(var(--tilt, -0.6deg));
}

.story__grid article:nth-child(1),
.crew__cards article:nth-child(1) {
  transition-delay: 0.05s;
}

.story__grid article:nth-child(2),
.crew__cards article:nth-child(2) {
  transition-delay: 0.16s;
}

.story__grid article:nth-child(3),
.crew__cards article:nth-child(3) {
  transition-delay: 0.28s;
}

.story__grid article:nth-child(2) {
  --tilt: 0.8deg;
}

.story__grid article:nth-child(3) {
  --tilt: -0.3deg;
}

.story__grid h3,
.tag-card h3 {
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
}

.story__grid p,
.tag-card p,
.fox__copy p {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* CREW */
.crew {
  padding: 8vh 6vw 10vh;
  background: radial-gradient(ellipse at top, #12331c, #07090c 58%);
}

.crew__head h2 {
  max-width: 18ch;
}

.crew__art-wrap {
  position: relative;
  margin: 0.5rem 0 2.4rem;
}

.crew__mural {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  object-position: center center;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 40px rgba(245, 215, 66, 0.28),
    0 0 80px rgba(31, 138, 70, 0.25);
  background: #07090c;
}

.crew__glow {
  position: absolute;
  inset: auto 8% -30px;
  height: 50px;
  background: radial-gradient(ellipse, rgba(245, 215, 66, 0.45), transparent 70%);
  filter: blur(8px);
}

.crew__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.tag-card__spray {
  display: inline-block;
  font-family: var(--graffiti);
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 0 #000, 0 0 12px rgba(245, 215, 66, 0.5);
}

.tag-card--king {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(31, 138, 70, 0.25), rgba(8, 12, 10, 0.9));
  --in-transform: translateY(-10px) rotate(0.4deg) scale(1.03);
}

/* FOX */
.fox {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3vw;
  align-items: center;
  padding: 8vh 6vw;
  background: #07090c;
}

.fox__copy p + p {
  margin-top: 1rem;
}

.fox__stamp {
  margin-top: 1.4rem !important;
  font-family: var(--tag);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem !important;
}

.fox__art {
  position: relative;
}

.fox__halo {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(245, 215, 66, 0.28), rgba(31, 138, 70, 0.12) 40%, transparent 68%);
  animation: halo 4s ease-in-out infinite;
}

.fox__art img {
  position: relative;
  width: 100%;
  border: 3px solid #e8f7ea;
  outline: 8px solid rgba(31, 138, 70, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  transform: rotate(1.4deg);
  filter: saturate(1.1) contrast(1.05);
}

/* MANIFESTO */
.manifesto {
  padding: 12vh 6vw;
  background:
    linear-gradient(rgba(7, 9, 12, 0.55), rgba(7, 9, 12, 0.72)),
    url("assets/mascot.jpg") center 20% / cover;
  text-align: center;
}

.manifesto__inner {
  max-width: 920px;
  margin: 0 auto;
}

.manifesto blockquote {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.6vw, 2.6rem);
  line-height: 1.28;
  margin: 0 auto 2rem;
  text-shadow: 0 4px 0 #000, 0 0 28px rgba(31, 138, 70, 0.5);
}

.manifesto strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--gold);
}

.x-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.3rem;
  box-shadow: 8px 8px 0 var(--green);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.x-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--green);
}

/* FOOT */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 6vw 1.6rem;
  border-top: 2px solid rgba(245, 215, 66, 0.25);
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.foot__tick {
  color: var(--gold);
}

.foot a:hover {
  color: var(--gold);
}

/* REVEAL */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .reveal.is-in {
  opacity: 1;
  transform: var(--in-transform, none);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@keyframes sprayPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes titlePop {
  from {
    transform: scale(0.6) rotate(-8deg);
    opacity: 0;
    filter: blur(8px);
  }
  to {
    transform: scale(1) rotate(-1deg);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes sirenPulse {
  0%,
  49.9% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes sirenSweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200% 0;
  }
}

@keyframes introOut {
  to {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
  }
}

@keyframes muzzle {
  0% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
  }
}

@keyframes recoil {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-7px, 3px);
  }
  50% {
    transform: translate(6px, -4px);
  }
  75% {
    transform: translate(-4px, 5px);
  }
  100% {
    transform: translate(3px, -2px);
  }
}

@keyframes holePunch {
  0% {
    transform: translate(-50%, -50%) scale(0.15) rotate(var(--r, 0deg));
    opacity: 0;
    filter: brightness(4);
  }
  40% {
    opacity: 1;
    filter: brightness(2.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(var(--r, 0deg));
    opacity: 1;
    filter: brightness(1);
  }
}

@keyframes enterBlink {
  50% {
    opacity: 0.2;
  }
}

@keyframes halo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .nav__links a:not(.nav__x):not(.nav__mute) {
    display: none;
  }

  .story__grid,
  .crew__cards,
  .fox {
    grid-template-columns: 1fr;
  }

  .tag-card--king {
    --in-transform: none;
  }

  .story {
    background-attachment: scroll;
  }

  .hero__art img {
    object-position: center center;
  }

  .fox {
    padding-bottom: 6vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .intro {
    display: none;
  }

  .sirens {
    display: none;
  }

  .js .reveal,
  .js .reveal.is-in {
    opacity: 1;
    transform: var(--in-transform, none);
  }

  html {
    scroll-behavior: auto;
  }
}
