:root {
  --blue: #071f42;
  --blue-bright: #123f7b;
  --gold: #bd8a2f;
  --gold-light: #e0b968;
  --cream: #f4efe6;
  --warm-white: #fbf8f1;
  --emerald: #087059;
  --crimson: #b70f2e;
  --ink: #121212;
  --display: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--blue);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f4d58c);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 3vw;
  color: #fff;
  transition: background 300ms ease, padding 300ms ease, color 300ms ease;
}

.site-header.scrolled {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  color: var(--blue);
  background: rgba(250, 247, 240, 0.93);
  border-bottom: 1px solid rgba(7, 31, 66, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  width: 116px;
}

.brand img {
  width: 100%;
}

.site-header nav {
  display: flex;
  gap: clamp(1rem, 3vw, 3.4rem);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.4rem;
  height: 1px;
  background: currentColor;
  transition: right 220ms ease;
}

.site-header nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 17, 38, 0.84), rgba(3, 17, 38, 0.2) 55%, rgba(3, 17, 38, 0.68)),
    linear-gradient(0deg, rgba(3, 17, 38, 0.76), transparent 60%),
    radial-gradient(circle at 70% 25%, rgba(189, 138, 47, 0.22), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(91vw, 1180px);
  padding-top: 8vh;
  text-align: center;
  animation: heroIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.hero-logo {
  width: clamp(120px, 12vw, 180px);
  margin: 0 auto clamp(1.6rem, 4vh, 3.5rem);
}

.hero h1,
.section-heading h2,
.big-idea h2,
.apparel h2,
.experience-intro h2,
.yearbook h2,
.finale h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 10.6vw, 10.5rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.055em;
}

.hero h1 em,
.section-heading h2 em,
.big-idea h2 em,
.apparel h2 em,
.experience-intro h2 em,
.yearbook h2 em,
.finale h2 em {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.77em;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero p {
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  min-height: 58px;
  padding: 0 0.75rem 0 1.5rem;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-gold {
  color: var(--blue);
  background: var(--gold-light);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
}

.button-blue {
  color: #fff;
  background: var(--blue);
}

.button-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 1rem;
}

.hero-rail {
  position: absolute;
  z-index: 2;
  right: 2.5vw;
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.hero-rail i {
  width: 1px;
  height: 58px;
  background: var(--gold-light);
}

.cream-section {
  position: relative;
  background:
    radial-gradient(circle at 90% 20%, rgba(189, 138, 47, 0.08), transparent 23%),
    var(--cream);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-index::after {
  content: "";
  width: 64px;
  height: 1px;
  order: -1;
  background: currentColor;
}

.section-index span {
  color: var(--blue);
}

.section-index.light span {
  color: #fff;
}

.big-idea {
  min-height: 102vh;
  padding: 12vh 8vw;
  overflow: hidden;
}

.idea-copy {
  position: relative;
  z-index: 2;
  margin: 12vh auto 0;
  text-align: center;
}

.idea-copy > p {
  margin: 0 0 2rem;
  color: var(--blue);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.big-idea h2 {
  color: var(--blue);
}

.idea-support {
  position: relative;
  z-index: 2;
  width: min(620px, 82vw);
  margin: 4rem auto 0;
  color: #3f4652;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.65;
  text-align: center;
}

.idea-support strong {
  color: var(--blue);
}

.gold-orbit {
  position: absolute;
  border: 1px solid rgba(189, 138, 47, 0.55);
  border-radius: 50%;
}

.orbit-one {
  width: 45vw;
  height: 45vw;
  right: -31vw;
  bottom: -6vw;
}

.orbit-two {
  width: 36vw;
  height: 36vw;
  left: -28vw;
  top: 10vw;
}

.why {
  position: relative;
  height: 600vh;
  color: #fff;
  background:
    linear-gradient(rgba(5, 24, 54, 0.84), rgba(5, 24, 54, 0.92)),
    url("assets/fourpaths.png") center/cover fixed;
}

.why-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  align-content: center;
  padding: 7vh 8vw;
  overflow: hidden;
}

.why-sticky .section-index {
  position: absolute;
  top: 14vh;
}

.why-line,
.why-finale {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  opacity: 0;
  transform: translate(-50%, -42%);
  font-family: var(--display);
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-align: center;
  transition: opacity 500ms ease, transform 700ms ease;
}

.why-line em,
.why-finale strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 400;
}

.why-line.is-active,
.why-finale.is-active {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.paths {
  padding: 12vh 5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 6vw;
  margin: 8vh 2vw;
}

.section-heading h2 {
  color: var(--blue);
  font-size: clamp(4.4rem, 9vw, 9rem);
}

.section-heading p {
  margin: 0 0 0.8rem;
  color: #4a4a4a;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.paths-art {
  margin: 0 2vw 4rem;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 66, 0.12);
  box-shadow: 0 30px 80px rgba(7, 31, 66, 0.12);
}

.paths-art img {
  width: 100%;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 5rem;
  background: rgba(7, 31, 66, 0.15);
}

.path-card {
  position: relative;
  min-height: 470px;
  padding: 2rem;
  color: #fff;
  overflow: hidden;
  transition: transform 300ms ease, filter 300ms ease;
}

.path-card:hover {
  z-index: 2;
  transform: translateY(-12px);
  filter: saturate(1.2);
}

.path-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -110px;
  bottom: -110px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.08), 0 0 0 52px rgba(255, 255, 255, 0.05);
}

