:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f5f5f5;
  --muted: #b5b5bb;
  --line: rgba(255, 255, 255, 0.12);
  --red: #a10718;
  --red-bright: #d41429;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(164, 10, 30, 0.20), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(164, 10, 30, 0.12), transparent 25%),
    linear-gradient(180deg, #040404 0%, #09090a 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 108px 18px 28px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.48)),
    url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(212, 20, 41, 0.25), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content,
.hero-side-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
}

.hero-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-topline p {
  color: #d8d8dc;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.hero-line {
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 18px;
}

.hero h1 span:first-child {
  font-size: clamp(3.3rem, 14vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero h1 .ghost {
  font-size: clamp(3.2rem, 13vw, 7.2rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 650px;
  color: #d1d1d6;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.btn {
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), #73030f);
  box-shadow: 0 14px 35px rgba(164, 10, 30, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e2e6;
  font-size: 0.85rem;
}

.hero-side-card {
  margin-top: 34px;
  max-width: 340px;
  margin-left: auto;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.mini-label,
.section-kicker,
.card-label,
.contact-type {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #bdbdc4;
}

.hero-side-card h2 {
  margin-top: 12px;
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 700;
}

.sound-section,
.about-section,
.collabs-section,
.visuals-section,
.quote-section,
.contact-section {
  padding: 84px 18px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2,
.about-left h2,
.contact-left h2 {
  margin-top: 10px;
  max-width: 700px;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.sound-grid {
  display: grid;
  gap: 14px;
}

.sound-card {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  min-height: 200px;
  box-shadow: var(--shadow);
}

.sound-card.featured {
  background:
    radial-gradient(circle at top right, rgba(212, 20, 41, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
}

.sound-card h3 {
  margin: 12px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.sound-card p {
  color: var(--muted);
  line-height: 1.75;
}

.about-section {
  display: grid;
  gap: 24px;
  align-items: start;
}

.about-right {
  display: grid;
  gap: 18px;
}

.about-right p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.collab-grid {
  display: grid;
  gap: 14px;
}

.collab-card {
  padding: 24px;
  min-height: 120px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.collab-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 20, 41, 0.14), transparent 40%);
  pointer-events: none;
}

.collab-featured {
  min-height: 220px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}

.collab-featured h3 {
  font-size: 1.5rem;
  margin: 12px 0 10px;
  letter-spacing: -0.03em;
}

.collab-featured p:last-child {
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
}

.collab-name {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.visual-layout {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.visual-large img,
.visual-stack img,
.visual-bottom-grid img {
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.visual-large img {
  height: 420px;
}

.visual-stack {
  display: grid;
  gap: 14px;
}

.visual-stack img {
  height: 203px;
}

.visual-bottom-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.visual-bottom-grid img {
  height: 220px;
}

.quote-box {
  border-radius: 28px;
  padding: 34px 24px;
  background:
    radial-gradient(circle at left top, rgba(212,20,41,0.2), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}

.quote-box p {
  font-size: clamp(1.6rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  max-width: 780px;
}

.contact-section {
  display: grid;
  gap: 26px;
  align-items: start;
}

.contact-right {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  transition: 0.25s ease;
}

.contact-card strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
}

.site-footer {
  padding: 24px 18px 40px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .site-header {
    padding: 20px 34px;
  }

  .hero {
    padding: 140px 34px 36px;
  }

  .sound-section,
  .about-section,
  .collabs-section,
  .visuals-section,
  .quote-section,
  .contact-section {
    padding: 110px 34px;
  }

  .sound-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .sound-card.featured {
    grid-row: span 2;
    min-height: 100%;
  }

  .about-section {
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
  }

  .collab-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .collab-featured {
    grid-column: span 3;
  }

  .visual-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .visual-bottom-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-section {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
  }
}

@media (min-width: 1100px) {
  .hero,
  .sound-section,
  .about-section,
  .collabs-section,
  .visuals-section,
  .quote-section,
  .contact-section {
    max-width: 1320px;
    margin: 0 auto;
  }

  .hero {
    grid-template-columns: 1.2fr 0.55fr;
    gap: 36px;
    align-items: end;
  }

  .hero-side-card {
    margin-top: 0;
    margin-bottom: 22px;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .sound-card h3,
  .collab-featured h3 {
    font-size: 1.5rem;
  }

  .about-right p {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 0.78rem;
  }

  .hero h1 span:first-child {
    font-size: 3.5rem;
  }

  .hero h1 .ghost {
    font-size: 3.35rem;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .visual-large img,
  .visual-stack img,
  .visual-bottom-grid img {
    height: 250px;
  }

  .collab-card {
    min-height: 110px;
  }

  .collab-featured {
    min-height: 200px;
  }
}