:root {
  --bg: #150f12;
  --surface: #1e1418;
  --surface-2: #2a1922;
  --rose: #ca7298;
  --rose-soft: rgba(202, 114, 152, .16);
  --rose-dim: #916078;
  --text: #f4e9ec;
  --text-muted: #a48b91;
  --gold: #e3ac52;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

.eyebrow-mono {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--rose);
  margin-bottom: 1rem;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(21, 15, 18, .75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(202, 114, 152, .12);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .05em;
}
.nav-brand .dot { color: var(--rose); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--bg);
  background: var(--rose);
  padding: .55rem 1.1rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--gold); }

/* HERO */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.2rem, 6vw, 4rem);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: .95;
  letter-spacing: .01em;
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--rose);
}
.hero-sub {
  margin-top: 1.5rem;
  max-width: 42ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

/* TIMELINE / SKILLS */
.timeline {
  padding: 6rem clamp(1.2rem, 6vw, 4rem);
  background: var(--surface);
}
.timeline-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: .01em;
}
.tracks {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.track {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}
@media (min-width: 720px) {
  .track { grid-template-columns: 220px 1fr; align-items: center; gap: 1.5rem; }
}
.track-label {
  font-weight: 500;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  padding: .2rem .45rem;
  border-radius: 2px;
  letter-spacing: .04em;
}
.tag-v { background: var(--rose-soft); color: var(--rose); }
.tag-a { background: rgba(227, 172, 82, .16); color: var(--gold); }
.tag-c { background: rgba(244, 233, 236, .1); color: var(--text-muted); }
.tag-fx { background: var(--rose-soft); color: var(--rose); }

.track-lane {
  background: var(--surface-2);
  border-radius: 3px;
  padding: .8rem 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .6s ease, transform .6s ease;
}
.track.visible .track-lane {
  opacity: 1;
  transform: translateX(0);
}
.clip {
  font-size: .85rem;
  color: var(--text-muted);
  border-left: 2px solid var(--rose);
  padding-left: .8rem;
}

/* REEL */
.reel {
  padding: 6rem clamp(1.2rem, 6vw, 4rem);
}
.reel h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: .3rem;
}
.reel-sub {
  margin-top: 1rem;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: .9rem;
}
.reel-sub code {
  font-family: var(--font-mono);
  background: var(--surface-2);
  padding: .1rem .35rem;
  border-radius: 2px;
  font-size: .82rem;
}
.reel-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .reel-grid { grid-template-columns: repeat(3, 1fr); }
}
.reel-card {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.reel-card video,
.reel-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: var(--surface-2);
  border: 1px solid rgba(202, 114, 152, .2);
}
.reel-title {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ABOUT */
.about {
  padding: 6rem clamp(1.2rem, 6vw, 4rem);
  max-width: 62ch;
  background: var(--surface);
}
.about p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
}
.tools {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .06em;
}
.tools span {
  border: 1px solid rgba(202, 114, 152, .3);
  color: var(--rose);
  padding: .4rem .7rem;
  border-radius: 2px;
}

/* CONTACT */
.contact {
  padding: 7rem clamp(1.2rem, 6vw, 4rem) 5rem;
  text-align: center;
}
.contact h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: 2rem;
}
.contact-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--bg);
  background: var(--rose);
  padding: 1rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s ease;
}
.contact-cta:hover { background: var(--gold); }
.socials {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .78rem;
}
.socials a { color: var(--text-muted); text-decoration: none; }
.socials a:hover { color: var(--rose); }

footer {
  padding: 1.8rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--text-muted);
  background: var(--surface);
  border-top: 1px solid rgba(244, 233, 236, .08);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .track-lane { transition: none; }
}
