/* ======================================================
   MICKEY VIVAS — COMPLETE STYLE (Garrix Clone)
   ====================================================== */

/* — Tokens — */
:root {
  --black: #000;
  --white: #fff;
  --off-white: #f2f2f2;
  --dark-bg: #0d0d0d;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --nav-h: 95px;
  --red: #E8001D;
}

/* — Reset — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  background: var(--black);
  /* iOS: eliminates 300ms tap delay and scroll jank */
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}
body {
  background: var(--black); color: var(--white);
  font-family: var(--font-body); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none; /* custom cursor active */
  /* iOS momentum scrolling */
  -webkit-overflow-scrolling: touch;
}
a { text-decoration: none; color: inherit; touch-action: manipulation; }
img { display: block; width: 100%; }
button { cursor: none; background: none; border: none; touch-action: manipulation; }

/* ======================================================
   NOISE GRAIN OVERLAY
   ====================================================== */
.noise {
  position: fixed; top: -50%; left: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9997;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noiseShift 0.12s steps(2) infinite;
}
@keyframes noiseShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-4%, -4%); }
  50%  { transform: translate(4%, 4%); }
  75%  { transform: translate(-4%, 4%); }
  100% { transform: translate(4%, -4%); }
}

/* ======================================================
   CUSTOM CURSOR
   ====================================================== */
#mv-cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(1);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.35s;
  will-change: transform;
}

@media (hover: none) and (pointer: coarse), (max-width: 768px) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  #mv-cursor {
    display: none !important;
  }
  /* Disable heavy GPU effects that cause scroll lag on iOS */
  .nav { mix-blend-mode: normal; }
  .noise { display: none; }
  /* Disable parallax animations for smoother scroll */
  .aw-hero__bg,
  #heroBgImg {
    transform: none !important;
    transition: none !important;
  }
}
#mv-cursor.magnetic {
  width: 60px; height: 60px;
  background: transparent;
  border: 1.5px solid var(--white);
}
#mv-cursor.magnetic::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  background: var(--white);
  border-radius: 50%;
}

/* ======================================================
   LOADER
   ====================================================== */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease);
}
.loader-bg { position: absolute; inset: 0; background: var(--black); }
.loader-logo {
  position: relative; z-index: 1;
  width: 80px; height: auto;
  filter: invert(1);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { opacity: 0.2; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1); }
}

/* ======================================================
   NAV
   ====================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 32px;
  z-index: 500;
  mix-blend-mode: difference;
}

.nav-logo {
  display: flex; gap: 6px; align-items: center;
}
.nav-logo-img {
  height: 95px; width: auto;
  filter: invert(1);
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.7; }

/* Nav blend trick: in dark sections icons appear white;
   in white section they flip dark via filter invert */

