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

:root {
  --red: #D62828;
  --red-dark: #a01f1f;
  --red-glow: rgba(214, 40, 40, 0.18);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #181818;
  --white: #f4f0eb;
  --grey: #888;
}

html {
  scroll-behavior: smooth;
}

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

a, button, .artist-card, .session-option {
  cursor: none;
}

.cursor {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transform: translate(-200px, -200px);
  transition: width 0.2s, height 0.2s;
}

.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transform: translate(-200px, -200px);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0.6;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(26,58,42,0.07);
  padding: 16px 60px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
    z-index: 101;
    position: relative;
  }

  .hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
  }

  .nav-links li {
    overflow: hidden;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links li:first-child {
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 6px;
    color: rgba(244, 240, 235, 0.4);
    display: block;
    padding: 22px 40px;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, color 0.2s, background 0.2s;
  }

  .nav-links.open a {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li:nth-child(1) a {
    transition-delay: 0.08s;
  }

  .nav-links li:nth-child(2) a {
    transition-delay: 0.14s;
  }
  
  .nav-links li:nth-child(3) a {
    transition-delay: 0.20s;
  }
  
  .nav-links li:nth-child(4) a {
    transition-delay: 0.26s;
  }

  .nav-links a:hover {
    color: var(--white);
    background: rgba(214, 40, 40, 0.06);
  }

  .nav-links li:nth-child(1) a::before {
    content: '01 — ';
    color: var(--red);
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .nav-links li:nth-child(2) a::before {
    content: '02 — ';
    color: var(--red);
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .nav-links li:nth-child(3) a::before {
    content: '03 — ';
    color: var(--red);
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .nav-links li:nth-child(4) a::before {
    content: '04 — ';
    color: var(--red);
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

#hero {
  min-height: 112vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(214,40,40,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(214,40,40,0.07) 0%, transparent 60%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-line {
  position: absolute;
  top: 0;
  left: 60px;
  width: 1px;
  height: 100vh;
  background: linear-gradient(to bottom, transparent, rgba(214,40,40,0.4) 40%, rgba(214,40,40,0.1) 100%);
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.88;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.hero-title .red {
  color: var(--red);
}

.hero-sub {
  margin-top: 28px;
  font-size: 1rem;
  color: var(--grey);
  font-weight: 300;
  max-width: 380px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 0.25s, transform 0.15s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(244,240,235,0.2);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: pulse-line 2s infinite;
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  background: var(--black-2);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center; 
  gap: 32px;
  padding: 0 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--grey);
}

.marquee-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

section {
  padding: 120px 60px;
}

.section-tag {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
}

.section-body {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 480px;
}

#about {
  background: var(--black-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 420px;
}

.about-box {
  position: absolute;
  border: 1px solid rgba(214,40,40,0.25);
}

.about-box-1 {
  inset: 0;
  background: linear-gradient(135deg, var(--black-3), #1a0a0a);
}

.about-box-2 {
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border-color: rgba(255,255,255,0.04);
  z-index: -1;
}

.about-box-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(214,40,40,0.12), transparent 60%);
}

.about-big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 30px;
  left: 30px;
}

.about-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

#artists {
  background: var(--black);
}

.artists-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.artist-card {
  background: var(--black-3);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid rgba(255,255,255,0.04);
}

.artist-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.artist-card:hover {
  background: #161616;
}

.artist-card:hover::before { 
  transform: scaleX(1);
}

.artist-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 32px;
}

.artist-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.artist-genre {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}

.artist-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 1.4rem;
  color: var(--grey);
  transition: transform 0.25s, color 0.25s;
}

.artist-card:hover .artist-arrow {
  transform: translate(4px, -4px);
  color: var(--red);
}

#book {
  background: var(--black-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.book-form {
  display: flex; flex-direction: column; gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--grey); font-weight: 600;
}

.form-group input,

.form-group select,

.form-group textarea {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group select option {
  background: var(--black-3);
}

.form-group textarea {
  min-height: 110px;
}

.book-info {
  padding-top: 8px;
}

.book-info .section-body {
  margin-bottom: 48px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(214,40,40,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
}

.info-item-title {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.info-item-val {
  font-size: 0.92rem; font-weight: 500;
}

#studio {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.studio-visual {
  height: 360px;
  position: relative;
  background: linear-gradient(135deg, #0d0d0d, #1a0505);
  border: 1px solid rgba(214,40,40,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.studio-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 80px;
}

.wf-bar {
  width: 4px;
  background: var(--red);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}

.studio-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(214,40,40,0.08), transparent 70%);
}

.studio-sessions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.session-option {
  flex: 1;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.session-option:hover,
.session-option.active {
  border-color: var(--red);
  background: rgba(214,40,40,0.05);
}

.session-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.session-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--red);
}

.session-duration {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 1px;
}

footer {
  background: var(--black-2);
  padding: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
}

.footer-logo span {
  color: var(--red);
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--grey);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes marquee {
  0%   {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-line {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.visible {
  opacity: 1; transform: translateY(0);
}

@media (max-width: 900px) {
  nav {
    padding: 20px 28px;
  }
  nav.scrolled {
    padding: 14px 28px;
  }
  .nav-links {
    display: none;
  }
  #hero {
    padding: 0 28px 60px;
  }
  .hero-line {
    left: 28px;
  }
  .hero-scroll {
    right: 28px;
  }
  section {
    padding: 80px 28px;
  }
  #about, #book, #studio {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    height: 300px;
  }
  .artists-grid {
    grid-template-columns: 1fr 1fr;
  }
  .artists-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}