/* ================================================
   VUKANA LABEL — Design System
   ================================================ */

:root {
  --black: #080808;
  --white: #f5f0e8;
  --accent: #c9a84c;
  --accent-dim: rgba(201,168,76,0.15);
  --accent-glow: rgba(201,168,76,0.4);
  --gray-1: #111111;
  --gray-2: #1a1a1a;
  --gray-3: #2a2a2a;
  --gray-4: #444444;
  --gray-5: #888888;
  --text-muted: #666666;

  --font-sans: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

/* TYPOGRAPHY */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after { opacity: 0.05; }

.btn--primary {
  background: var(--accent);
  color: var(--black);
}

.btn--primary:hover {
  background: #e0b85a;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

.btn__play { font-size: 0.7rem; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

.nav__logo-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-5);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}
.nav__link--cta:hover {
  background: var(--accent-dim);
  color: var(--accent);
}
.nav__link--cta::after { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}

.hero__canvas-wrap {
  position: absolute;
  inset: 0;
}

#heroCanvas {
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
              linear-gradient(to right, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero__title-line { display: block; }

.hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  position: relative;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-5);
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-4);
  writing-mode: vertical-lr;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================
   IDENTITY
   ================================================ */
.identity {
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
}

.identity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.identity__desc {
  color: var(--gray-5);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.identity__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition);
}

.pillar:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.pillar__icon {
  grid-row: span 2;
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.pillar h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pillar p {
  color: var(--gray-5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.identity__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.identity__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.orb--1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent);
  top: -50px; right: -50px;
}

.orb--2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(150,50,200,0.08), transparent);
  bottom: 50px; left: -30px;
}

.identity__card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.identity__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
}

.identity__card-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1rem;
}

.identity__card-text {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.identity__card-author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-5);
}

.identity__marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
  padding: 0.8rem 0;
}

.marquee__track {
  display: flex;
  gap: 2rem;
  animation: marquee 15s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gray-4);
}

.marquee__track span:nth-child(even) { color: var(--accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================
   ARTISTS
   ================================================ */
.artists {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--gray-1);
}

.artists__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.artist-card {
  background: var(--gray-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-3);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.2);
}

.artist-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.artist-card__img {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  background-size: cover;
  background-position: center;
}

.artist-card__img--1 {
  background: linear-gradient(135deg, #1a0a00 0%, #3d2200 30%, #1a0a00 100%);
}
.artist-card__img--2 {
  background: linear-gradient(135deg, #001a0a 0%, #003d22 30%, #001a0a 100%);
}
.artist-card__img--3 {
  background: linear-gradient(135deg, #0a001a 0%, #22003d 30%, #0a001a 100%);
}
.artist-card__img--4 {
  background: linear-gradient(135deg, #1a1000 0%, #3d2a00 30%, #1a1000 100%);
}

.artist-card:hover .artist-card__img { transform: scale(1.05); }

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.artist-card:hover .artist-card__overlay { opacity: 1; }

.artist-card__play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition);
}

.artist-card__play:hover { transform: scale(1.1); }

.artist-card__info {
  padding: 1.5rem;
}

.artist-card__info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.artist-card__genre {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.artist-card__audio {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.audio-bar {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.audio-bar span {
  display: block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: audioBar 1.2s ease infinite;
}

.audio-bar span:nth-child(1) { height: 8px; animation-delay: 0s; }
.audio-bar span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.audio-bar span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.audio-bar span:nth-child(4) { height: 20px; animation-delay: 0.15s; }
.audio-bar span:nth-child(5) { height: 10px; animation-delay: 0.05s; }

@keyframes audioBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.audio-label {
  font-size: 0.75rem;
  color: var(--gray-5);
}

/* ================================================
   PROJECTS
   ================================================ */
.projects {
  padding: clamp(6rem, 12vw, 10rem) 0;
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-row {
  display: grid;
  grid-template-columns: 3rem 5rem 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-3);
  transition: background var(--transition);
  position: relative;
}

.project-row::before {
  content: '';
  position: absolute;
  inset: 0 -2rem;
  background: var(--gray-2);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
  z-index: -1;
}

.project-row:hover::before { opacity: 1; }

.project-row__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-4);
  letter-spacing: 0.1em;
}

.project-row__cover {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.project-row__cover--1 { background: linear-gradient(135deg, #3d2200, #c9a84c); }
.project-row__cover--2 { background: linear-gradient(135deg, #003d22, #2af598); }
.project-row__cover--3 { background: linear-gradient(135deg, #22003d, #9b4dc9); }
.project-row__cover--4 { background: linear-gradient(135deg, #3d3000, #c9b84c); }

.project-row__info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.project-row__info p { font-size: 0.8rem; color: var(--gray-5); }

.project-row__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-row__tags span {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--gray-3);
  border-radius: 99px;
  color: var(--gray-5);
  letter-spacing: 0.05em;
}

.project-row__cta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-row:hover .project-row__cta { opacity: 1; }

/* ================================================
   RADIO
   ================================================ */
.radio-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--gray-1);
}

.radio-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.radio-player-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-3);
  background: var(--gray-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: box-shadow var(--transition);
}

.radio-player-frame:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.2);
}

.radio-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: var(--gray-3);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  gap: 1rem;
}

.radio-live-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #ff4b4b;
  background: rgba(255,75,75,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  border: 1px solid rgba(255,75,75,0.3);
  flex-shrink: 0;
}

.radio-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4b4b;
  animation: livePulse 1.2s ease infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,75,75,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(255,75,75,0); }
}

.radio-player-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-5);
  letter-spacing: 0.05em;
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-open-link {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
}

.radio-open-link:hover { opacity: 1; transform: scale(1.1); }

.radio-iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

.radio-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.radio-desc {
  font-size: 1.05rem;
  color: var(--gray-5);
  line-height: 1.8;
}

.radio-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--white);
}