.vision { background: #1239aa; }
.legacy { background: #b77818; }
.liberation { background: var(--crimson); }
.impact { background: var(--emerald); }

.path-number {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.path-symbol {
  margin: 4rem 0 2rem;
  font-size: 2.6rem;
}

.path-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 3.6vw, 4.4rem);
  letter-spacing: -0.05em;
}

.path-card h4 {
  margin: 1.2rem 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
}

.path-card p {
  max-width: 230px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.apparel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 6vw;
  padding: 11vh 6vw;
  color: #fff;
  background:
    radial-gradient(circle at 20% 80%, rgba(189, 138, 47, 0.25), transparent 32%),
    var(--blue);
}

.apparel h2 {
  margin: 8vh 0 3rem;
  font-size: clamp(4.8rem, 8vw, 8.5rem);
}

.apparel-copy > p {
  max-width: 500px;
  color: #dfe5ed;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.7;
}

.apparel-visual {
  margin: 0;
  perspective: 1400px;
}

.apparel-visual img {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  transform: rotateY(-4deg);
  transition: transform 500ms ease;
}

.apparel-visual:hover img {
  transform: rotateY(0);
}

.apparel-visual figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience {
  padding: 12vh 6vw;
}

.experience-intro {
  margin: 10vh 0 16vh;
}

.experience-intro > p {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.experience-intro h2 {
  color: var(--blue);
  font-size: clamp(4.3rem, 8.2vw, 8.7rem);
}

.experience-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 6vw;
  margin: 0 0 16vh;
}

.experience-feature.reverse {
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
}

.experience-feature.reverse .scene-crop {
  order: 2;
}

.scene-crop {
  position: relative;
  width: 100%;
  aspect-ratio: 1.3;
  overflow: hidden;
  background-color: var(--blue);
  background-image: url("assets/amplifyboard.png");
  background-repeat: no-repeat;
  background-size: 300% 300%;
  box-shadow: 0 30px 70px rgba(7, 31, 66, 0.17);
}

.scene-4 { background-position: 0 50%; }
.scene-5 { background-position: 50% 50%; }
.scene-6 { background-position: 100% 50%; }
.scene-7 { background-position: 0 100%; }
.scene-9 { background-position: 100% 100%; }

.yard-photo,
.talks-photo {
  background-size: cover;
  background-position: center;
}

.yard-photo {
  background-image: url("assets/yardpic.png");
}

.talks-photo {
  background-image: url("assets/talkspic.png");
}

.wellness-photo,
.homecoming-photo,
.vision-photo {
  background-size: cover;
  background-repeat: no-repeat;
}

.wellness-photo {
  background-image: url("assets/safespace.png");
  background-position: center;
}

.homecoming-photo {
  background-image: url("assets/homecoming.png");
  background-position: center 44%;
}

.vision-photo {
  background-image: url("assets/vision.png");
  background-position: center;
}

.feature-copy span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin: 1.8rem 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(3.3rem, 5vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.feature-copy p {
  color: #50545b;
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.7;
}

.celebration {
  position: relative;
  min-height: 115vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.celebration-bg,
.finale-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  box-shadow: none;
}

.celebration-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 17, 39, 0.94), rgba(4, 17, 39, 0.2) 70%);
}

.celebration-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10vh 6vw;
}

.celebration h2 {
  margin: 9vh 0 3rem;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.83;
  letter-spacing: -0.055em;
}

.celebration h2 em {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.78em;
  font-weight: 400;
}

.celebration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.celebration-list span::before {
  content: "✦";
  margin-right: 1rem;
  color: var(--gold-light);
}

.yearbook {
  min-height: 110vh;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 7vw;
  padding: 13vh 6vw;
}

.yearbook h2 {
  margin: 8vh 0 3rem;
  color: var(--blue);
  font-size: clamp(4rem, 7vw, 7.7rem);
}

