:root {
  --black: #080705;
  --black-soft: #12100d;
  --ink: #201b15;
  --cream: #fbf5ec;
  --cream-deep: #eee1cf;
  --beige: #c9b28f;
  --champagne: #d9b86c;
  --gold: #b58a3a;
  --gold-light: #f0d591;
  --muted: #776b5f;
  --glass: rgba(255, 250, 242, 0.12);
  --line: rgba(181, 138, 58, 0.35);
  --shadow: 0 28px 90px rgba(8, 7, 5, 0.32);
  --leopard-fabric: url("assets/images/leopard.png");
  --leopard-muted:
    radial-gradient(ellipse at 18% 24%, rgba(8, 7, 5, 0.24) 0 5px, transparent 6px),
    radial-gradient(ellipse at 24% 28%, transparent 0 8px, rgba(181, 138, 58, 0.22) 9px 12px, transparent 13px),
    radial-gradient(ellipse at 72% 18%, rgba(8, 7, 5, 0.2) 0 4px, transparent 5px),
    radial-gradient(ellipse at 76% 22%, transparent 0 7px, rgba(217, 184, 108, 0.2) 8px 11px, transparent 12px),
    radial-gradient(ellipse at 43% 68%, rgba(8, 7, 5, 0.18) 0 5px, transparent 6px),
    radial-gradient(ellipse at 48% 72%, transparent 0 8px, rgba(181, 138, 58, 0.2) 9px 12px, transparent 13px),
    radial-gradient(ellipse at 88% 78%, rgba(8, 7, 5, 0.18) 0 4px, transparent 5px),
    radial-gradient(ellipse at 8% 82%, rgba(181, 138, 58, 0.18) 0 5px, transparent 6px);
  --display: "Bodoni 72", "Didot", "Bodoni MT", "Libre Baskerville", Georgia, serif;
  --body: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--black);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(251, 245, 236, 0.92), rgba(251, 245, 236, 0.92)),
    var(--leopard-fabric);
  background-size: auto, 320px 320px;
  opacity: 0.032;
  pointer-events: none;
  content: "";
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.luxury-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(217, 184, 108, 0.18), transparent 28%),
    linear-gradient(135deg, var(--black), #150f0a 54%, var(--black));
  color: var(--cream);
  pointer-events: none;
  animation: loaderExit 1400ms cubic-bezier(0.83, 0, 0.17, 1) 900ms forwards;
}

.luxury-loader span {
  position: relative;
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 10rem);
  line-height: 0.9;
  text-transform: uppercase;
  animation: loaderName 1100ms ease both;
}

.luxury-loader span::after {
  position: absolute;
  right: -12%;
  bottom: -12px;
  left: -12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
  transform: scaleX(0);
  animation: lineReveal 900ms ease 280ms forwards;
}

.cursor-aura {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 213, 145, 0.13), transparent 64%);
  opacity: 0.8;
  pointer-events: none;
  transform: translate(calc(var(--x, -500px) - 50%), calc(var(--y, -500px) - 50%));
  transition: transform 90ms linear;
  mix-blend-mode: screen;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(rgba(8, 7, 5, 0.94), rgba(8, 7, 5, 0.94)),
    var(--leopard-muted);
  background-size: auto, 120px 86px;
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--black);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  padding: 24px clamp(18px, 4.5vw, 64px);
  color: var(--cream);
  transition: padding 260ms ease, background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 15px;
  border-bottom: 1px solid rgba(240, 213, 145, 0.22);
  background:
    linear-gradient(rgba(8, 7, 5, 0.82), rgba(8, 7, 5, 0.82)),
    var(--leopard-muted);
  background-size: auto, 150px 112px;
  backdrop-filter: blur(20px);
}

