:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #cccccc;
  --gray-600: #666666;
  --gray-800: #222222;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 88px;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --grain-opacity: 0.04;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition-smooth),
              height 0.3s var(--transition-smooth),
              background 0.3s var(--transition-smooth);
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition-smooth),
              height 0.3s var(--transition-smooth),
              border-color 0.3s var(--transition-smooth),
              background 0.3s var(--transition-smooth);
}

.cursor--hover {
  width: 0;
  height: 0;
}

.cursor-follower--hover {
  width: 64px;
  height: 64px;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

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

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  transition: opacity 0.4s ease;
}

.collection__item-image img,
.lookbook__item img,
.community__item img,
.about__image img,
.hero__image {
  background: var(--gray-800);
}

.nav__logo-img,
.preloader__logo,
.footer__logo {
  background: transparent !important;
  mix-blend-mode: normal;
}

img[src=""],
img:not([src]) {
  opacity: 0;
}

.community__item {
  background: var(--gray-800);
  min-height: 200px;
}

button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
  color: inherit;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
}

section.section {
  padding: 120px 24px;
  position: relative;
}

@media (max-width: 768px) {
  section.section {
    padding: 80px 16px;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
}

/* GRAIN OVERLAY */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.8s var(--transition-smooth);
}

.preloader.hidden {
  transform: translateY(-100%);
}

.preloader__content {
  text-align: center;
}

.preloader__logo {
  width: 40vmin;
  height: 40vmin;
  object-fit: contain;
  margin: 0 auto 32px;
  mix-blend-mode: normal;
  transform: scale(0.8);
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: var(--gray-800);
  margin: 0 auto;
  border-radius: 1px;
  overflow: hidden;
}

.preloader__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--white);
  transition: width 0.3s ease;
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  display: flex;
  align-items: center;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.nav__logo-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.4s var(--transition-smooth);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  opacity: 1;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: none;
  z-index: 1001;
  gap: 6px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--transition-smooth), opacity 0.4s ease;
}

.nav__hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.6s ease, opacity 0.6s ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__inner {
  text-align: center;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.3s ease;
  display: block;
}

.mobile-menu__link:hover {
  opacity: 0.5;
}

.mobile-menu__social {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.mobile-menu__social a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-300);
  transition: color 0.3s ease;
}

.mobile-menu__social a:hover {
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__tagline {
  margin-bottom: 48px;
}

.hero__tagline .char {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--white);
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}

.hero__tagline .char-space {
  display: inline-block;
  width: 0.3em;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-indicator span {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  opacity: 0.4;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.3);
    opacity: 0.2;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.6;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn--outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

/* MARQUEE */
.marquee-section {
  background: var(--black);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

.marquee__inner {
  display: inline-flex;
  gap: 48px;
  animation: marqueeScroll 40s linear infinite;
}

.marquee__inner span {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* COLLECTION */
.collection {
  background: var(--white);
  color: var(--black);
}

.collection .section__subtitle {
  color: var(--gray-600);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.collection__item {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.collection__item-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--gray-800);
  min-height: 300px;
}

.collection__item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.collection__item:hover .collection__item-hover {
  opacity: 1;
}

.collection__item-hover span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 12px 24px;
}

.collection__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.collection__item:hover .collection__item-image img {
  transform: scale(1.05);
}

.collection__item-info {
  padding: 16px 0;
}

.collection__item-info h3 {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.collection .section__title,
.collection .section__subtitle {
  color: var(--black);
}

.about .section__title {
  color: var(--black);
}

.about .btn--outline {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.about .btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

/* LOOKBOOK */
.lookbook {
  background: var(--black);
  overflow: hidden;
}

.lookbook__header {
  margin-bottom: 32px;
}

.lookbook__toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.lookbook__toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
  cursor: none;
}

.lookbook__toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--gray-800);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.lookbook__toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s var(--transition-smooth);
}

.lookbook__toggle input:checked + .lookbook__toggle-switch {
  background: var(--white);
}

.lookbook__toggle input:checked + .lookbook__toggle-switch::after {
  transform: translateX(24px);
  background: var(--black);
}

.lookbook__toggle input {
  display: none;
}

.lookbook__outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.lookbook__outer:active {
  cursor: grabbing;
}

.lookbook__track {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0 40px;
  width: max-content;
  will-change: transform;
}

.lookbook__item {
  flex: 0 0 auto;
  width: 70vw;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.lookbook__item img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: filter 0.5s ease;
}

.lookbook__item.bw img {
  filter: grayscale(100%);
}

.lookbook__item-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.4);
  padding: 6px 12px;
}

