:root {
  color-scheme: dark;
  --bg: #000;
  --ink: #f6f3ee;
  --muted: rgba(246, 243, 238, 0.62);
  --soft: rgba(246, 243, 238, 0.1);
  --panel: rgba(5, 5, 5, 0.9);
  --panel-solid: #050505;
  --blood: #8f1022;
  --blood-hot: #c72b3f;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--blood);
  color: #fff;
}

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

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

.video-shell {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #000;
}

.video-shell::before,
.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-shell::before {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 44%, rgba(143, 16, 34, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.82));
}

.video-shell::after {
  z-index: 2;
  background: rgba(0, 0, 0, 0.38);
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.74);
  transform: scale(1.02);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 4vw, 42px);
  width: 100%;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 46px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(246, 243, 238, 0.05);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header[data-scrolled] {
  background: rgba(0, 0, 0, 0.94);
  border-color: rgba(246, 243, 238, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(54px, 6vw, 82px);
  min-width: 54px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 5vw, 58px);
  color: var(--muted);
  font-size: clamp(0.66rem, 0.9vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a,
.header-cta,
.genius-link,
.instagram-link,
.platform-link,
.text-link,
.merch-card button {
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 clamp(16px, 2vw, 24px);
  background: rgba(246, 243, 238, 0.08);
  border: 1px solid rgba(246, 243, 238, 0.08);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-cta:hover,
.genius-link:hover,
.platform-link:hover,
.merch-card button:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.platform-link:hover,
.merch-card button:hover {
  background: rgba(246, 243, 238, 0.14);
  border-color: rgba(246, 243, 238, 0.18);
}

.section {
  position: relative;
  width: min(100% - clamp(28px, 6vw, 92px), var(--max));
  margin: 0 auto;
}

main {
  position: relative;
  z-index: 0;
}

.hero {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 96px 0 56px;
  overflow: hidden;
}

.hero-logo-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
}

.hero-logo {
  display: block;
  width: clamp(150px, 20vw, 260px);
  max-height: min(42svh, 280px);
  height: auto;
  object-fit: contain;
  animation: logo-glimmer 6s linear infinite, logo-rough-shake 2.4s ease-in-out infinite;
  transform-origin: 50% 52%;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.34))
    drop-shadow(0 0 32px rgba(255, 255, 255, 0.24))
    drop-shadow(0 24px 56px rgba(0, 0, 0, 0.76));
}

@keyframes logo-glimmer {
  0% {
    opacity: 0.86;
    filter:
      drop-shadow(0 0 10px rgba(255, 255, 255, 0.28))
      drop-shadow(0 0 28px rgba(255, 255, 255, 0.2))
      drop-shadow(0 24px 56px rgba(0, 0, 0, 0.76));
  }

  42% {
    opacity: 1;
    filter:
      drop-shadow(0 0 16px rgba(255, 255, 255, 0.5))
      drop-shadow(0 0 46px rgba(255, 255, 255, 0.34))
      drop-shadow(0 0 78px rgba(255, 255, 255, 0.16))
      drop-shadow(0 24px 56px rgba(0, 0, 0, 0.78));
  }

  49%,
  55%,
  61%,
  67% {
    opacity: 1;
    filter:
      drop-shadow(0 0 24px rgba(255, 255, 255, 0.82))
      drop-shadow(0 0 66px rgba(255, 255, 255, 0.58))
      drop-shadow(0 0 110px rgba(255, 255, 255, 0.32))
      drop-shadow(0 24px 56px rgba(0, 0, 0, 0.78));
  }

  52%,
  58%,
  64%,
  70% {
    opacity: 0.68;
    filter:
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.16))
      drop-shadow(0 0 14px rgba(255, 255, 255, 0.1))
      drop-shadow(0 24px 56px rgba(0, 0, 0, 0.76));
  }

  78% {
    opacity: 0.94;
    filter:
      drop-shadow(0 0 13px rgba(255, 255, 255, 0.38))
      drop-shadow(0 0 34px rgba(255, 255, 255, 0.24))
      drop-shadow(0 24px 56px rgba(0, 0, 0, 0.76));
  }

  100% {
    opacity: 0.86;
    filter:
      drop-shadow(0 0 10px rgba(255, 255, 255, 0.28))
      drop-shadow(0 0 28px rgba(255, 255, 255, 0.2))
      drop-shadow(0 24px 56px rgba(0, 0, 0, 0.76));
  }
}