.brand {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 31px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav a,
.footer-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, var(--gold-light), transparent),
    var(--leopard-muted);
  background-size: auto, 90px 60px;
  content: "";
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(251, 245, 236, 0.58);
  border-radius: 50%;
  background: rgba(8, 7, 5, 0.18);
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 118px clamp(18px, 6vw, 86px) 58px;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
  clip-path: inset(0);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 70% 20%, rgba(240, 213, 145, 0.12), transparent 34%),
    linear-gradient(rgba(8, 7, 5, 0.52), rgba(8, 7, 5, 0.52));
  background-size: auto, auto;
  opacity: 1;
  content: "";
  pointer-events: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  transform: translateY(calc(var(--scroll, 0) * 0.06px)) scale(1.01);
  animation: heroCinemaZoom 18s ease-in-out infinite alternate;
  overflow: hidden;
  background: var(--black);
}

.hero-media::before {
  position: absolute;
  inset: -36px;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.42), rgba(8, 7, 5, 0.1), rgba(8, 7, 5, 0.32)),
    url("assets/images/1.jpg") center 32% / cover no-repeat;
  content: "";
  filter: blur(24px) saturate(0.92) contrast(1.06);
  opacity: 0.66;
  transform: scale(1.06);
}

.hero-media img {
  position: absolute;
  z-index: 1;
  top: -20%;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  filter: saturate(0.92) contrast(1.08);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-radial-gradient(circle at 13% 19%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-light {
  position: absolute;
  z-index: -1;
  width: 42vw;
  min-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  mix-blend-mode: screen;
}

.hero-light-one {
  top: 8%;
  right: -10%;
  background: radial-gradient(circle, rgba(240, 213, 145, 0.22), transparent 62%);
  animation: lightFloat 12s ease-in-out infinite alternate;
}

.hero-light-two {
  bottom: 8%;
  left: -14%;
  background: radial-gradient(circle, rgba(251, 245, 236, 0.16), transparent 62%);
  animation: lightFloat 15s ease-in-out infinite alternate-reverse;
}

.gold-particles span {
  position: absolute;
  z-index: 1;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(240, 213, 145, 0.8);
  opacity: 0.55;
  animation: particleRise 9s ease-in-out infinite;
}

.gold-particles span:nth-child(1) { left: 12%; bottom: 18%; animation-delay: 0s; }
.gold-particles span:nth-child(2) { left: 44%; bottom: 10%; animation-delay: 1.4s; }
.gold-particles span:nth-child(3) { right: 18%; bottom: 22%; animation-delay: 2.2s; }
.gold-particles span:nth-child(4) { right: 35%; top: 24%; animation-delay: 3.1s; }
.gold-particles span:nth-child(5) { left: 22%; top: 32%; animation-delay: 4.4s; }

.hero-overlay {
  z-index: -2;
  background: none;
}

.hero-ornament {
  position: absolute;
  z-index: -1;
  right: clamp(18px, 6vw, 82px);
  bottom: 92px;
  width: min(36vw, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 213, 145, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 213, 145, 0.13), transparent 62%);
  opacity: 0;
  animation: glowIn 1400ms ease 400ms forwards;
}

.hero-ornament::after {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background-image: var(--leopard-muted);
  background-size: 140px 104px;
  opacity: 0.12;
  mix-blend-mode: screen;
  content: "";
}

.hero-content {
  align-self: end;
  max-width: 890px;
  animation: riseIn 900ms ease 180ms both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 14vw, 15.5rem);
  line-height: 0.82;
  white-space: nowrap;
  text-shadow: 0 18px 60px rgba(8, 7, 5, 0.45);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 7.8rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.8vw, 2.7rem);
  line-height: 1;
}

.hero-copy {
  max-width: 560px;
  color: rgba(251, 245, 236, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-vertical {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  top: 28%;
  margin: 0;
  color: rgba(251, 245, 236, 0.34);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}

.button::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent, rgba(251, 245, 236, 0.22), transparent),
    var(--leopard-muted);
  background-size: auto, 120px 86px;
  opacity: 0;
  content: "";
  transform: translateX(-20%);
  transition: opacity 220ms ease, transform 420ms ease;
  pointer-events: none;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.18;
  transform: translateX(10%);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(240, 213, 145, 0.72);
  background: linear-gradient(135deg, #f4dda1 0%, #d4ad5e 46%, #a9792e 100%);
  color: var(--black);
  box-shadow: 0 14px 44px rgba(181, 138, 58, 0.24);
}

.button-primary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.46) 48%, transparent 64%);
  content: "";
  transform: translateX(-130%);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transform: translateX(130%);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 54px rgba(240, 213, 145, 0.34);
}