/* ABOUT */
.about {
  background: var(--white);
  color: var(--black);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about__content {
  padding-right: 32px;
  text-align: center;
}

.about__text {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.about__text:last-of-type {
  margin-bottom: 48px;
}

.about__image {
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 80px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 8px;
}

.about__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.about__stat-divider {
  width: 1px;
  height: 60px;
  background: var(--gray-200);
}

/* COMMUNITY */
.community {
  background: var(--black);
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.community__item {
  position: relative;
  overflow: hidden;
  background: var(--gray-800);
  cursor: none;
}

.community__item:not(.community__item--tall):not(.community__item--wide) {
  aspect-ratio: 1;
}

.community__item--tall {
  grid-row: span 2;
}

.community__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.community__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.community__item:hover img {
  transform: scale(1.08) rotate(1deg);
}

.community__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.community__item:hover .community__item-overlay {
  opacity: 1;
}

.community__item-overlay span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
}

.community__cta {
  text-align: center;
  margin-top: 64px;
}

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-800);
  padding: 80px 24px 0;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
  mix-blend-mode: normal;
}

.footer__brand {
  text-align: center;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 24px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__email {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-300);
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.footer__email:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__form input {
  padding: 16px;
  background: transparent;
  border: 1px solid var(--gray-800);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
}

.footer__form input:focus {
  border-color: var(--white);
}

.footer__form input::placeholder {
  color: var(--gray-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.footer__form .btn {
  width: 100%;
}

.footer__bottom {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gray-600);
}

/* TOUCH DEVICES */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }

  a, button, .magnetic-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--white);
  z-index: 10002;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Music Toggle Button ── */
.music-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0;
  cursor: pointer;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.music-toggle:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.9);
}

.music-toggle__icon {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.music-bar {
  display: block;
  width: 3px;
  background: var(--white);
  border-radius: 0;
  transform-origin: bottom;
}

.music-toggle.is-playing .music-bar:nth-child(1) {
  animation: barBounce 0.8s ease-in-out infinite alternate;
  animation-delay: 0s;
  height: 8px;
}
.music-toggle.is-playing .music-bar:nth-child(2) {
  animation: barBounce 0.8s ease-in-out infinite alternate;
  animation-delay: 0.15s;
  height: 16px;
}
.music-toggle.is-playing .music-bar:nth-child(3) {
  animation: barBounce 0.8s ease-in-out infinite alternate;
  animation-delay: 0.3s;
  height: 12px;
}
.music-toggle.is-playing .music-bar:nth-child(4) {
  animation: barBounce 0.8s ease-in-out infinite alternate;
  animation-delay: 0.45s;
  height: 20px;
}

.music-toggle:not(.is-playing) .music-bar:nth-child(1) { height: 8px; }
.music-toggle:not(.is-playing) .music-bar:nth-child(2) { height: 14px; }
.music-toggle:not(.is-playing) .music-bar:nth-child(3) { height: 10px; }
.music-toggle:not(.is-playing) .music-bar:nth-child(4) { height: 18px; }
.music-toggle:not(.is-playing) .music-bar { opacity: 0.35; }

@keyframes barBounce {
  0%   { transform: scaleY(0.4); }
  100% { transform: scaleY(1.2); }
}

@media (max-width: 768px) {
  .music-toggle {
    bottom: 24px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
  }
}

/* SMOOTH SCROLLING OVERRIDE */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