.yearbook-copy > p {
  max-width: 540px;
  margin-bottom: 3rem;
  color: #4c515a;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.7;
}

.portrait-wall {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(3, 190px);
  gap: 0.75rem;
}

.group-yearbook {
  position: relative;
  display: block;
  min-height: 570px;
  overflow: hidden;
  background: var(--blue);
  box-shadow: 0 30px 70px rgba(7, 31, 66, 0.17);
}

.group-yearbook img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.group-yearbook span {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: rgba(7, 31, 66, 0.88);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.group-yearbook.shuffled img {
  transform: scale(1.06);
}

.portrait {
  position: relative;
  overflow: hidden;
  background-image: url("assets/fourpaths.png");
  background-repeat: no-repeat;
  background-size: 200% 200%;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 450ms ease;
}

.portrait:hover {
  z-index: 2;
  transform: scale(1.035);
  filter: saturate(1.18);
}

.portrait span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  color: #fff;
  background: rgba(7, 31, 66, 0.84);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-a { grid-row: span 2; background-position: 0 0; }
.portrait-b { background-position: 100% 0; }
.portrait-c { background-position: 0 100%; }
.portrait-d { background-position: 100% 100%; }
.portrait-e { background-image: url("assets/amplifyboard.png"); background-size: 300% 300%; background-position: 50% 100%; }

.portrait-wall.shuffled .portrait-a { background-position: 100% 100%; }
.portrait-wall.shuffled .portrait-b { background-position: 0 100%; }
.portrait-wall.shuffled .portrait-c { background-position: 100% 0; }
.portrait-wall.shuffled .portrait-d { background-position: 0 0; }
.portrait-wall.shuffled .portrait-e { background-position: 0 50%; }

.finale {
  position: relative;
  min-height: 110vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.finale-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(4, 17, 39, 0.52), rgba(4, 17, 39, 0.84)),
    radial-gradient(circle at 50% 45%, transparent, rgba(4, 17, 39, 0.48));
}

.finale-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1250px);
  text-align: center;
}

.finale-index {
  justify-content: center;
  margin-bottom: 5vh;
}

.finale-content > img {
  width: 160px;
  margin: 0 auto 5vh;
}

.finale h2 {
  font-size: clamp(4rem, 9vw, 10rem);
}

.finale-content > p {
  margin: 3rem 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-style: italic;
}

.finale-tagline {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 5vw;
  color: #fff;
  background: #03142d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer img {
  width: 100px;
}

footer a {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .section-heading,
  .apparel,
  .yearbook {
    grid-template-columns: 1fr;
  }

  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apparel-copy > p {
    max-width: 720px;
  }

  .experience-feature,
  .experience-feature.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience-feature.reverse .scene-crop {
    order: 0;
  }

  .yearbook {
    gap: 8vh;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand {
    width: 92px;
  }

  .header-cta {
    font-size: 0.6rem;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4rem);
    line-height: 0.86;
    letter-spacing: -0.065em;
  }

  .hero p {
    margin: 1.5rem 0;
  }

  .hero-rail {
    display: none;
  }

  .big-idea,
  .paths,
  .experience {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-index::after {
    width: 34px;
  }

  .section-index span {
    font-size: 0.6rem;
  }

  .idea-copy {
    margin-top: 16vh;
  }

  .big-idea h2,
  .section-heading h2,
  .apparel h2,
  .experience-intro h2,
  .yearbook h2 {
    font-size: clamp(3.8rem, 17vw, 5.8rem);
  }

  .why-line,
  .why-finale {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
    margin: 7vh 0;
  }

  .paths-art {
    margin: 0 0 3rem;
    overflow-x: auto;
  }

  .paths-art img {
    min-width: 900px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 390px;
  }

  .apparel {
    padding: 11vh 1.25rem;
  }

  .apparel h2 {
    margin-top: 6vh;
  }

  .apparel-visual figcaption {
    gap: 1rem;
    overflow-x: auto;
  }

  .experience-intro {
    margin: 9vh 0 11vh;
  }

  .scene-crop {
    aspect-ratio: 0.95;
  }

  .celebration h2 {
    font-size: clamp(3.7rem, 16vw, 6rem);
  }

  .celebration-copy {
    padding: 8vh 1.25rem;
  }

  .yearbook {
    padding: 11vh 1.25rem;
  }

  .portrait-wall {
    grid-template-rows: repeat(3, 135px);
  }

  .group-yearbook,
  .group-yearbook img {
    min-height: 360px;
  }

  .finale h2 {
    font-size: clamp(3.6rem, 16vw, 6.2rem);
  }

  .finale-tagline {
    flex-direction: column;
    gap: 0.7rem;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