.button-glass {
  border-color: rgba(251, 245, 236, 0.58);
  background: rgba(251, 245, 236, 0.08);
  color: var(--cream);
  backdrop-filter: blur(12px);
}

.hero-badge {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  display: flex;
  gap: 10px;
  color: rgba(251, 245, 236, 0.75);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-badge span {
  border: 1px solid rgba(240, 213, 145, 0.28);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(8, 7, 5, 0.22);
  backdrop-filter: blur(10px);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(8, 7, 5, 0.08);
  background:
    linear-gradient(rgba(205, 178, 139, 0.84), rgba(205, 178, 139, 0.84)),
    var(--leopard-muted),
    #cdb28b;
  background-size: auto, 150px 110px, auto;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: drift 34s linear infinite;
}

.ticker span {
  padding: 17px 32px;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 10vw, 142px) clamp(20px, 5vw, 70px);
}

.section-glow {
  position: absolute;
  inset: 8% auto auto 58%;
  width: min(40vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 184, 108, 0.16), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.section-glow.gold {
  inset: auto 8% 4% auto;
  background: radial-gradient(circle, rgba(240, 213, 145, 0.2), transparent 64%);
}

.editorial-number {
  position: absolute;
  top: clamp(34px, 6vw, 82px);
  right: clamp(20px, 6vw, 90px);
  color: rgba(240, 213, 145, 0.18);
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 0.8;
  pointer-events: none;
}

.editorial-number.light {
  color: rgba(8, 7, 5, 0.08);
}

.section,
.about-section,
.videos-section,
.shop-section,
.signup-section,
.story-layout,
.discography-page,
.video-library,
.gallery-page,
.event-page,
.shop-page,
.contact-page {
  position: relative;
}

.section::before,
.about-section::before,
.videos-section::before,
.signup-section::before {
  position: absolute;
  top: 0;
  right: clamp(20px, 5vw, 70px);
  left: clamp(20px, 5vw, 70px);
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(240, 213, 145, 0.5), transparent),
    var(--leopard-muted);
  background-size: auto, 120px 86px;
  opacity: 0.7;
  content: "";
  pointer-events: none;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 62px);
}

.section-intro.narrow {
  max-width: 960px;
  display: block;
}

.section-intro p,
.about-copy p,
.video-copy p,
.shop-copy p,
.signup-form p,
.event-list p,
.release-stack p,
.product-grid p,
.release-details p {
  color: var(--muted);
}

.music-section {
  background:
    linear-gradient(180deg, var(--cream), #f6ecdf),
    radial-gradient(circle at 8% 16%, rgba(217, 184, 108, 0.22), transparent 28%);
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(18px, 3vw, 34px);
}

.feature-release {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--cream);
  box-shadow: var(--shadow);
  position: relative;
  transform: translateZ(0);
}

.feature-release::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(240, 213, 145, 0.13), transparent 62%);
  opacity: 0;
  content: "";
  transform: translateX(-30%);
  transition: opacity 220ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.feature-release:hover::before {
  opacity: 1;
  transform: translateX(30%);
}

.release-art {
  position: relative;
  overflow: hidden;
}

.release-art::before {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(240, 213, 145, 0.34);
  content: "";
  pointer-events: none;
}

.release-art img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.76;
}

.release-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 5, 0.2), rgba(8, 7, 5, 0.76));
  content: "";
}

.release-frame {
  position: absolute;
  inset: clamp(20px, 4vw, 44px);
  z-index: 1;
  display: grid;
  align-content: end;
  border: 1px solid rgba(240, 213, 145, 0.5);
  padding: 24px;
}

.release-frame span,
.video-card span,
.product-grid span,
.release-stack span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.release-frame strong {
  display: block;
  max-width: 280px;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 0.94;
  text-transform: uppercase;
}