.nav-menu-btn {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.nav-lines {
  display: flex; flex-direction: column; gap: 5px;
}
.nav-lines span {
  display: block; width: 22px; height: 2px; background: var(--white);
  transition: 0.3s;
}
.nav-menu-text {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; letter-spacing: 0.1em;
}

/* ======================================================
   FULLSCREEN MENU
   ====================================================== */
.fullmenu {
  position: fixed; inset: 0; background: var(--black);
  z-index: 2000;
  display: flex; flex-direction: column;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-clip-path 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  pointer-events: none;
}
.fullmenu.active {
  -webkit-clip-path: inset(0 0 0% 0);
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  pointer-events: all;
}

/* ── Keyframe de entrada de items (Garrix style) ── */
@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Items: SIEMPRE invisibles cuando el menú está cerrado ── */
.fullmenu .fmenu-item,
.fullmenu .fullmenu-photo img,
.fullmenu .fullmenu-footer {
  opacity: 0;
}

/* ── Cuando el menú abre: animación garantizada ── */
.fullmenu.active .fmenu-item,
.fullmenu.active .fullmenu-photo img,
.fullmenu.active .fullmenu-footer {
  animation: menuItemIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Foto */
.fullmenu.active .fullmenu-photo img { animation-delay: 0.08s; }

/* Items en cascada */
.fullmenu.active .fmenu-item:nth-child(1) { animation-delay: 0.10s; }
.fullmenu.active .fmenu-item:nth-child(2) { animation-delay: 0.15s; }
.fullmenu.active .fmenu-item:nth-child(3) { animation-delay: 0.20s; }
.fullmenu.active .fmenu-item:nth-child(4) { animation-delay: 0.25s; }
.fullmenu.active .fmenu-item:nth-child(5) { animation-delay: 0.30s; }
.fullmenu.active .fmenu-item:nth-child(6) { animation-delay: 0.35s; }

/* Footer */
.fullmenu.active .fullmenu-footer { animation-delay: 0.38s; }



.fullmenu-close {
  position: absolute; top: 28px; right: 32px;
  color: var(--white); z-index: 10;
  transition: transform 0.4s var(--ease);
}
.fullmenu-close:hover { transform: rotate(90deg) scale(1.1); }

.fullmenu-body {
  display: flex; flex: 1; align-items: center;
  padding-top: var(--nav-h);
}

.fullmenu-photo {
  flex: 1; display: flex; justify-content: flex-end; padding-right: 5%;
}
.fullmenu-photo img {
  width: 400px; height: 520px; object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.fullmenu-nav {
  flex: 1; padding-left: 5%;
  display: flex; flex-direction: column; gap: 0;
}

.fmenu-item {
  display: flex; align-items: baseline; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left 0.3s var(--ease);
}
.fmenu-item:hover { padding-left: 10px; }
.fmenu-item.active .fmenu-label { color: #E8001D; }
.fmenu-item.active .fmenu-num { color: rgba(232,0,29,0.6); }
.fmenu-num {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4);
  min-width: 20px; font-family: var(--font-heading);
}
.fmenu-label {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.02em; text-transform: uppercase;
}
.fmenu-sub {
  font-size: 13px; color: rgba(255,255,255,0.4);
}

.fullmenu-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px;
}
.fullmenu-footer a {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5); margin-right: 20px;
  transition: color 0.3s;
}
.fullmenu-footer a:hover { color: var(--white); }
.fullmenu-footer-right a:last-child { margin-right: 0; }

/* ======================================================
   REVEAL ANIMATION
   ====================================================== */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ======================================================
   SECTION 1 — HERO
   ====================================================== */
.s-hero {
  position: relative; width: 100vw; height: 100vh;
  overflow: hidden; display: flex; align-items: flex-end;
  padding-bottom: 120px;
}

.hero-bg-wrap {
  position: absolute; inset: -10% 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 120%; object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px;
  width: 100%;
}
.hero-label {
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  letter-spacing: 0.3em; margin-bottom: 16px;
  opacity: 0.7;
  animation: fadeUp 1s var(--ease) 0.5s both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900; line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 36px;
  animation: fadeUp 1s var(--ease) 0.6s both;
}
.hero-cta {
  display: inline-block;
  border: 2px solid var(--white);
  padding: 18px 44px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; letter-spacing: 0.2em;
  transition: background 0.3s, color 0.3s;
  animation: fadeUp 1s var(--ease) 0.7s both;
}
.hero-cta:hover { background: var(--white); color: var(--black); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.25em;
  opacity: 0.5; z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ── HERO TAPE BAND (Alerak-style angled ticker) ── */
.hero-tape {
  position: absolute; bottom: 0; left: -8%; width: 116%;
  background: var(--white); color: var(--black);
  transform: rotate(-1.8deg);
  transform-origin: center;
  padding: 10px 0;
  overflow: hidden;
  z-index: 2;
  border-top: 2px solid rgba(0,0,0,0.15);
}
.hero-tape-inner {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: 0.3em;
  white-space: nowrap;
  display: inline-block;
  animation: tapeScrollLeft 20s linear infinite;
}
@keyframes tapeScrollLeft { to { transform: translateX(-50%); } }

/* ======================================================
   SECTION 2 — MARQUEE (Garrix 3-strip horizontal banners)
   No scroll interaction — plays automatically
   ====================================================== */
.s-marquee {
  position: relative;
  height: 100vh;
  background: var(--black);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}

/* 3 horizontal ticker strips */
.marquee-strips {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 60px 0;
  pointer-events: none;
}

.marquee-strip {
  overflow: hidden;
  width: 100%;
}

/* Inner holds 2× the content for seamless loop */
.marquee-inner {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: stripLeft 22s linear infinite;
}
.marquee-strip--reverse .marquee-inner {
  animation: stripRight 18s linear infinite;
}
.marquee-strip:nth-child(3) .marquee-inner {
  animation: stripLeft 26s linear infinite;
}

@keyframes stripLeft  { from { transform: translateX(0); }   to { transform: translateX(-50%); } }
@keyframes stripRight { from { transform: translateX(-50%); } to { transform: translateX(0); }   }

/* Each song title item */
.mq-item {
  font-family: var(--font-heading);
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  padding: 0 40px;
  line-height: 1;
  pointer-events: all;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  display: inline-block;
}
.mq-item:hover { color: rgba(255,255,255,0.55); }

/* Separator dot between items */
.mq-sep {
  display: inline-block;
  font-size: 20px;
  color: rgba(255,255,255,0.15);
  align-self: center;
  padding: 0 10px;
  line-height: clamp(60px, 9vw, 130px);
}

/* Center photo: layered on top of the strips */
.marquee-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  pointer-events: none;
}
.marquee-center img {
  width: 300px; height: 400px; object-fit: cover;
  filter: grayscale(80%) contrast(1.1);
  box-shadow: 0 0 120px rgba(0,0,0,1);
  transition: filter 0.6s, transform 0.6s var(--ease);
}
.marquee-center:hover img {
  filter: grayscale(20%) contrast(1.05);
  transform: scale(1.03);
}
.marquee-cta {
  pointer-events: all;
  border: 2px solid var(--white); background: var(--white); color: var(--black);
  padding: 16px 48px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  transition: background 0.3s, color 0.3s;
}
.marquee-cta:hover { background: transparent; color: var(--white); }

/* ======================================================
   SECTION 3 — TRANSICIÓN GARRIX (scroll-driven black→white)
   ====================================================== */
.s-black-transition {
  position: relative;
  height: 250vh;            /* scroll travel distance */
  background: var(--off-white); /* visible after fill completes */
}

/* Sticky inner: sticks while parent scrolls */
.transition-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;         /* clips the expanding white circle */
}

