/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --bg:           #0d0d0d;
  --surface:      #141414;
  --surface-2:    #1c1c1c;
  --text:         #e2e2e2;
  --text-muted:   #767676;
  --text-dim:     #3a3a3a;
  --purple:       #a855f7;
  --purple-dim:   rgba(168, 85, 247, 0.15);
  --green:        #4ade80;
  --green-dim:    rgba(74, 222, 128, 0.12);
  --border:       rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.14);
  --font-head:    'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── UTILITY ────────────────────────────────────────────────────────────── */
.label {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.22s; }
.fade-in.delay-3 { transition-delay: 0.34s; }
.fade-in.delay-4 { transition-delay: 0.46s; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s var(--ease), border-bottom 0.4s;
}
#nav.scrolled {
  background: rgba(13,13,13,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0.9;
}
.nav-logo span { color: var(--purple); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 8px 20px;
  border: 1px solid var(--purple);
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--purple);
  color: #fff;
}
.nav-toggle { display: none; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  transition: transform 0.1s linear;
}
.hero-img img { object-position: center top; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.55) 50%,
    rgba(13,13,13,0.75) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  max-width: 1100px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
  opacity: 0.9;
}
.hero-name {
  font-family: var(--font-head);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 6px;
}
.hero-title {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.5;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.22s var(--ease);
}
.btn-primary {
  background: var(--purple);
  color: #fff;
}
.btn-primary:hover { background: #9333ea; transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.8);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--purple);
  opacity: 0.5;
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

/* ─── SOUL SECTION ───────────────────────────────────────────────────────── */
#soul {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.soul-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.soul-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 35%, transparent 100%);
}
.soul-content {
  position: relative;
  max-width: 560px;
  padding: 80px 60px;
}
.soul-content .label { color: var(--green); margin-bottom: 28px; }
.soul-quote {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
}
.soul-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── SPLIT SECTIONS ─────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.split-img img {
  transition: transform 0.6s var(--ease);
}
.split-img:hover img { transform: scale(1.03); }

.split-text {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 60px;
}
.split-text .label { margin-bottom: 24px; }
.split-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.split-text p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 440px;
}
.split-accent {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--purple);
  margin-top: 32px;
}

/* ─── ABOUT / HUMAN ──────────────────────────────────────────────────────── */
#about {
  padding: 100px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-img {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.about-text .label { margin-bottom: 28px; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.25;
}
.about-text p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
}
.about-text p + p { margin-top: 18px; }

/* ─── BIO / PRESS ────────────────────────────────────────────────────────── */
#bio {
  background: var(--surface);
  padding: 80px 60px;
}
.bio-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}
.bio-text .label { margin-bottom: 28px; }
.bio-text h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.bio-text p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 560px;
}
.bio-facts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.bio-fact {
  background: var(--surface-2);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.bio-fact::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.bio-portrait {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 2px;
}

/* ─── MUSIC ──────────────────────────────────────────────────────────────── */
#music {
  padding: 100px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
#music .label { margin-bottom: 48px; }
#music h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 48px;
}
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 40px;
}
.music-card {
  background: var(--surface);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
}
.music-card:hover { background: var(--surface-2); }
.music-platform {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.music-platform.sc { color: rgba(255, 85, 0, 0.6); }
.music-platform.yt { color: rgba(255, 0, 0, 0.5); }
.music-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.music-arrow {
  font-size: 20px;
  color: var(--text-dim);
  margin-top: auto;
  padding-top: 16px;
  transition: color 0.2s, transform 0.2s;
}
.music-card:hover .music-arrow {
  color: var(--purple);
  transform: translateX(5px);
}

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
#gallery {
  background: var(--surface);
  padding: 80px 60px;
}
.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-inner .label { margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  transition: transform 0.5s var(--ease), filter 0.3s;
  filter: grayscale(20%);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
#contact {
  padding: 100px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .label { margin-bottom: 32px; }
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 32px;
}
.contact-row {
  background: var(--surface);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.contact-row:hover { background: var(--surface-2); }
.contact-row-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}
.contact-row-value {
  font-size: 14px;
  color: var(--text);
  text-align: right;
}
.availability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { height: 140px; }

.btn-submit {
  background: var(--purple);
  color: #fff;
  padding: 16px 32px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: #9333ea; transform: translateY(-1px); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}
.footer-name span { color: var(--purple); }
footer p {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-dim);
}

/* ─── MOBILE NAV ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s;
  }

  #nav { padding: 0 24px; }
  .hero-content { padding: 0 24px 60px; }
  .hero-scroll { display: none; }

  #soul { min-height: auto; }
  .soul-overlay { background: linear-gradient(to bottom, var(--bg) 0%, rgba(13,13,13,0.85) 100%); }
  .soul-content { padding: 64px 24px; }

  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img { min-height: 300px; }
  .split-text { padding: 48px 24px; }

  #about { grid-template-columns: 1fr; gap: 40px; padding: 72px 24px; }
  .about-img { position: relative; top: 0; aspect-ratio: 16/10; }

  #bio { padding: 64px 24px; }
  .bio-inner { grid-template-columns: 1fr; gap: 40px; }

  #music { padding: 72px 24px; }

  #gallery { padding: 64px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  #contact { grid-template-columns: 1fr; gap: 48px; padding: 72px 24px; }

  footer { padding: 24px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