.release-details {
  align-self: center;
  padding: clamp(28px, 5vw, 60px);
}

.release-details p {
  color: rgba(251, 245, 236, 0.68);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.platforms a {
  border: 1px solid rgba(240, 213, 145, 0.34);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.platforms a:hover,
.platforms a:focus-visible {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.release-stack,
.product-grid {
  display: grid;
  gap: 14px;
}

.release-stack article,
.product-grid article {
  border: 1px solid rgba(181, 138, 58, 0.3);
  background: rgba(255, 250, 242, 0.7);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(8, 7, 5, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}

.release-stack article::after,
.product-grid article::after,
.catalog-grid article::after,
.shop-page article::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background:
    linear-gradient(90deg, rgba(240, 213, 145, 0.4), rgba(8, 7, 5, 0.18)),
    var(--leopard-muted);
  background-size: auto, 120px 86px;
  opacity: 0;
  content: "";
  transition: opacity 220ms ease;
}

.release-stack article:hover::after,
.product-grid article:hover::after,
.catalog-grid article:hover::after,
.shop-page article:hover::after {
  opacity: 1;
}

.release-stack article:hover,
.product-grid article:hover,
.event-list article:hover,
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 213, 145, 0.7);
  box-shadow: 0 22px 70px rgba(8, 7, 5, 0.16);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 88px);
  background: var(--black-soft);
  color: var(--cream);
}

.about-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(-36px);
}

.about-image::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(240, 213, 145, 0.48);
  content: "";
  pointer-events: none;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-copy {
  max-width: 720px;
}

.about-section .about-copy {
  transform: translateY(34px);
}

.about-copy p {
  color: rgba(251, 245, 236, 0.72);
}

.text-link {
  display: inline-flex;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease;
}

.gallery-section {
  position: relative;
  background:
    linear-gradient(rgba(251, 245, 236, 0.9), rgba(251, 245, 236, 0.9)),
    var(--leopard-fabric),
    #ceb58f;
  background-size: auto, 300px 300px, auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.18fr 0.82fr;
  grid-auto-rows: minmax(260px, 32vw);
  gap: clamp(12px, 1.8vw, 22px);
  transform: translateY(58px);
}

.gallery-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 16px 48px rgba(8, 7, 5, 0.14);
  will-change: transform;
}

.gallery-grid figure::before {
  position: absolute;
  inset: -10px;
  background: none;
  opacity: 0;
  content: "";
  transform: scale(0.98);
  transition: opacity 260ms ease, transform 400ms ease;
}

.gallery-grid figure:hover::before {
  opacity: 0;
  transform: scale(1);
}

.gallery-grid figure::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(240, 213, 145, 0);
  content: "";
  transition: border-color 220ms ease;
}

.gallery-grid figure:hover::after {
  border-color: rgba(240, 213, 145, 0.68);
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-grid figure:hover img {
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.045);
}

.gallery-grid figure:nth-child(2) {
  transform: translateY(-42px);
}

.gallery-grid figure:nth-child(4) {
  transform: translateY(34px);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-large img {
  object-position: center 20%;
}

.gallery-wide img {
  object-position: center 22%;
}

.videos-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(78px, 10vw, 144px) clamp(20px, 5vw, 70px);
  background: var(--black);
  color: var(--cream);
}

.video-copy {
  align-self: center;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.video-copy h2 {
  max-width: 8.5ch;
  font-size: clamp(2.9rem, 5.6vw, 6rem);
}

.video-copy p {
  color: rgba(251, 245, 236, 0.72);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
}

.video-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(240, 213, 145, 0.28);
  background: #000;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.video-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(240, 213, 145, 0);
  content: "";
  transition: inset 260ms ease, border-color 260ms ease;
  pointer-events: none;
}

.video-card:hover::before {
  inset: 14px;
  border-color: rgba(240, 213, 145, 0.4);
}

.featured-video {
  grid-row: span 2;
  min-height: 560px;
}

.video-card img {
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.66;
  transition: transform 500ms ease, opacity 500ms ease;
}

.video-card:hover img {
  opacity: 0.8;
  transform: scale(1.035);
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 7, 5, 0.84));
  content: "";
}