/* White expanding circle — driven by JS scroll progress */
.transition-white-fill {
  position: absolute;
  inset: 0;
  background: var(--off-white);
  clip-path: circle(0% at 50% 50%); /* JS drives to full screen */
  will-change: clip-path;
  z-index: 1;
}

/* MV Logo: centered, z-index above white fill */
.transition-logo {
  position: relative; z-index: 2;
  width: 70px; height: auto;
  display: block;
  filter: invert(1);        /* starts white on black */
  will-change: transform, filter;
  transition: filter 0.3s ease;
}

/* ======================================================
   SECTION 4 — RELEASES (fondo blanco/off-white)
   ====================================================== */
.s-releases {
  background: var(--off-white); color: var(--black);
  padding: 100px 60px 120px;
}

.releases-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.releases-title {
  font-family: var(--font-heading);
  font-size: clamp(60px, 10vw, 160px); line-height: 0.9; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.03em;
}
.releases-link {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; letter-spacing: 0.15em;
  text-decoration: underline; text-underline-offset: 6px;
  transition: opacity 0.3s;
}
.releases-link:hover { opacity: 0.6; }

.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 60px;
  align-items: start;
}

.release-card {
  display: flex; flex-direction: column;
  cursor: pointer;
}

.release-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1;
}

.release-cover-art {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.cover-mv {
  font-family: var(--font-heading);
  font-size: 80px; font-weight: 900;
  color: rgba(255,255,255,0.08);
}
.release-card-fullimg {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.release-card:hover .release-card-fullimg {
  transform: scale(1.05); filter: grayscale(0%);
}

/* Play btn overlay */
.release-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.release-card:hover .release-play-btn {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}

/* dark overlay on hover */
.release-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0; transition: opacity 0.4s;
}
.release-card:hover .release-card-img::after { opacity: 1; }

/* front label overlay */
.release-card-front-label {
  position: absolute; bottom: 16px; left: 16px;
  z-index: 2;
}
.rcard-title {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 26px); font-weight: 900;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.05em;
}
.rcard-artist { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* Below card meta */
.release-card-meta { padding: 14px 0 4px; }
.rcard-title-b {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--black); text-transform: uppercase;
}
.rcard-artist-b { font-size: 13px; color: rgba(0,0,0,0.5); margin-top: 2px; }