@keyframes logo-rough-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  14% {
    transform: translate3d(-1.2px, 0.7px, 0) rotate(-0.35deg);
  }

  28% {
    transform: translate3d(1.5px, -0.8px, 0) rotate(0.42deg);
  }

  43% {
    transform: translate3d(-0.8px, -0.5px, 0) rotate(-0.22deg);
  }

  57% {
    transform: translate3d(1px, 0.6px, 0) rotate(0.28deg);
  }

  72% {
    transform: translate3d(-1.4px, 0.2px, 0) rotate(-0.38deg);
  }

  86% {
    transform: translate3d(0.7px, -0.4px, 0) rotate(0.18deg);
  }
}

.platform-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 150px;
  min-height: 50px;
  padding: 0 16px;
  background: rgba(7, 7, 7, 0.74);
  border: 1px solid rgba(246, 243, 238, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-link-content {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.platform-logo {
  display: inline-block;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  background: var(--platform-color);
  opacity: 0.92;
  -webkit-mask: var(--platform-icon) center / contain no-repeat;
  mask: var(--platform-icon) center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(246, 243, 238, 0.12));
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.platform-logo-apple-music {
  --platform-icon: url("assets/platforms/apple-music.svg");
  --platform-color: #f6f3ee;
}

.platform-logo-spotify {
  --platform-icon: url("assets/platforms/spotify.svg");
  --platform-color: #1ed760;
}

.platform-logo-youtube {
  --platform-icon: url("assets/platforms/youtube.svg");
  --platform-color: #ff0033;
}

.platform-link:hover .platform-logo {
  opacity: 1;
  transform: scale(1.12);
  filter: drop-shadow(0 0 12px currentColor);
}

.platform-link-spotify:hover {
  border-color: rgba(30, 215, 96, 0.34);
}

.platform-link-youtube:hover {
  border-color: rgba(255, 0, 51, 0.34);
}

.platform-link-apple-music:hover {
  border-color: rgba(246, 243, 238, 0.22);
}

.platform-link::after {
  content: "\2197";
  font-size: 0.78rem;
  opacity: 0.65;
}

.lower-site {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.lower-video-shell {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.lower-video-shell::before,
.lower-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.lower-video-shell::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(176, 123, 255, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.56));
}

.lower-video-shell::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.44));
}

.lower-bg-video {
  opacity: 1;
  filter: saturate(1.1) contrast(1.12) brightness(1.22);
  transform: scale(1.04);
}

.lower-site .page-band,
.lower-site .site-footer {
  position: relative;
  z-index: 1;
}

.page-band {
  width: 100%;
  max-width: none;
  padding: clamp(80px, 10vw, 134px) clamp(24px, 5vw, 72px);
  background: transparent;
  border-top: 0;
}