.video-card button {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(240, 213, 145, 0.62);
  border-radius: 50%;
  background: rgba(251, 245, 236, 0.12);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.video-card div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.tour-section {
  background: linear-gradient(180deg, #fbf5ec, #efe2d0);
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(181, 138, 58, 0.28);
  background: rgba(255, 250, 242, 0.72);
  padding: 24px clamp(20px, 3vw, 34px);
  box-shadow: 0 16px 48px rgba(8, 7, 5, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.event-list time {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(78px, 10vw, 144px) clamp(20px, 5vw, 70px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.95), rgba(8, 7, 5, 0.84)),
    var(--leopard-fabric),
    #17110a;
  background-size: auto, 320px 320px, auto;
  color: var(--cream);
}

.shop-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(240, 213, 145, 0.08), transparent 54%);
  content: "";
  transform: translateX(-20%);
  animation: slowShimmer 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.shop-copy {
  max-width: 720px;
}

.shop-copy h2 {
  color: var(--gold-light);
}

.shop-copy p {
  color: rgba(251, 245, 236, 0.72);
}

.product-grid article {
  background: rgba(251, 245, 236, 0.08);
  color: var(--cream);
  backdrop-filter: blur(12px);
}

.product-grid p {
  color: rgba(251, 245, 236, 0.66);
}

.signup-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 0.78fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(78px, 10vw, 144px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(rgba(251, 245, 236, 0.9), rgba(251, 245, 236, 0.9)),
    var(--leopard-fabric),
    var(--cream);
  background-size: auto, 320px 320px, auto;
}

.signup-section::after {
  position: absolute;
  inset: clamp(18px, 5vw, 70px);
  z-index: 0;
  background-image:
    linear-gradient(rgba(205, 178, 139, 0.76), rgba(205, 178, 139, 0.76)),
    var(--leopard-fabric);
  background-size: auto, 260px 260px;
  opacity: 0.12;
  content: "";
  pointer-events: none;
}

.signup-section > * {
  position: relative;
  z-index: 1;
}

.signup-image {
  min-height: 600px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.signup-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 19%;
}

.signup-form {
  border: 1px solid rgba(181, 138, 58, 0.38);
  background: rgba(255, 250, 242, 0.75);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 24px 80px rgba(8, 7, 5, 0.12);
  transform: translateY(-22px);
}

.signup-form label,
.footer-signup label {
  display: block;
  margin: 26px 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(181, 138, 58, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  outline: none;
  padding: 0 18px;
}

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 184, 108, 0.16);
}

.microcopy {
  margin: 13px 0 0;
  font-size: 0.88rem;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(310px, 0.9fr) minmax(190px, 0.52fr);
  grid-template-rows: auto auto;
  gap: 32px clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(34px, 4.8vw, 54px) clamp(20px, 4vw, 58px) 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(240, 213, 145, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(8, 7, 5, 0.98), rgba(18, 13, 9, 0.96)),
    var(--leopard-fabric);
  background-size: auto, auto, 330px 330px;
  color: var(--cream);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 18px;
  background:
    linear-gradient(90deg, #8a611c 0%, #c9983f 18%, #f5dc98 48%, #c9983f 78%, #8a611c 100%),
    linear-gradient(180deg, rgba(255, 247, 224, 0.52), rgba(255, 247, 224, 0) 55%);
  border-bottom: 1px solid rgba(240, 213, 145, 0.34);
  content: "";
}

.site-footer::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  min-height: clamp(150px, 24vw, 310px);
  padding-left: clamp(18px, 4vw, 34px);
  padding-right: clamp(150px, 18vw, 240px);
  padding-bottom: clamp(2px, 0.6vw, 10px);
  box-sizing: border-box;
  color: rgba(251, 245, 236, 0.035);
  content: "DANIELLE";
  font-family: var(--display);
  font-size: clamp(6.2rem, 15vw, 16rem);
  line-height: 0.8;
  text-align: left;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.footer-brand-block {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  align-content: start;
  grid-column: 1;
  grid-row: 1;
}

.site-footer .footer-brand-block .brand,
.site-footer > .brand {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  color: var(--gold-light);
}

.site-footer .footer-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-statement {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  align-self: stretch;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: center;
  justify-items: start;
  padding-top: 10px;
  transform: none;
  max-width: 720px;
  width: min(100%, 640px);
}

.compact-footer .footer-statement {
  justify-items: center;
  border-left: 0;
  padding-left: 0;
  transform: none;
}

.site-footer p {
  color: rgba(251, 245, 236, 0.64);
}

.footer-nav,
.social-icons {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  justify-content: flex-end;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 26px;
  grid-column: 3;
  justify-self: end;
  text-align: right;
}

.footer-nav-center {
  grid-column: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px 22px;
  justify-self: start;
  text-align: left;
}

.social-icons {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-content: flex-start;
}

.social-icons a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(240, 213, 145, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  backdrop-filter: blur(10px);
}

.social-icons a:hover,
.social-icons a:focus-visible {
  border-color: var(--gold-light);
  background: rgba(240, 213, 145, 0.1);
  transform: translateY(-2px);
}

.footer-signup {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
  grid-column: auto;
  margin-top: 0;
  align-self: end;
  max-width: 460px;
  justify-self: stretch;
  width: 100%;
}

.footer-signup label {
  grid-column: 1 / -1;
  margin-top: 0;
}

.footer-signup input {
  background: rgba(251, 245, 236, 0.08);
  color: var(--cream);
}

.footer-signup button {
  min-height: 52px;
  border: 1px solid rgba(240, 213, 145, 0.58);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-light);
  padding: 0 22px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-sigil-clean {
  position: absolute;
  right: clamp(8px, 2vw, 22px);
  bottom: clamp(2px, 0.6vw, 10px);
  z-index: 1;
  width: clamp(116px, 13vw, 190px);
  height: auto;
  clip-path: inset(0 0 0 8%);
  pointer-events: none;
}

.copyright {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
}

.site-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  place-items: end start;
  padding: 150px clamp(20px, 6vw, 86px) 70px;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  z-index: -2;
  background-position: center 32%;
  background-size: cover;
  filter: saturate(0.9) contrast(1.08);
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.9), rgba(8, 7, 5, 0.56), rgba(8, 7, 5, 0.24)),
    linear-gradient(180deg, rgba(8, 7, 5, 0.1), rgba(8, 7, 5, 0.78));
}

