/* ═══════════════════════════════════════════════════════════
   Tori Fixx — styles.css
   Dark, bold, hip-hop editorial aesthetic
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg:       #000000;
  --bg2:      #0a0a0a;
  --surface:  #111111;
  --ink:      #f0ece4;
  --ink2:     #b8b2a6;
  --muted:    #6b6560;
  --accent:   #d42b2b;
  --accent-lt:#e8504f;
  --gold:     #c9a227;
  --line:     rgba(255,255,255,.07);
  --max:      1120px;
  --bebas:    'Bebas Neue', 'Impact', sans-serif;
  --ui:       'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ui);
  background: var(--bg);
  color: var(--ink2);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
strong { color: var(--ink); }
em { font-style: italic; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
header.site-header.scrolled {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: padding .3s;
}
header.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-bar {
  display: block;
  width: 4px;
  height: 28px;
  background: var(--accent);
  border-radius: 2px;
}
.logo-text { line-height: 1.1; }
.logo-name {
  font-family: var(--bebas);
  font-size: 20px;
  letter-spacing: .06em;
  color: var(--ink);
}
.logo-name .logo-dot { color: var(--accent); }
.logo-sub {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

nav.nav-links { display: flex; align-items: center; gap: 4px; }
nav.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--bebas);
  font-size: 15px;
  letter-spacing: .12em;
  color: var(--muted);
  border-radius: 4px;
  transition: color .15s, background .15s;
}
nav.nav-links a:hover {
  color: var(--ink);
  background: rgba(255,255,255,.05);
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 101;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}
/* Accent glow */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,43,43,.06) 0%, transparent 70%);
  top: -10%; left: -5%;
  animation: heroFloat 14s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

/* Background watermark text */
.hero-bg-text {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--bebas);
  font-size: clamp(20rem, 35vw, 40rem);
  line-height: 0.8;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  font-family: var(--bebas);
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--bebas);
  font-size: clamp(80px, 10vw, 140px);
  line-height: .88;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 .dot { color: var(--accent); }

.lead {
  font-size: 1.05rem;
  color: var(--ink2);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  font-family: var(--bebas);
  font-size: 16px;
  letter-spacing: .12em;
  border: none; cursor: pointer;
  transition: transform .12s, opacity .12s, background .2s;
  border-radius: 2px;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); opacity: .92; }
.btn.primary { background: var(--accent); color: #fff; }
.btn.primary:hover { background: var(--accent-lt); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(255,255,255,.18);
}
.btn.ghost:hover { border-color: rgba(255,255,255,.4); }
.btn svg { flex-shrink: 0; }

/* ── Chips ── */
.chip {
  display: inline-block;
  padding: 6px 14px;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  transition: color .15s, border-color .15s;
}
.chip:hover {
  color: var(--ink);
  border-color: rgba(255,255,255,.3);
}

/* ── Hero Card ── */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.card-header {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}
.card-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #1a1a1a 100%);
  flex-shrink: 0;
}
.card-name {
  font-family: var(--bebas);
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--ink);
}
.card-title {
  font-size: .8rem;
  color: var(--accent);
}
.card-loc {
  font-size: .75rem;
  color: var(--muted);
}
.card-stats { padding: 0; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
}
.stat-row:last-child { border-bottom: none; }
.stat-k {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.stat-v {
  font-size: .85rem;
  color: var(--ink);
  text-align: right;
}

/* ══════════════════════════════════════════════════════════
   PILLS BAR
   ══════════════════════════════════════════════════════════ */
.pills-bar {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow-x: auto;
}
.pills {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.pill {
  display: inline-block;
  padding: 6px 16px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}
.section-head {
  margin-bottom: 56px;
}
.section-label {
  display: block;
  font-family: var(--bebas);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section h2 {
  font-family: var(--bebas);
  font-size: clamp(40px, 5vw, 64px);
  line-height: .95;
  color: var(--ink);
  letter-spacing: .01em;
}
.section h2 em {
  font-style: normal;
  color: var(--accent);
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.about-col p {
  margin-bottom: 20px;
  line-height: 1.85;
}
.about-col p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 140px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.tl-item {
  position: relative;
  padding: 0 0 48px 40px;
}
.tl-item:last-child { padding-bottom: 0; }

/* Dot on the timeline */
.tl-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.tl-year {
  position: absolute;
  left: -140px;
  top: 0;
  font-family: var(--bebas);
  font-size: 28px;
  letter-spacing: .04em;
  color: var(--accent);
  width: 100px;
  text-align: right;
}
.tl-content h3 {
  font-family: var(--bebas);
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 6px;
}
.tl-content p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--ink2);
}

/* ══════════════════════════════════════════════════════════
   DISCOGRAPHY
   ══════════════════════════════════════════════════════════ */
.disco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.disco-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 28px 24px;
  transition: border-color .2s, transform .15s;
}
.disco-card:hover {
  border-color: rgba(212,43,43,.3);
  transform: translateY(-2px);
}
.disco-year {
  font-family: var(--bebas);
  font-size: 42px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.disco-title {
  font-family: var(--bebas);
  font-size: 20px;
  letter-spacing: .05em;
  color: var(--ink);
  margin-bottom: 4px;
}
.disco-note {
  font-size: .78rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   PRESS
   ══════════════════════════════════════════════════════════ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.press-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 28px 24px;
  transition: border-color .2s;
}
.press-card:hover {
  border-color: rgba(212,43,43,.25);
}
.press-src {
  display: inline-block;
  font-family: var(--bebas);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.press-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--ink2);
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.section-cta {
  padding: 120px 0;
}
.cta-block {
  text-align: center;
}
.cta-lead {
  font-size: 1.1rem;
  color: var(--ink2);
  margin-top: 16px;
  margin-bottom: 40px;
}
.stream-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.footer-name {
  font-family: var(--bebas);
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--ink);
  margin-bottom: 8px;
}
.footer-name span { color: var(--accent); }
.footer-copy {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card { max-width: 420px; }
  .hero { padding: 140px 0 80px; min-height: auto; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline { padding-left: 100px; }
  .timeline::before { left: 80px; }
  .tl-year {
    left: -100px;
    font-size: 22px;
    width: 70px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .nav-toggle { display: flex; }
  nav.nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(-100%);
    transition: transform .35s ease;
    z-index: 100;
  }
  nav.nav-links.open {
    transform: translateY(0);
  }
  nav.nav-links a {
    font-size: 28px;
    padding: 12px 24px;
  }

  .hero h1 { font-size: clamp(60px, 18vw, 100px); }
  .hero-bg-text { font-size: clamp(10rem, 30vw, 20rem); right: -10%; }

  .section { padding: 64px 0; }
  .section h2 { font-size: clamp(32px, 8vw, 48px); }

  .timeline { padding-left: 80px; }
  .timeline::before { left: 60px; }
  .tl-year { left: -80px; font-size: 18px; width: 55px; }
  .tl-content h3 { font-size: 18px; }

  .disco-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .stream-links { flex-direction: column; align-items: center; }
  .stream-links .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 380px) {
  .disco-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .35s; }
.d4 { animation-delay: .5s; }
