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

:root {
  --black:      #000000;
  --dark:       #0a0a0a;
  --card:       #0f0f14;
  --border:     #1e1e2e;
  --purple:     #8b2fc9;
  --purple-mid: #a855f7;
  --purple-lt:  #c084fc;
  --purple-glow:#8b2fc980;
  --white:      #f0f0f8;
  --muted:      #9090a8;
  --nav-h:      70px;
}

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--purple-lt), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple-lt); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 5% 0;
  position: relative;
  overflow: hidden;
}

.hero-bg { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text { z-index: 1; }

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-mid);
  border: 1px solid var(--purple);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.hero-name {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-name span {
  background: linear-gradient(135deg, var(--purple-lt) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--muted);
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 30px var(--purple-glow);
}
.hero-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-image-wrap::before { display: none; }

.hero-photo {
  width: min(480px, 95%);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  border: none;
  position: relative;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 80% 85% at 50% 40%, black 35%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 85% at 50% 40%, black 35%, transparent 70%);
}

/* ── Section base ── */
section { padding: 6rem 5%; }
section + section { border-top: 1px solid var(--border); }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 3rem;
}

/* ── Clients band ── */
#clients { padding: 3rem 5%; }

.clients-title {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.clients-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.client-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s;
  forced-color-adjust: none;
}
.client-logo:hover { opacity: 1; }

/* ── Audio Players ── */
.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.audio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.audio-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(139,47,201,0.2);
}

.audio-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.audio-track-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-track-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.play-btn {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 14px var(--purple-glow);
}
.play-btn:hover { opacity: 0.85; transform: scale(1.06); }

.progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.progress-bar-bg {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--purple-lt));
  border-radius: 2px;
  transition: width 0.1s linear;
  pointer-events: none;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* ── Samply Embed ── */
.samply-wrap iframe {
  height: 500px;
}

/* ── Instagram Banner ── */
.ig-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ig-banner:hover {
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(139,47,201,0.2);
}

.ig-banner-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(69%) sepia(44%) saturate(500%) hue-rotate(230deg) brightness(110%);
}

.ig-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.ig-banner-handle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.ig-banner-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

.ig-banner-arrow {
  font-size: 1.3rem;
  color: var(--purple-lt);
  flex-shrink: 0;
}

/* ── Content Label Blocks ── */
.content-label-block {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.content-type-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-lt);
  background: rgba(139,47,201,0.15);
  border: 1px solid rgba(168,85,247,0.3);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  white-space: nowrap;
  margin-bottom: 0.5rem;
  display: block;
  width: fit-content;
}

.content-type-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}

/* ── Video Grid ── */
.yt-card {
  margin-bottom: 1.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.video-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(139,47,201,0.2);
}

.yt-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
  overflow: hidden;
}
.yt-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-wrap-short {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%; /* 9:16 */
  background: #000;
  overflow: hidden;
}
.yt-wrap-short iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.video-card-info {
  padding: 1rem 1.2rem;
}

.video-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.video-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-lt);
  background: rgba(139,47,201,0.15);
  border: 1px solid rgba(168,85,247,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  margin-top: 0.3rem;
}

/* ── Contact ── */
#contact { text-align: center; }
#contact .section-inner { display: flex; flex-direction: column; align-items: center; }
#contact .section-sub { text-align: center; }

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--purple-lt);
  text-decoration: none;
  border-bottom: 1px solid var(--purple);
  padding-bottom: 2px;
  transition: color 0.2s;
  margin-bottom: 2rem;
}
.contact-email:hover { color: var(--white); }

.contact-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--purple-lt);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--purple);
  transition: background 0.2s, color 0.2s;
}
.contact-btn:hover {
  background: var(--purple);
  color: #fff;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(69%) sepia(44%) saturate(500%) hue-rotate(230deg) brightness(110%);
}

/* ── Footer ── */
footer {
  padding: 2rem 5%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

footer a { color: var(--purple-lt); text-decoration: none; }
footer a:hover { color: var(--white); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-ig-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(69%) sepia(44%) saturate(500%) hue-rotate(230deg) brightness(110%);
}

/* ── Document Buttons ── */
.doc-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.doc-btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.doc-btn:hover {
  border-color: var(--purple-lt);
  color: var(--purple-lt);
  box-shadow: 0 0 16px rgba(139,47,201,0.2);
}

/* ── Hamburger (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Section spacing */
  section { padding: 4rem 5%; }
  #clients { padding: 2rem 5%; }

  /* Nav — hamburger */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(8, 8, 16, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 5%;
    font-size: 1rem;
  }
  nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  #hero { padding-bottom: 3rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-image-wrap { order: -1; }
  .hero-photo { width: min(280px, 75%); aspect-ratio: 3/4; }
  .hero-title { font-size: 0.95rem; }

  /* Clients */
  .clients-track { gap: 1.5rem; }
  .client-logo { height: 26px; }

  /* Samply */
  .samply-wrap iframe { height: 420px; }

  /* Videos — single column on mobile */
  .video-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-email { font-size: 0.9rem; word-break: break-all; }
  .contact-actions { flex-direction: column; align-items: center; }
  .footer-links { flex-direction: column; gap: 0.5rem; }

  /* Footer */
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