.page-hero > div::before {
  position: absolute;
  inset: auto auto clamp(44px, 7vw, 82px) clamp(20px, 6vw, 86px);
  width: min(34vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 213, 145, 0.25);
  border-radius: 50%;
  background-image: var(--leopard-muted);
  background-size: 150px 110px;
  opacity: 0.14;
  mix-blend-mode: screen;
  content: "";
  pointer-events: none;
}

.page-hero > div {
  max-width: 900px;
}

.page-hero h1 {
  white-space: normal;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(251, 245, 236, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.page-hero-about::before,
.page-hero-tour::before {
  background-image: url("assets/images/1.jpg");
  background-position: 52% 37%;
  background-size: cover;
}

.page-hero-music::before,
.page-hero-shop::before {
  background-image: url("assets/images/6.jpg");
  background-position: center 58%;
}

.page-hero-shop::before {
  background-position: center 61%;
}

.page-hero-videos::before,
.page-hero-gallery::before,
.page-hero-contact::before {
  background-image: url("assets/images/1.jpg");
  background-position: 52% 37%;
  background-size: cover;
}

.page-hero-gallery::before {
  background-position: 52% 40%;
}

.page-hero-contact::before {
  background-position: 52% 42%;
}

@media (max-width: 980px) {
  .page-hero-about::before,
  .page-hero-tour::before {
    background-position: 54% 40%;
  }

  .page-hero-music::before,
  .page-hero-shop::before {
    background-position: center 62%;
  }

  .page-hero-videos::before,
  .page-hero-gallery::before,
  .page-hero-contact::before {
    background-position: 54% 40%;
  }
}

.story-layout,
.discography-page,
.video-library,
.gallery-page,
.event-page,
.shop-page,
.contact-page {
  padding: clamp(70px, 10vw, 136px) clamp(20px, 5vw, 70px);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--cream);
}

.story-layout > img,
.contact-card > img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: var(--shadow);
}

