:root {
  --bg-main: #08090d;
  --bg-card: #12141c;
  --text-main: #f4f5f8;
  --text-muted: #b4b7c4;
  --accent-cyan: #33d9ff;
  --accent-magenta: #ff4fd8;
  --accent-orange: #ff9d3d;
  --border-soft: rgba(255, 255, 255, 0.12);
  --bg-soft: #0d0f16;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--accent-magenta);
  color: #08090d;
}

a {
  color: inherit;
}

p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--text-main);
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
}

h3 {
  font-size: 1.15rem;
}

.site-header {
  background: var(--bg-soft);
}

.navbar {
  align-items: center;
  background: rgba(8, 9, 13, 0.94);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 1rem max(1rem, calc((100vw - var(--max-width)) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--text-main);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  border-radius: 999px;
  color: var(--text-muted);
  display: inline-block;
  font-size: 0.95rem;
  padding: 0.45rem 0.75rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(51, 217, 255, 0.1);
  color: var(--text-main);
}

.hero {
  align-items: end;
  background-image: url("../header/header.png");
  background-position: center;
  background-size: cover;
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 5rem max(1rem, calc((100vw - var(--max-width)) / 2));
  position: relative;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 9, 13, 0.9), rgba(8, 9, 13, 0.64) 48%, rgba(8, 9, 13, 0.3)), linear-gradient(0deg, rgba(8, 9, 13, 0.96), rgba(8, 9, 13, 0.05) 45%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--text-main);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  max-width: 720px;
}

.construction-badge {
  border: 1px solid rgba(255, 157, 61, 0.55);
  border-radius: 999px;
  color: var(--accent-orange);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-left: 0.55rem;
  padding: 0.18rem 0.55rem;
  vertical-align: middle;
  white-space: nowrap;
}

.hero-intro {
  max-width: 700px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  transition: border 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  color: #07080c;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-soft);
  color: var(--text-main);
}

.button-small {
  background: rgba(51, 217, 255, 0.1);
  border-color: rgba(51, 217, 255, 0.35);
  color: var(--text-main);
  font-size: 0.92rem;
  min-height: 40px;
  padding: 0.6rem 0.85rem;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 4.5rem 1rem;
}

.section-narrow {
  max-width: 820px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.75rem;
}

.card-grid,
.music-grid,
.image-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.style-card,
.music-card,
.image-card,
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
}

.image-card {
  color: inherit;
  display: grid;
  gap: 1rem;
  grid-template-columns: 96px minmax(0, 1fr);
  min-height: 156px;
  overflow: hidden;
  padding: 1rem;
  text-decoration: none;
  transition: border 180ms ease, transform 180ms ease;
}

.image-card:hover {
  border-color: rgba(51, 217, 255, 0.55);
  transform: translateY(-2px);
}

.image-card img,
.music-thumb,
.track-hero-image {
  aspect-ratio: 1 / 1;
  background: #090a10;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.image-card img {
  max-width: 96px;
}

.image-card h3 {
  margin-bottom: 0.45rem;
}

.style-card {
  min-height: 170px;
  padding: 1.25rem;
  position: relative;
}

.style-card::before {
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 1rem;
  width: 56px;
}

.accent-cyan::before {
  background: var(--accent-cyan);
}

.accent-magenta::before {
  background: var(--accent-magenta);
}

.accent-orange::before {
  background: var(--accent-orange);
}

.text-link {
  color: var(--accent-cyan);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.final-cta {
  align-items: center;
  background: linear-gradient(135deg, rgba(51, 217, 255, 0.1), rgba(255, 79, 216, 0.1));
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max-width)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max-width)) / 2));
}

.final-cta h2 {
  margin: 0;
  max-width: 760px;
}

.page-header {
  border-bottom: 1px solid var(--border-soft);
}

.page-title {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 4.5rem 1rem 3.5rem;
}

.page-title p {
  max-width: 760px;
}

.music-section {
  border-bottom: 1px solid var(--border-soft);
}

.music-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 1.15rem;
}

.music-card-linked {
  color: inherit;
  text-decoration: none;
  transition: border 180ms ease, transform 180ms ease;
}

.music-card-linked:hover {
  border-color: rgba(255, 79, 216, 0.5);
  transform: translateY(-2px);
}

.music-thumb {
  margin-bottom: 1rem;
  max-width: 200px;
}

.music-card p {
  margin-bottom: 0.65rem;
}

.music-card strong {
  color: var(--text-main);
}

.audio-placeholder {
  align-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-muted);
  display: flex;
  font-size: 0.9rem;
  justify-content: center;
  margin: auto 0 1rem;
  min-height: 56px;
  padding: 0.75rem;
}

.status {
  color: var(--accent-orange);
  font-size: 0.9rem;
  font-weight: 800;
}

.music-card-placeholder {
  background: linear-gradient(180deg, rgba(18, 20, 28, 0.94), rgba(18, 20, 28, 0.72));
}

.breadcrumb {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.track-detail {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.track-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1.25rem;
}

.track-meta {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0;
}

.track-meta div {
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 0.8rem;
}

.track-meta dt {
  color: var(--accent-cyan);
  font-weight: 800;
}

.track-meta dd {
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.clean-list {
  color: var(--text-muted);
  columns: 2;
  list-style: square;
  padding-left: 1.2rem;
}

.clean-list li::marker {
  color: var(--accent-magenta);
}

.contact-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
}

.contact-email {
  color: var(--text-main);
  font-size: 1.25rem;
  font-weight: 800;
}

.note {
  color: var(--accent-orange);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  padding: 1.25rem;
}

.contact-form label {
  color: var(--text-main);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  background: #090a10;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text-main);
  font: inherit;
  padding: 0.8rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-cyan);
  outline: 2px solid rgba(51, 217, 255, 0.18);
}

.form-message {
  background: rgba(255, 157, 61, 0.12);
  border-radius: 8px;
  color: var(--text-main);
  display: none;
  margin: 0;
  padding: 0.8rem;
}

.form-message.is-visible {
  display: block;
}

.rights-text p {
  border-left: 3px solid rgba(51, 217, 255, 0.55);
  padding-left: 1rem;
}

.mentions-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.mentions-list div {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1rem;
}

.mentions-list dt {
  color: var(--accent-cyan);
  font-weight: 800;
}

.mentions-list dd {
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 2rem 1rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .card-grid,
  .music-grid,
  .image-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section,
  .track-detail,
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
  }

  .hero {
    min-height: 680px;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .card-grid,
  .music-grid,
  .image-card-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .image-card img {
    max-width: 82px;
  }

  .clean-list {
    columns: 1;
  }

  .section {
    padding-bottom: 3.25rem;
    padding-top: 3.25rem;
  }
}