.spotify-embed-wrap { max-width: 1000px; margin: 0 auto; }

/* ======================================================
   SECTION 5 — SERVICES
   ====================================================== */
.s-services {
  background: var(--black);
  padding: 100px 60px 120px;
}
.services-title {
  font-family: var(--font-heading);
  font-size: clamp(60px, 10vw, 160px); line-height: 0.9; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.03em;
  margin-bottom: 60px;
}
.services-rows { display: flex; flex-direction: column; }

.srv-row {
  display: flex; align-items: center; gap: 20px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  transition: padding-left 0.4s var(--ease);
}
.srv-row:hover { padding-left: 12px; }
.srv-row:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.srv-num {
  font-size: 13px; color: rgba(255,255,255,0.35);
  font-family: var(--font-heading); font-weight: 700; min-width: 40px;
}
.srv-name {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  flex: 1;
  transition: transform 0.4s var(--ease);
}
.srv-row:hover .srv-name { transform: translateX(8px); }
.srv-arrow {
  font-size: 32px; opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.srv-row:hover .srv-arrow { opacity: 1; transform: translateX(0); }

/* ======================================================
   SECTION 6 — FOLLOW / SÍGUEME
   ====================================================== */
.s-follow {
  background: var(--black);
  padding: 80px 60px 100px;
}
.follow-label {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700; letter-spacing: 0.3em;
  text-align: center; margin-bottom: 40px;
  color: rgba(255,255,255,0.6);
}
.follow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  max-width: 900px; margin: 0 auto;
}
.follow-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 36px 12px;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: background 0.35s, color 0.35s;
}
.follow-item:last-child { border-right: none; }
.follow-item:hover { background: var(--white); color: var(--black); }
.follow-item p {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--dark-bg);
  padding: 80px 60px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; margin-bottom: 80px;
}
.footer-col h3 {
  font-family: var(--font-heading); font-size: 14px;
  font-weight: 700; letter-spacing: 0.15em;
  margin-bottom: 20px; color: var(--white);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

.footer-vivas-records {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0;
}
.footer-vr-block {
  display: flex; align-items: center; gap: 24px;
  padding: 36px 0; cursor: pointer;
  transition: opacity 0.3s;
}
.footer-vr-block:hover { opacity: 0.7; }
.footer-vr-icon { height: 40px; width: auto; filter: invert(1); }
.footer-vr-block p {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--white);
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo-area {
  display: flex; gap: 8px; align-items: center;
  color: rgba(255,255,255,0.3);
  transition: opacity 0.3s;
}
.footer-logo-area:hover { opacity: 0.6; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-legal-links a:hover { color: var(--white); }

/* ======================================================
   SECTION 5.5 — TESTIMONIALS
   ====================================================== */
.s-testimonials {
  background: #0a0a0a;
  padding: 100px 60px 120px;
}
.testi-header {
  text-align: center;
  margin-bottom: 70px;
}
.testi-title {
  font-family: var(--font-heading);
  font-size: clamp(50px, 8vw, 130px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.03em;
  line-height: 0.9;
}
.testi-sub {
  font-size: 14px; color: rgba(255,255,255,0.4);
  margin-top: 16px; letter-spacing: 0.1em;
}
.testi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; /* gap of 2px creates the bordered effect */
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 60px;
}
.testi-card {
  background: #0f0f0f;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.4s;
}
.testi-card:hover { background: #151515; }
.testi-quote {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.6; color: rgba(255,255,255,0.85);
  font-style: italic; margin-bottom: 28px;
}
.testi-author {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px;
}
.testi-name {
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--white);
}
.testi-platform {
  font-size: 12px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}
.testi-cta-wrap { text-align: center; }
.testi-cta {
  display: inline-block;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,0.4); padding-bottom: 4px;
  transition: border-color 0.3s;
}
.testi-cta:hover { border-color: var(--white); }

@media (max-width: 900px) {
  .s-testimonials { padding: 60px 24px 80px; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: clamp(60px, 18vw, 120px); }

  .s-releases { padding: 60px 24px 80px; }
  .releases-grid { grid-template-columns: 1fr; }
  .release-card--wide { grid-column: span 1; }
  .release-card--wide .release-card-img { aspect-ratio: 4/3; }

  .s-services { padding: 60px 24px 80px; }
  .s-follow { padding: 60px 24px 80px; }
  .follow-grid { grid-template-columns: repeat(3, 1fr); }
  .follow-item { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .follow-item:nth-child(3n) { border-right: none; }

  .site-footer { padding: 60px 24px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .fullmenu-photo { display: none; }
  .fullmenu-nav { padding: 0 24px; }
  .fmenu-label { font-size: 40px; }
  .fmenu-sub { display: none; }
  .fullmenu-footer { padding: 20px 24px; flex-direction: column; gap: 12px; }

  .marquee-center img { width: 260px; height: 320px; }
  .releases-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .nav { padding: 0 16px; }
  .follow-grid { grid-template-columns: repeat(2, 1fr); }
  .follow-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   LISTEN MODAL (Popup Martin Garrix Style)
   ====================================================== */
.listen-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.listen-modal.active {
  opacity: 1; pointer-events: all;
}
.listen-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.modal-logo-deco {
  position: absolute; top: 36px; left: 40px;
  opacity: 0.55; pointer-events: none;
}
.modal-logo-icon {
  width: 48px; height: 48px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.listen-modal-content {
  position: relative; z-index: 2;
  width: 90%; max-width: 480px;
  background: #111; color: var(--white);
  display: flex; flex-direction: column;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.listen-modal.active .listen-modal-content {
  transform: translateY(0) scale(1);
}
.listen-modal-close {
  position: absolute; top: -50px; right: 0;
  color: var(--white); font-size: 40px; line-height: 1;
  background: transparent; border: none; cursor: pointer;
  opacity: 0.6; transition: opacity 0.3s;
}
.listen-modal-close:hover { opacity: 1; }

.lm-header {
  position: relative; width: 100%; height: 260px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; padding: 30px;
}
.lm-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, #111 0%, rgba(17,17,17,0) 80%);
}
.lm-header-text {
  position: relative; z-index: 3;
  pointer-events: none;
}
.lm-header-text h2 {
  font-family: var(--font-heading); font-size: clamp(32px, 6vw, 44px);
  font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase;
  line-height: 0.9; margin-bottom: 8px;
}
.lm-header-text p {
  font-size: 14px; font-weight: 600; opacity: 0.8;
}
.lm-header-text p::before {
  content: "— "; opacity: 0.5;
}

.lm-body {
  padding: 30px; display: flex; flex-direction: column;
}
.lm-subtitle {
  font-family: var(--font-heading); font-size: 14px; font-weight: 900;
  text-align: center; letter-spacing: 0.1em;
  padding-bottom: 20px;
}
.lm-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 30px;
}
.lm-link {
  display: flex; align-items: center; justify-content: center;
  height: 60px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; color: var(--white);
  transition: background 0.3s, color 0.3s;
}
.lm-link:hover {
  background: var(--white); color: var(--black);
}

.lm-story-btn {
  display: block; width: 100%; text-align: center;
  background: var(--white); color: var(--black);
  padding: 20px; font-family: var(--font-heading);
  font-size: 16px; font-weight: 900; letter-spacing: 0.05em;
  transition: background 0.3s, opacity 0.3s;
}
.lm-story-btn span {
  display: block; font-size: 9px; font-weight: 700; opacity: 0.5;
  margin-top: 4px; letter-spacing: 0.2em;
}
.lm-story-btn:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .listen-modal-content { max-width: 90%; }
  .modal-crosses { display: none; }
  .lm-grid { grid-template-columns: 1fr; }
  .lm-header { height: 200px; }
}