.story-layout article {
  max-width: 760px;
}

.page-feature {
  margin-bottom: clamp(28px, 5vw, 58px);
}

.catalog-grid,
.shop-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.catalog-grid article,
.shop-page article {
  min-height: 240px;
  border: 1px solid rgba(181, 138, 58, 0.3);
  background: rgba(255, 250, 242, 0.78);
  padding: 28px;
  box-shadow: 0 16px 50px rgba(8, 7, 5, 0.08);
}

.catalog-grid span,
.shop-page span {
  display: block;
  margin-bottom: 56px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.ep-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(42px, 7vw, 86px);
  border: 1px solid rgba(181, 138, 58, 0.36);
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.92), rgba(8, 7, 5, 0.78)),
    var(--leopard-fabric),
    #15100b;
  background-size: auto, 300px 300px, auto;
  color: var(--cream);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.ep-feature > div:first-child {
  max-width: 360px;
}

.ep-feature > div:first-child h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.35rem);
  line-height: 0.9;
}

.ep-feature p:not(.eyebrow) {
  color: rgba(251, 245, 236, 0.72);
}

.ep-tracklist {
  display: grid;
  gap: 10px;
}

.ep-tracklist article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(240, 213, 145, 0.2);
  padding: 15px 0;
}

.ep-tracklist span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.ep-tracklist h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
}

.video-library {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 18px;
  background: var(--black);
}

.video-library .featured-video {
  grid-row: span 3;
}

.gallery-page {
  columns: 3 280px;
  column-gap: 18px;
  background:
    linear-gradient(rgba(251, 245, 236, 0.9), rgba(251, 245, 236, 0.9)),
    var(--leopard-fabric),
    #ceb58f;
  background-size: auto, 300px 300px, auto;
}

.gallery-page figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(181, 138, 58, 0.3);
  background: var(--black);
  box-shadow: 0 18px 54px rgba(8, 7, 5, 0.14);
  position: relative;
}

.gallery-page figure::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  opacity: 0;
  content: "";
  transition: opacity 240ms ease;
}

.gallery-page figure:hover::before {
  opacity: 0;
}

.gallery-page img {
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-page figure:hover img {
  filter: contrast(1.06) saturate(1.05);
  transform: scale(1.035);
}

.event-page {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, var(--cream), var(--cream-deep));
}

.event-page article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(181, 138, 58, 0.3);
  background: rgba(255, 250, 242, 0.75);
  padding: 28px;
  box-shadow: 0 16px 48px rgba(8, 7, 5, 0.08);
}

.event-page time {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-page {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.96), rgba(8, 7, 5, 0.86)),
    var(--leopard-fabric),
    #17110a;
  background-size: auto, 320px 320px, auto;
}

.shop-page article {
  color: var(--cream);
  background: rgba(251, 245, 236, 0.08);
  backdrop-filter: blur(12px);
}

.shop-page p {
  color: rgba(251, 245, 236, 0.68);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  background:
    linear-gradient(rgba(251, 245, 236, 0.91), rgba(251, 245, 236, 0.91)),
    var(--leopard-fabric),
    var(--cream);
  background-size: auto, 320px 320px, auto;
}

.contact-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(181, 138, 58, 0.32);
  background: var(--black);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.contact-card > img {
  min-height: 390px;
  box-shadow: none;
}

.contact-card > div {
  padding: 28px;
}

.contact-card p {
  color: rgba(251, 245, 236, 0.7);
}

