@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Barlow+Condensed:wght@300;400;600;700;800&family=Barlow:ital,wght@0,300;0,400;1,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --red: #d63b1f;
  --red-dim: rgba(214,59,31,0.12);
  --red-glow: rgba(214,59,31,0.06);
  --white: #ffffff;
  --muted: #777777;
  --border: rgba(255,255,255,0.07);
  --border-red: rgba(214,59,31,0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::selection { background: var(--red); color: var(--white); }

/* CUSTOM CURSOR */
* { cursor: none !important; }
nav, nav *, a, button, [role="button"] { cursor: pointer !important; }

#cursor {
  width: 14px; height: 14px;
  background: var(--red);
  border: 2px solid #000;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.15s;
}
#cursor.grow { width: 22px; height: 22px; }
#cursor.hand { opacity: 0; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem 2.5rem;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-links-left {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links-left a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer !important;
}

.nav-links-left a:hover,
.nav-links-left a.active { color: var(--red); }

.nav-logo {
  font-family: 'Michroma', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: color 0.25s;
  cursor: pointer !important;
}

.nav-logo:hover { color: var(--white); }

.nav-social {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  align-items: center;
}

.nav-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer !important;
}

.nav-social a:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
}

.nav-social svg { width: 17px; height: 17px; fill: currentColor; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #333;
}

.footer-copy {
  font-size: 0.72rem;
  color: #333;
}

@media (max-width: 768px) {
  nav { grid-template-columns: 1fr auto; padding: 1rem 1.5rem; }
  .nav-links-left { display: none; }
  .nav-social { display: none; }
  footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* HAMBURGER */
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:4px; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--white); }
.mobile-menu { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(10,10,10,0.97); z-index:400; flex-direction:column; align-items:center; justify-content:center; gap:2rem; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:'Barlow Condensed',sans-serif; font-size:1.8rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--white); text-decoration:none; transition:color 0.2s; }
.mobile-menu a:hover { color:var(--red); }
.mobile-close { position:absolute; top:1.5rem; right:1.5rem; background:none; border:none; color:var(--white); font-size:2rem; line-height:1; }
.mobile-socials { display:flex; gap:1rem; margin-top:1rem; }
.mobile-socials a { width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; color:var(--white); text-decoration:none; }
.mobile-socials svg { width:16px; height:16px; fill:currentColor; }

@media (max-width: 768px) {
  nav { grid-template-columns: auto 1fr auto; padding: 1rem 1.5rem; }
  .nav-links-left { display: none; }
  .nav-social { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { text-align: left; font-size: 0.85rem; }

  /* INNER PAGES */
  body { padding-top: 60px; }
  section, .page-wrap { padding: 3rem 1.25rem; }

  /* BIO */
  .bio-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bio-photo img { height: 55vw; min-height: 260px; }
  .stat-row { gap: 1.5rem; }
  .stat-num { font-size: 1.3rem; }

  /* JOURNEY */
  .journey-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .carousel-wrap { position: static; }
  .phone-frame { max-width: 220px; }

  /* MUSIC */
  .dsp-grid { grid-template-columns: 1fr 1fr; }
  .dsp-card { aspect-ratio: 1/1; }
  .dsp-name { font-size: 1.1rem; }

  /* CONNECT */
  .connect-grid { grid-template-columns: 1fr; gap: 2rem; }
  .connect-img { max-height: 260px; object-fit: cover; }

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

  /* PAGE HEADINGS */
  .page-heading { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 1.5rem; }
}