.page-band > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.music-section {
  padding-top: clamp(90px, 11vw, 146px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.eyebrow,
.label,
.panel-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2,
h3 {
  font-family: Cinzel, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  line-height: 0.86;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 0.96;
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

.music-column {
  min-width: 0;
}

.announcement,
.merch-card {
  background: var(--panel);
  border: 1px solid rgba(246, 243, 238, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.announcement p:last-child,
.merch-card p {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.2vw, 1.06rem);
  line-height: 1.65;
}

.social-stack {
  align-self: start;
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-top: 0;
}

.social-section-heading {
  margin-bottom: clamp(14px, 2.4vw, 26px);
}

.social-title {
  font-size: clamp(2.8rem, 7vw, 6.2rem);
}

.instagram-link,
.genius-link {
  display: grid;
  grid-template-columns: auto minmax(0, auto) auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 7px;
  width: min(100%, 520px);
  max-width: 100%;
  min-height: 86px;
  padding: 14px 18px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 0.9;
}

.instagram-link {
  border: 1px solid rgba(167, 96, 255, 0.12);
  background: rgba(126, 67, 255, 0.025);
  color: #bd99ef;
  text-shadow: 0 0 10px rgba(167, 96, 255, 0.12), 0 16px 44px rgba(0, 0, 0, 0.72);
}

.social-icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
  mask: var(--social-icon) center / contain no-repeat;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.social-icon-instagram {
  --social-icon: url("assets/platforms/instagram.svg");
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  opacity: 0.84;
  filter: drop-shadow(0 0 8px rgba(202, 161, 255, 0.18));
}

.social-icon-genius {
  --social-icon: url("assets/platforms/genius.svg");
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  opacity: 0.86;
  filter: drop-shadow(0 0 10px rgba(199, 43, 63, 0.2));
}

.social-label {
  grid-column: 2;
  color: rgba(246, 243, 238, 0.54);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.social-handle {
  grid-column: 2;
}

.instagram-link::after,
.genius-link::after {
  content: "\2197";
  grid-column: 3;
  grid-row: 1 / span 2;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0;
  opacity: 0.58;
}

.instagram-link:hover {
  border-color: rgba(202, 161, 255, 0.38);
  background: linear-gradient(90deg, rgba(117, 65, 255, 0.12), rgba(202, 161, 255, 0.04));
  color: #d8c3ff;
  animation: instagram-shake 780ms ease-in-out infinite;
  box-shadow: 0 0 18px rgba(145, 91, 255, 0.14);
  text-shadow: 0 0 16px rgba(190, 142, 255, 0.22), 0 16px 44px rgba(0, 0, 0, 0.72);
}

.instagram-link:hover .social-icon-instagram {
  opacity: 1;
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 0 14px rgba(202, 161, 255, 0.32));
}

.genius-link {
  border: 1px solid rgba(199, 43, 63, 0.16);
  background: rgba(143, 16, 34, 0.08);
  color: rgba(246, 243, 238, 0.78);
  text-shadow: 0 0 12px rgba(199, 43, 63, 0.16), 0 16px 44px rgba(0, 0, 0, 0.72);
}

.genius-link:hover {
  background: linear-gradient(90deg, rgba(199, 43, 63, 0.18), rgba(246, 243, 238, 0.04));
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow: 0 0 22px rgba(143, 16, 34, 0.18);
}

.genius-link:hover .social-icon-genius {
  opacity: 1;
  transform: scale(1.12);
  filter: drop-shadow(0 0 16px rgba(199, 43, 63, 0.42));
}

@keyframes instagram-shake {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  20% {
    transform: translate(-1.2px, 0.4px) rotate(-0.28deg);
  }

  40% {
    transform: translate(1.2px, -0.4px) rotate(0.28deg);
  }

  60% {
    transform: translate(-0.8px, -0.3px) rotate(0.18deg);
  }

  80% {
    transform: translate(0.8px, 0.3px) rotate(-0.18deg);
  }
}

.platform-panel {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  padding: clamp(10px, 2vw, 20px) 0;
  margin-top: -42px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.platform-panel .panel-kicker {
  text-align: center;
}

.music-profile {
  --pfp-size: clamp(118px, 14vw, 172px);
  position: relative;
  align-self: center;
  display: grid;
  place-items: center;
  width: var(--pfp-size);
  height: var(--pfp-size);
  margin-bottom: 16px;
  overflow: visible;
  isolation: isolate;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 0 38px rgba(255, 255, 255, 0.14), 0 18px 48px rgba(0, 0, 0, 0.62);
}

.music-profile::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(143, 16, 34, 0.18) 46%, transparent 72%);
  filter: blur(2px);
  opacity: 0.72;
}

.music-profile::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 132%;
  height: 132%;
  border-radius: inherit;
  background: url("assets/profile/smmi-saw.png") center / contain no-repeat;
  opacity: 0.94;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.34)) drop-shadow(0 0 34px rgba(176, 123, 255, 0.18));
  pointer-events: none;
  animation: razor-saw-spin 7.5s linear infinite;
  transition: filter 180ms ease, opacity 180ms ease;
  will-change: transform;
}