.compact-footer {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  min-height: 380px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero.reveal,
.page-hero.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowIn {
  to {
    opacity: 1;
  }
}

@keyframes drift {
  to {
    transform: translateX(-50%);
  }
}

@keyframes fabricDrift {
  from {
    background-position: right 12% top 14%;
  }
  to {
    background-position: right 16% top 18%;
  }
}

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

@keyframes loaderName {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  to {
    transform: scaleX(1);
  }
}

@keyframes heroCinemaZoom {
  from {
    transform: translateY(calc(var(--scroll, 0) * 0.06px)) scale(1.01);
  }
  to {
    transform: translateY(calc(var(--scroll, 0) * 0.06px)) scale(1.025);
  }
}

@keyframes lightFloat {
  to {
    transform: translate3d(-28px, 24px, 0) scale(1.08);
  }
}

@keyframes particleRise {
  0%, 100% {
    opacity: 0;
    transform: translateY(30px) scale(0.7);
  }
  30%, 70% {
    opacity: 0.62;
  }
  100% {
    transform: translateY(-90px) scale(1);
  }
}

@keyframes slowShimmer {
  to {
    transform: translateX(24%);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .hero-media img {
    object-position: 56% 34%;
  }

.site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    padding: 24px;
    border: 1px solid rgba(240, 213, 145, 0.28);
    background:
      linear-gradient(rgba(8, 7, 5, 0.94), rgba(8, 7, 5, 0.94)),
      var(--leopard-muted);
    background-size: auto, 150px 112px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-intro,
  .music-grid,
  .feature-release,
  .about-section,
  .videos-section,
  .shop-section,
  .signup-section,
  .story-layout,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .shop-page,
  .video-library,
  .ep-feature {
    grid-template-columns: 1fr 1fr;
  }

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

  .video-copy h2 {
    max-width: 10ch;
  }

  .featured-video {
    grid-column: 1 / -1;
  }

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

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .event-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-page article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-statement {
    border-left: 0;
    border-top: 1px solid rgba(240, 213, 145, 0.28);
    padding-top: 24px;
    padding-left: 0;
  }

  .footer-nav,
  .social-icons {
    justify-content: flex-start;
  }

  .footer-signup {
    grid-column: 1;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 16px;
  }

  .brand {
    font-size: 2rem;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 18px 108px;
  }

  .hero-media {
    animation: none;
    transform: scale(1);
  }

  .hero-media::before {
    opacity: 0.58;
  }

  .hero-media img {
    top: -10%;
    right: 0;
    left: 0;
    width: 100%;
    transform: none;
  }

  .hero-overlay {
    background: none;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(2.85rem, 16vw, 4.7rem);
  }

  .video-copy h2 {
    max-width: 100%;
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .button,
  .button-row {
    width: 100%;
  }

  .hero-vertical,
  .cursor-aura {
    display: none;
  }

  .hero-badge {
    right: 18px;
    left: 18px;
    bottom: 22px;
    flex-wrap: wrap;
  }

  .hero-badge span {
    flex: 1 1 auto;
    text-align: center;
  }

  .section,
  .about-section,
  .videos-section,
  .shop-section,
  .signup-section {
    padding-inline: 18px;
  }

  .about-image,
  .signup-image {
    min-height: 470px;
  }

  .gallery-grid,
  .video-grid,
  .shop-page,
  .video-library,
  .ep-feature {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(360px, 126vw);
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .catalog-grid article,
  .shop-page article {
    min-height: 210px;
  }

  .release-stack article {
    min-height: auto;
  }

  .ep-feature {
    grid-auto-rows: auto;
  }

  .ep-tracklist article {
    grid-template-columns: 42px 1fr;
  }

  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(4),
  .about-image,
  .about-section .about-copy,
  .signup-form {
    transform: none;
  }

  .page-hero {
    min-height: 64svh;
    padding: 124px 18px 58px;
  }

  .story-layout > img {
    min-height: 470px;
  }

  .featured-video,
  .video-card {
    min-height: 390px;
  }

  .input-row,
  .footer-signup {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 76px;
  }

  .footer-brand-block .brand,
  .site-footer > .brand {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

  .footer-nav,
  .social-icons {
    justify-content: center;
    text-align: center;
  }

  .footer-statement {
    justify-items: center;
    text-align: center;
  }

  .footer-signup {
    max-width: none;
  }
}

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

  .luxury-loader {
    display: none;
  }
}