.radio-feature-icon {
  color: var(--accent);
  font-size: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .radio-wrap {
    grid-template-columns: 1fr;
  }
  .radio-iframe { height: 500px; }
  .radio-info { padding-top: 0; }
}

@media (max-width: 480px) {
  .radio-iframe { height: 420px; }
}

/* ================================================
   SOCIAL PROOF
   ================================================ */
.social-proof {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--gray-1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid var(--gray-3);
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat__unit {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--gray-5);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.testimonials { }

.testimonials > .section-label { margin-bottom: 2.5rem; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  padding: 2rem;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-lg);
  background: var(--gray-2);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial__avatar--1 { background: linear-gradient(135deg, #c9a84c, #3d2200); }
.testimonial__avatar--2 { background: linear-gradient(135deg, #2af598, #003d22); }
.testimonial__avatar--3 { background: linear-gradient(135deg, #9b4dc9, #22003d); }

.testimonial__author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testimonial__author span { font-size: 0.75rem; color: var(--gray-5); }

/* ================================================
   CONTACT
   ================================================ */
.contact {
  padding: clamp(6rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}

.contact__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.contact__bg-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent);
  top: -100px; left: -100px;
}

.contact__bg-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(150,50,200,0.05), transparent);
  bottom: -100px; right: -100px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact__desc {
  color: var(--gray-5);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__option {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.contact__option:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateX(4px);
}

.contact__option-icon {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact__option strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact__option span { font-size: 0.8rem; color: var(--gray-5); }

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-5);
  font-family: var(--font-mono);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}

.form-group select option { background: var(--gray-2); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-4); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-5);
  margin-top: 0.5rem;
}

/* ================================================
   SUBSCRIBE
   ================================================ */
.subscribe {
  padding: 4rem 0;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
  background: var(--gray-1);
}

.subscribe__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.subscribe__text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.subscribe__text p { color: var(--gray-5); font-size: 0.95rem; }

.subscribe__form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.subscribe__form input {
  padding: 0.9rem 1.2rem;
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  min-width: 250px;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.subscribe__form input:focus { border-color: var(--accent); }
.subscribe__form input::placeholder { color: var(--gray-4); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-3);
  margin-bottom: 2rem;
}

.footer__logo {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer__brand p { font-size: 0.9rem; color: var(--gray-5); }

.footer__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer__col a {
  font-size: 0.9rem;
  color: var(--gray-5);
  transition: color var(--transition-fast);
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-4);
}

.footer__bottom a { color: var(--accent); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .artists__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2.5rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid var(--gray-3);
  }

  .nav__links.open { transform: translateX(0); }

  .nav__link { font-size: 1rem; }
  .nav__link--cta { align-self: flex-start; }

  .nav__burger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .identity__grid { grid-template-columns: 1fr; }
  .identity__visual { display: none; }

  .artists__grid { grid-template-columns: 1fr 1fr; }

  .project-row {
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
  }
  .project-row__cover { display: none; }
  .project-row__tags { display: none; }
  .project-row__cta { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; }

  .subscribe__inner { flex-direction: column; align-items: flex-start; }
  .subscribe__form { width: 100%; }
  .subscribe__form input { min-width: unset; flex: 1; }

  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__links-grid { grid-template-columns: repeat(3, 1fr); }

  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .artists__grid { grid-template-columns: 1fr; }
  .footer__links-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
