:root {
  color-scheme: light;
  --super-red: #d80613;
  --super-red-dark: #a9000d;
  --hero-blue: #0879c9;
  --hero-blue-deep: #064b91;
  --sun-yellow: #ffd426;
  --ink: #10253e;
  --paper: #fffaf0;
  --sky: #a9ddf6;
  --white: #ffffff;
  --site-font-family: "Trebuchet MS", "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --site-corner-radius: 24px;
  font-family: var(--site-font-family);
  background-color: var(--hero-blue-deep);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
  background-color: var(--hero-blue-deep);
  background-image: linear-gradient(180deg, var(--super-red) 0 50%, var(--hero-blue-deep) 50% 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

body {
  min-width: 18rem;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgb(8 121 201 / 5%) 1px, transparent 1px) 0 0 / 2.5rem 2.5rem,
    var(--paper);
}

button,
video {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.announcement-bar {
  position: relative;
  z-index: 4;
  padding: 0.72rem max(1rem, env(safe-area-inset-right)) 0.72rem max(1rem, env(safe-area-inset-left));
  border-bottom: 0.32rem solid var(--sun-yellow);
  background: var(--super-red);
  color: var(--white);
  box-shadow: 0 0.35rem 0 rgb(6 75 145 / 90%);
}

.announcement-bar p {
  margin: 0;
  text-align: center;
  font-size: clamp(0.7rem, 1.7vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.announcement-bar span {
  display: inline-block;
  margin: 0 0.55rem;
  color: var(--sun-yellow);
}

.site-header {
  position: relative;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgb(255 255 255 / 95%) 0 2.6rem, transparent 2.7rem),
    radial-gradient(circle at 89% 20%, rgb(255 255 255 / 90%) 0 3.7rem, transparent 3.8rem),
    radial-gradient(circle at 95% 24%, rgb(255 255 255 / 86%) 0 2.8rem, transparent 2.9rem),
    linear-gradient(180deg, #55b8eb 0%, var(--sky) 56%, #ebf8ff 100%);
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% 0;
  height: 76%;
  opacity: 0.18;
  background:
    linear-gradient(104deg, transparent 0 44%, var(--hero-blue-deep) 44.2% 46%, transparent 46.2%) 0 0 / 8rem 100%,
    repeating-linear-gradient(90deg, var(--hero-blue-deep) 0 1.2rem, transparent 1.2rem 3.4rem);
  clip-path: polygon(0 72%, 8% 56%, 18% 69%, 27% 38%, 37% 64%, 46% 49%, 59% 67%, 72% 30%, 83% 58%, 91% 43%, 100% 64%, 100% 100%, 0 100%);
}

.site-header::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -5.5rem;
  right: -3rem;
  width: clamp(13rem, 25vw, 22rem);
  aspect-ratio: 1;
  border: clamp(0.7rem, 1.5vw, 1.25rem) solid rgb(255 212 38 / 32%);
  border-radius: 50%;
  box-shadow: 0 0 0 clamp(1.1rem, 2.6vw, 2.4rem) rgb(216 6 19 / 10%);
}

.header-inner {
  width: min(78rem, calc(100% - 2rem));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.6rem) 0 clamp(2.8rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.8rem);
}

.header-inner.has-no-logo {
  grid-template-columns: minmax(0, 1fr);
}

.museum-logo {
  width: min(100%, 15rem);
  height: auto;
  justify-self: center;
  filter: drop-shadow(0 0.65rem 0.55rem rgb(6 54 98 / 22%));
  transform: rotate(-1.5deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  max-width: 38rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.55rem;
  color: var(--super-red);
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.2rem, 5.6vw, 5.2rem);
  line-height: 0.75;
  letter-spacing: 0.005em;
  text-shadow:
    0.075em 0 var(--hero-blue-deep),
    0.075em 0.065em 0 var(--sun-yellow),
    0.11em 0.105em 0 var(--super-red),
    0 0.16em 0.3em rgb(5 54 99 / 18%);
}

h1 span {
  display: inline-block;
  margin-top: 0.18em;
  color: var(--sun-yellow);
  font-size: 0.82em;
  transform: rotate(-2deg);
  text-shadow:
    0.075em 0 var(--hero-blue-deep),
    0.075em 0.07em 0 var(--super-red),
    0 0.16em 0.3em rgb(5 54 99 / 18%);
}

.hero-lede {
  max-width: 31rem;
  margin: 0.8rem 0 0;
  color: #12385a;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 760;
  line-height: 1.55;
}

.hero-button {
  min-height: 3.35rem;
  padding: 0.9rem 1.2rem 0.9rem 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0.16rem solid var(--super-red-dark);
  border-radius: 0.35rem;
  background: var(--super-red);
  box-shadow: 0.42rem 0.42rem 0 var(--sun-yellow), 0.58rem 0.58rem 0 var(--hero-blue-deep);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.hero-button span {
  font-size: 1.25rem;
  line-height: 0;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: #ef111f;
  box-shadow: 0.25rem 0.25rem 0 var(--sun-yellow), 0.38rem 0.38rem 0 var(--hero-blue-deep);
  outline: 0.2rem solid var(--white);
  outline-offset: 0.18rem;
  transform: translate(0.18rem, 0.18rem);
}

.cloud {
  position: absolute;
  z-index: -1;
  width: 9rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 72%);
  filter: drop-shadow(0 0.5rem 0.5rem rgb(6 75 145 / 7%));
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  left: 1.2rem;
  width: 4rem;
  height: 4rem;
}

.cloud::after {
  right: 1rem;
  width: 5rem;
  height: 5rem;
}

.cloud-one {
  top: 32%;
  left: -2rem;
  transform: scale(1.15);
}

.cloud-two {
  right: 28%;
  bottom: 15%;
  transform: scale(0.72);
}

.storefront-trim {
  position: absolute;
  inset: auto 0 0;
  height: clamp(1.5rem, 2.5vw, 2.1rem);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 0.3rem solid var(--hero-blue-deep);
  border-bottom: 0.35rem solid var(--sun-yellow);
  background: var(--super-red);
}

.storefront-trim i:nth-child(odd) {
  background: var(--sun-yellow);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
}

.storefront-trim i:nth-child(even) {
  background: var(--super-red);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
}

main {
  overflow: hidden;
}

.live-section {
  width: min(78rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.section-heading {
  margin-bottom: clamp(1.35rem, 3vw, 2.25rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
}

.section-heading > div {
  max-width: 49rem;
}

.section-heading h2,
.hello-card h2 {
  margin: 0;
  color: var(--hero-blue-deep);
  font-size: clamp(2.15rem, 4.5vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
}

.player-card {
  position: relative;
  padding: clamp(0.55rem, 1.4vw, 0.9rem);
  border: clamp(0.4rem, 0.8vw, 0.65rem) solid var(--super-red);
  border-radius: min(var(--site-corner-radius), 1.5rem);
  background: var(--sun-yellow);
  box-shadow:
    0.9rem 0.9rem 0 var(--hero-blue-deep),
    0 1.8rem 4rem rgb(9 50 85 / 24%);
}

.player-marquee {
  position: absolute;
  z-index: 3;
  top: -1.55rem;
  left: clamp(1rem, 3vw, 2.5rem);
  min-height: 2.75rem;
  padding: 0.45rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 0.2rem solid var(--white);
  border-radius: 0.35rem;
  background: var(--sun-yellow);
  box-shadow: 0.22rem 0.22rem 0 var(--ink);
  color: var(--ink);
  transition: color 140ms ease, background-color 140ms ease;
}

.player-marquee span {
  margin-right: 0.2rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.player-marquee i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--hero-blue-deep);
  box-shadow: 0 0 0 0.08rem rgb(16 37 62 / 35%);
}

.player-marquee.is-live {
  background: var(--super-red);
  color: var(--white);
}

.player-marquee.is-live i {
  background: var(--sun-yellow);
}

.player-marquee.is-catching-up,
.player-marquee.is-reconnecting {
  background: var(--hero-blue-deep);
  color: var(--white);
}

.player-marquee.is-catching-up i,
.player-marquee.is-reconnecting i {
  background: var(--sun-yellow);
}

.video-frame {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 0.28rem solid var(--ink);
  border-radius: 0.28rem;
  background: #07111c;
}

video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #07111c;
  pointer-events: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.player-actions {
  min-height: 5rem;
  padding: 0.9rem 0.3rem 0.15rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: var(--ink);
}

.now-showing {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.now-glyph {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 0.15rem solid var(--ink);
  background: var(--super-red);
  color: var(--sun-yellow);
  font-family: Impact, Haettenschweiler, sans-serif;
  font-size: 1.45rem;
  transform: rotate(-4deg);
  clip-path: polygon(50% 0, 100% 28%, 84% 78%, 50% 100%, 16% 78%, 0 28%);
}

.now-showing p {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.now-showing strong {
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.now-showing p span {
  color: #3e5871;
  font-size: 0.76rem;
  font-weight: 700;
}

.camera-note {
  max-width: 55rem;
  margin: 2.25rem auto 0;
  color: #52667a;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
}

.hello-strip {
  position: relative;
  min-height: 27rem;
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - 78rem) / 2));
  display: grid;
  grid-template-columns: minmax(24rem, 1.15fr) minmax(17rem, 0.85fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  overflow: hidden;
  border-top: 0.65rem solid var(--sun-yellow);
  background:
    radial-gradient(circle at 80% 16%, rgb(255 255 255 / 14%) 0 5rem, transparent 5.1rem),
    var(--super-red);
  color: var(--white);
}

.hello-strip::before {
  content: "";
  position: absolute;
  inset: 1.2rem 0 auto;
  height: 0.55rem;
  background: repeating-linear-gradient(90deg, var(--sun-yellow) 0 2.3rem, transparent 2.3rem 3rem);
  opacity: 0.95;
}

.hello-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.hello-card {
  position: relative;
  max-width: 38rem;
}

.hello-card .section-kicker {
  color: var(--sun-yellow);
}

.hello-card h2 {
  color: var(--white);
  text-shadow: 0.075em 0.075em 0 var(--hero-blue-deep);
}

.hello-card > p:last-child {
  max-width: 33rem;
  margin: 1.5rem 0 0;
  color: #fff1e4;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  font-weight: 700;
  line-height: 1.6;
}

.sponsor-card {
  width: min(100%, 42rem);
  min-height: 10rem;
  padding: clamp(0.8rem, 2vw, 1.15rem);
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.5rem);
  border: 0.25rem solid var(--ink);
  border-radius: min(var(--site-corner-radius), 1.25rem);
  background: var(--paper);
  box-shadow: 0.5rem 0.5rem 0 var(--sun-yellow), 0.72rem 0.72rem 0 var(--hero-blue-deep);
  color: var(--ink);
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
  box-shadow: 0.3rem 0.3rem 0 var(--sun-yellow), 0.48rem 0.48rem 0 var(--hero-blue-deep);
  outline: 0.2rem solid var(--white);
  outline-offset: 0.18rem;
  transform: translate(0.2rem, 0.2rem);
}

.sponsor-card.has-no-logo {
  grid-template-columns: minmax(0, 1fr);
}

.sponsor-logo-wrap {
  min-height: 7.25rem;
  padding: 0.5rem;
  display: grid;
  place-items: center;
  border: 0.18rem solid var(--hero-blue-deep);
  border-radius: 0.35rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 92%), rgb(169 221 246 / 38%)),
    var(--white);
}

.sponsor-logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.sponsor-copy {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
}

.sponsor-eyebrow {
  color: var(--super-red);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sponsor-copy strong {
  color: var(--hero-blue-deep);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sponsor-copy > span:not(.sponsor-eyebrow, .sponsor-cta) {
  color: #3e5871;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.sponsor-cta {
  margin-top: 0.25rem;
  color: var(--super-red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-thickness: 0.12rem;
  text-underline-offset: 0.24rem;
  text-transform: uppercase;
}

.sponsor-cta b {
  color: var(--hero-blue-deep);
  font-size: 1.05rem;
}

.city-blocks {
  position: relative;
  z-index: 1;
  min-height: 15rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  filter: drop-shadow(1rem 1rem 0 rgb(87 0 8 / 30%));
}

.building {
  position: relative;
  width: 31%;
  min-width: 6.8rem;
  border: 0.38rem solid var(--ink);
  border-bottom: 0;
}

.building::before {
  content: "";
  position: absolute;
  left: -0.38rem;
  right: -0.38rem;
  top: -1.05rem;
  height: 0.8rem;
  border: 0.35rem solid var(--ink);
  background: var(--sun-yellow);
}

.building i {
  width: 1.8rem;
  height: 2.4rem;
  margin: 1.55rem 0.32rem 0;
  display: inline-block;
  border: 0.26rem solid var(--ink);
  background: #c9efff;
  box-shadow: inset 0 -0.55rem 0 #45a9df;
}

.building-red {
  height: 11rem;
  background: #ee3c32;
}

.building-yellow {
  z-index: 2;
  height: 15rem;
  background: var(--sun-yellow);
}

.building-blue {
  height: 12.8rem;
  background: #168fd1;
}

.site-footer {
  padding: 0 max(1rem, env(safe-area-inset-right)) max(0.08rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  border-top: 0.2rem solid var(--hero-blue);
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  width: min(78rem, 100%);
  min-height: 4rem;
  margin: 0 auto;
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.footer-inner.has-no-lockup {
  justify-content: flex-end;
}

.hosted-lockup {
  flex: 0 0 auto;
  display: block;
  padding: 0.58rem 0.48rem;
  text-decoration: none;
}

.hosted-service-lockup {
  width: clamp(8.25rem, 18vw, 10.25rem);
  height: auto;
  display: block;
}

.hosted-lockup:focus-visible,
.footer-links a:focus-visible {
  border-radius: 0.2rem;
  outline: 0.15rem solid var(--sun-yellow);
  outline-offset: 0.2rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem clamp(0.75rem, 2vw, 1.35rem);
}

.footer-links a {
  color: #d6e0e9;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-underline-offset: 0.25rem;
}

.footer-links a:hover {
  color: var(--sun-yellow);
}

@media (max-width: 51rem) {
  .site-header {
    min-height: auto;
  }

  .header-inner {
    min-height: 0;
    grid-template-columns: minmax(7.5rem, 10.5rem) minmax(0, 1fr);
    justify-items: stretch;
    gap: clamp(0.8rem, 3vw, 1.5rem);
    text-align: left;
  }

  .header-inner.has-no-logo {
    grid-template-columns: minmax(0, 1fr);
  }

  .museum-logo {
    width: 100%;
    margin: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-lede {
    margin-right: 0;
    margin-left: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hello-strip {
    grid-template-columns: 1fr;
  }

  .city-blocks {
    width: min(34rem, 100%);
    justify-self: center;
  }
}

@media (max-width: 38rem) {
  .announcement-bar span {
    margin: 0 0.2rem;
  }

  .header-inner {
    width: min(100% - 1.25rem, 78rem);
    min-height: 0;
    grid-template-columns: minmax(6.8rem, 8.5rem) minmax(0, 1fr);
    padding: 0.75rem 0 2.25rem;
  }

  .header-inner.has-no-logo,
  .sponsor-card.has-no-logo {
    grid-template-columns: minmax(0, 1fr);
  }

  h1 {
    font-size: clamp(1.8rem, 7.3vw, 2.5rem);
  }

  .eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.61rem;
    letter-spacing: 0.1em;
  }

  .hero-lede {
    display: none;
  }

  .live-section {
    width: min(100% - 1.15rem, 78rem);
  }

  .player-card {
    box-shadow: 0.45rem 0.45rem 0 var(--hero-blue-deep), 0 1.2rem 2.5rem rgb(9 50 85 / 20%);
  }

  .video-frame {
    min-height: 10.5rem;
  }

  .player-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .now-showing {
    padding: 0.25rem 0.2rem;
  }

  .hello-strip {
    min-height: 0;
    padding: 3.8rem 1rem 1.2rem;
    gap: 1.35rem;
  }

  .hello-card > p:last-child {
    margin-top: 1rem;
  }

  .hello-content {
    gap: 1.4rem;
  }

  .sponsor-card {
    min-height: 0;
    padding: 0.75rem;
    grid-template-columns: minmax(6.2rem, 7.25rem) minmax(0, 1fr);
    gap: 0.75rem;
    box-shadow: 0.35rem 0.35rem 0 var(--sun-yellow), 0.52rem 0.52rem 0 var(--hero-blue-deep);
  }

  .sponsor-logo-wrap {
    min-height: 5.6rem;
    padding: 0.38rem;
  }

  .sponsor-copy strong {
    font-size: clamp(1.25rem, 5.8vw, 1.65rem);
  }

  .sponsor-copy > span:not(.sponsor-eyebrow, .sponsor-cta) {
    font-size: 0.73rem;
    line-height: 1.35;
  }

  .sponsor-eyebrow,
  .sponsor-cta {
    font-size: 0.61rem;
  }

  .city-blocks {
    width: min(18rem, 82vw);
    min-height: 7rem;
    filter: drop-shadow(0.5rem 0.5rem 0 rgb(87 0 8 / 30%));
  }

  .building {
    min-width: 0;
    border-width: 0.25rem;
  }

  .building::before {
    left: -0.25rem;
    right: -0.25rem;
    top: -0.7rem;
    height: 0.5rem;
    border-width: 0.22rem;
  }

  .building i {
    width: 0.82rem;
    height: 1.35rem;
    margin: 0.8rem 0.1rem 0;
    border-width: 0.16rem;
    box-shadow: inset 0 -0.3rem 0 #45a9df;
  }

  .building-red {
    height: 5.25rem;
  }

  .building-yellow {
    height: 7rem;
  }

  .building-blue {
    height: 6rem;
  }

  .footer-inner {
    min-height: 4.25rem;
    padding: 0.18rem 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.25rem;
  }

  .hosted-lockup {
    padding: 0.55rem 0.42rem;
  }

  .hosted-service-lockup {
    width: clamp(7.2rem, 34vw, 8.2rem);
  }

  .footer-links {
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    gap: 0.4rem;
  }

  .footer-links a {
    font-size: 0.58rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
