:root {
  --bg: #090909;
  --surface: #111111;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #f6f3ed;
  --muted: #aaa39a;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #d7ad42;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: auto;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(9, 9, 9, 0.42);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.scrolled {
  padding-block: 12px;
  background: rgba(9, 9, 9, 0.78);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.section {
  position: relative;
  padding: clamp(78px, 10vw, 128px) clamp(18px, 5vw, 64px);
}

.hero {
  min-height: 92svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.soft-light {
  position: absolute;
  width: min(520px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.28;
  pointer-events: none;
}

.light-one {
  top: 12%;
  left: 8%;
  background: rgba(215, 173, 66, 0.28);
  animation: drift 10s ease-in-out infinite alternate;
}

.light-two {
  right: 8%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.1);
  animation: drift 12s ease-in-out infinite alternate-reverse;
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
  display: grid;
  justify-items: center;
}

.hero-mark {
  width: clamp(72px, 9vw, 112px);
  aspect-ratio: 1;
  margin-bottom: 22px;
  border-radius: 18px;
  object-fit: contain;
  border: 1px solid rgba(215, 173, 66, 0.18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42), 0 0 40px rgba(215, 173, 66, 0.08);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero p:not(.eyebrow),
.section-head p,
.simple-card p,
.dmca-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid rgba(215, 173, 66, 0.38);
  border-radius: 999px;
  background: rgba(215, 173, 66, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(215, 173, 66, 0.14);
}

.section-head {
  width: min(780px, 100%);
  margin-bottom: 28px;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.artist-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.artist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 173, 66, 0.52);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.artist-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  filter: grayscale(0.08) brightness(0.9);
  transition: transform 260ms ease, filter 180ms ease;
}

.artist-card:hover img {
  transform: scale(1.035);
  filter: grayscale(0) brightness(1);
}

.artist-card h3 {
  padding: 16px;
}

.simple-card,
.dmca-card,
.contact-info,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.simple-card,
.dmca-card {
  width: min(980px, 100%);
  padding: clamp(24px, 5vw, 48px);
}

.about {
  display: grid;
  justify-items: center;
}

.dmca-card a,
.contact-info a {
  color: var(--text);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.contact-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info p {
  margin-bottom: 0;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold);
}

.socials svg {
  width: 20px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(215, 173, 66, 0.58);
  background: rgba(0, 0, 0, 0.32);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.success {
  color: var(--gold);
}

.form-status.error {
  color: #ffb0a8;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(24px, -18px, 0);
  }
}

@media (max-width: 980px) {
  .artists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    z-index: 100;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 120;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: 18px;
    left: auto;
    bottom: auto;
    z-index: 110;
    width: min(240px, calc(100vw - 36px));
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(17, 17, 17, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    font-size: 1rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--text);
    opacity: 0.9;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 88svh;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