.music-profile:hover::after,
.music-profile:focus-within::after {
  animation-duration: 0.85s;
  opacity: 1;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.52)) drop-shadow(0 0 46px rgba(176, 123, 255, 0.3));
}

.music-pfp {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  clip-path: circle(50% at 50% 50%);
  object-fit: cover;
  object-position: center;
  animation: pfp-smooth-shake 3.2s ease-in-out infinite;
}

@keyframes razor-saw-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pfp-smooth-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  25% {
    transform: translate3d(-1px, 0.5px, 0) rotate(-0.35deg);
  }

  50% {
    transform: translate3d(1px, -0.5px, 0) rotate(0.35deg);
  }

  75% {
    transform: translate3d(-0.5px, -0.5px, 0) rotate(-0.18deg);
  }
}

.platform-stack {
  flex-direction: row;
  justify-content: center;
  width: min(100%, 680px);
  align-self: center;
}

.platform-stack .platform-link {
  flex: 1 1 180px;
  width: auto;
  min-width: 170px;
}

.announcement {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 28px);
  max-width: 700px;
  padding: clamp(24px, 4vw, 42px);
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 16px;
  border-radius: 50%;
  background: var(--blood-hot);
  box-shadow: 0 0 0 10px rgba(143, 16, 34, 0.14), 0 0 38px rgba(143, 16, 34, 0.82);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.merch-card {
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: clamp(22px, 3vw, 34px);
}

.merch-card span {
  display: inline-flex;
  margin-bottom: auto;
  color: var(--muted);
  font-family: Cinzel, Georgia, serif;
  font-size: 1rem;
}

.merch-card h3 {
  margin-top: 74px;
  font-size: clamp(1.42rem, 2.3vw, 2.12rem);
}

.merch-card button {
  cursor: pointer;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 1px solid rgba(246, 243, 238, 0.08);
  background: rgba(246, 243, 238, 0.08);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - clamp(24px, 5vw, 72px), var(--max));
  margin: 0 auto;
  padding: 34px 0 42px;
  background: transparent;
  color: rgba(246, 243, 238, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
}

.footer-links a {
  color: rgba(246, 243, 238, 0.42);
  transition: color 180ms ease;
}

.corner-logo {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(18px, 2.4vw, 36px);
  z-index: 30;
  width: clamp(28px, 3vw, 42px);
  height: auto;
  opacity: 0.62;
  pointer-events: none;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.72));
}

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

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    width: 100%;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    padding-top: 142px;
  }

  .music-grid,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .social-stack {
    align-self: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 92px;
    padding: 14px 16px;
    gap: 14px;
  }

  .brand {
    width: 52px;
    min-width: 52px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.68rem;
  }

  .section {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: 100svh;
    padding: 142px 0 54px;
  }

  .platform-stack .platform-link {
    width: 100%;
  }

  .platform-stack {
    flex-direction: column;
    width: min(100%, 360px);
  }

  .platform-link {
    min-width: 0;
  }

  .hero-logo {
    width: min(46vw, 190px);
    max-height: 32svh;
  }

  .corner-logo {
    width: 34px;
    opacity: 0.64;
  }

  .page-band {
    padding: 74px 18px;
  }

  h2 {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }

  h3 {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }

  .announcement,
  .merch-card {
    padding: 28px;
  }

  .announcement {
    display: block;
  }

  .status-dot {
    margin-bottom: 30px;
  }

  .merch-card {
    min-height: 280px;
  }

  .merch-card h3 {
    margin-top: 58px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0 46px;
    font-size: 0.62rem;
  }

  .footer-links {
    gap: 14px;
  }
}

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