/* ========================
   Reset & Base
   ======================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --white: #ffffff;
  --off-white: #fafafa;
  --light: #f2f2f2;
  --light-2: #e8e8e8;
  --gray: #999;
  --gray-dark: #555;
  --text: #111111;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

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

::selection {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

/* ========================
   Cursor Glow (desktop only)
   ======================== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(0,0,0,0.015) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow.active {
    opacity: 1;
  }
}

/* ========================
   Navigation
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.nav-logo-img {
  height: 52px;
  transition: opacity 0.3s;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link--ig {
  display: flex;
  align-items: center;
}

.nav-link--ig::after {
  display: none;
}

/* ========================
   Hero
   ======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--white);
  color: var(--text);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.04);
}

.hero-line:nth-child(1) { left: 20%; }
.hero-line:nth-child(2) { left: 40%; }
.hero-line:nth-child(3) { left: 50%; }
.hero-line:nth-child(4) { left: 60%; }
.hero-line:nth-child(5) { left: 80%; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-logo {
  width: clamp(280px, 50vw, 550px);
  animation: heroLogoIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  overflow: hidden;
}

.hero-tagline-line {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(100%);
}

.hero-tagline-line:nth-child(1) { animation-delay: 0.6s; }
.hero-tagline-line:nth-child(2) { animation-delay: 0.75s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.hero-cta:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================
   Marquee
   ======================== */
.marquee-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: var(--off-white);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 60s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-item::after {
  content: '\2022';
  color: rgba(0,0,0,0.12);
}

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

/* ========================
   Roster Section
   ======================== */
.roster {
  padding: 8rem 2rem 10rem;
  background: var(--white);
}

.roster-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.roster-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.roster-header-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.roster-title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gray);
  text-align: center;
  white-space: nowrap;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3px;
}

/* ========================
   Artist Card
   ======================== */
.artist-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  background: var(--light);
}

.artist-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  filter: grayscale(30%) brightness(0.9);
}

.artist-card:hover .artist-card-img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.5);
}

.artist-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    transparent 60%
  );
}

.artist-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover .artist-card-name {
  transform: translateY(0);
}

.artist-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ccc;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.05s;
}

.artist-card:hover .artist-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.artist-card-cta svg {
  transition: transform 0.3s ease;
}

.artist-card:hover .artist-card-cta svg {
  transform: translateX(4px);
}

/* Staggered reveal on scroll */
.artist-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Touch devices */
@media (hover: none) {
  .artist-card-img {
    filter: grayscale(10%) brightness(0.7);
  }
  .artist-card-name {
    transform: translateY(0);
  }
  .artist-card-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================
   Artist Expanded View
   ======================== */
.artist-expand {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.artist-expand.active {
  opacity: 1;
  pointer-events: all;
}

.artist-expand-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.artist-expand-content {
  position: relative;
  width: 92%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-expand-content::-webkit-scrollbar {
  width: 0;
}

.artist-expand.active .artist-expand-content {
  transform: translateY(0) scale(1);
}

.expand-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.expand-close:hover {
  background: var(--black);
}

.expand-wide {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.expand-wide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--white), transparent);
}

.expand-body {
  padding: 2rem 2.5rem 2.5rem;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.expand-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.expand-profile {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.expand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

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

.expand-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.expand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.expand-link:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.expand-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================
   Footer
   ======================== */
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3rem 2rem;
  background: var(--off-white);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-logo {
  height: 28px;
  opacity: 0.4;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray);
  transition: color 0.3s;
}

.footer-social-link:hover {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
}

.footer-copy {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 1024px) {
  .roster-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.85rem 1.25rem;
  }

  .nav-logo-img {
    height: 42px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-logo {
    width: clamp(220px, 70vw, 350px);
  }

  .roster {
    padding: 5rem 0 6rem;
  }

  .roster-header {
    margin-bottom: 3rem;
    padding: 0 1.25rem;
  }

  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .artist-card {
    aspect-ratio: 3 / 4;
  }

  .artist-card-overlay {
    padding: 1.25rem;
  }

  .artist-card-name {
    font-size: 0.95rem;
  }

  .artist-card-cta {
    font-size: 0.55rem;
    margin-top: 0.4rem;
  }

  .expand-wide {
    height: 200px;
  }

  .expand-body {
    padding: 1.5rem;
  }

  .expand-name {
    font-size: 1.4rem;
  }

  .expand-profile {
    width: 65px;
    height: 65px;
  }

  .expand-links {
    gap: 0.5rem;
  }

  .expand-link {
    padding: 0.6rem 1rem;
    font-size: 0.65rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .marquee-item {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-tagline-line {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
  }

  .hero-cta {
    font-size: 0.6rem;
    padding: 0.75rem 1.5rem;
  }
}

/* ========================
   Reduced motion
   ======================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
