:root {
  color-scheme: dark;
  --bg: #070708;
  --ink: #f4f0ea;
  --muted: #a49d94;
  --quiet: #67605a;
  --line: rgba(244, 240, 234, 0.13);
  --violet: #8b5cff;
  --wine: #2b1029;
  --steel: #b9bcc4;
  --amber: #c19a61;
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(139, 92, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #080809 0%, #0d0c0c 52%, #070708 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.82), rgba(7, 7, 8, 0));
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

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

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

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 240, 234, 0.16);
  color: var(--ink);
  place-items: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(244, 240, 234, 0.08);
  border-color: rgba(244, 240, 234, 0.45);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  padding: 128px clamp(18px, 4vw, 56px) 72px;
  overflow: hidden;
  place-items: end start;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.72) 36%, rgba(7, 7, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.12), rgba(7, 7, 8, 0.68));
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(780px, 100%);
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(4.4rem, 15vw, 13rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-line {
  max-width: 620px;
  margin-bottom: 34px;
  color: #ded8cf;
  font-size: clamp(1.35rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button-primary {
  background: var(--ink);
  color: #070708;
}

.button-secondary {
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  border-color: rgba(244, 240, 234, 0.55);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(244, 240, 234, 0.08);
}

.split-section,
.instrumentals-section,
.work-section,
.contact-section {
  padding: clamp(72px, 12vw, 150px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(34px, 8vw, 120px);
  overflow: hidden;
}

.visual-section {
  min-height: clamp(560px, 74vh, 780px);
  align-items: end;
  background: #070708;
}

.visual-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.94) 0%, rgba(7, 7, 8, 0.76) 38%, rgba(7, 7, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.36), rgba(7, 7, 8, 0.88));
}

.visual-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 74% 30%, rgba(139, 92, 255, 0.14), transparent 22rem);
  mix-blend-mode: screen;
}

.artist-section::before {
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.78) 40%, rgba(7, 7, 8, 0.26) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.28), rgba(7, 7, 8, 0.86));
}

.section-visual {
  position: absolute;
  inset: 0;
}

.section-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.88) contrast(1.06);
}

.artist-section .section-visual img {
  object-position: 76% center;
}

.section-title,
.visual-section .section-copy {
  position: relative;
  z-index: 2;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 6vw, 6.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.section-copy {
  align-self: end;
  max-width: 540px;
  color: #d5cec4;
  font-size: clamp(1.08rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.18;
}

.section-copy p {
  margin-bottom: 20px;
}

.section-copy p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.instrumentals-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(34px, 8vw, 120px);
  min-height: clamp(520px, 66vh, 720px);
  align-items: end;
  overflow: hidden;
  background: #070708;
}

.instrumentals-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.95) 0%, rgba(7, 7, 8, 0.76) 42%, rgba(7, 7, 8, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.22), rgba(7, 7, 8, 0.88));
}

.instrumentals-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 72% 42%, rgba(139, 92, 255, 0.11), transparent 22rem);
  mix-blend-mode: screen;
}

.instrumentals-visual {
  position: absolute;
  inset: 0;
}

.instrumentals-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  filter: saturate(0.86) contrast(1.08) brightness(0.88);
}

.instrumentals-section > div:not(.instrumentals-visual) {
  position: relative;
  z-index: 2;
}

.instrumentals-copy {
  align-self: end;
  max-width: 500px;
}

.instrumentals-copy p {
  margin-bottom: 24px;
  color: #d5cec4;
  font-size: clamp(1.08rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.18;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(244, 240, 234, 0.42);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: rgba(244, 240, 234, 0.84);
}

.section-heading {
  margin-bottom: 34px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  min-width: 0;
}

.work-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  object-fit: cover;
  background-color: #111;
}

.work-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
}

.work-meta h3 {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.work-meta p {
  max-width: 170px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: right;
}

.contact-section {
  min-height: 56vh;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 18% 52%, rgba(139, 92, 255, 0.12), transparent 24rem),
    #070708;
}

.contact-section h2 {
  max-width: 1040px;
  margin-bottom: 22px;
}

.contact-note {
  max-width: 560px;
  margin-bottom: 32px;
  color: #d5cec4;
  font-size: clamp(1.04rem, 1.8vw, 1.42rem);
  font-weight: 500;
  line-height: 1.2;
}

.contact-link {
  width: fit-content;
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 2.1rem);
  font-weight: 700;
  border-bottom: 1px solid rgba(244, 240, 234, 0.42);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .header-right {
    align-items: flex-end;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    max-width: 210px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.18) 0%, rgba(7, 7, 8, 0.48) 34%, rgba(7, 7, 8, 0.96) 100%);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .instrumentals-section {
    grid-template-columns: 1fr;
    min-height: 600px;
  }

  .instrumentals-section::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.18) 0%, rgba(7, 7, 8, 0.58) 42%, rgba(7, 7, 8, 0.95) 100%);
  }

  .instrumentals-visual img {
    object-position: center top;
  }

  .visual-section {
    min-height: 620px;
  }

  .visual-section::before,
  .artist-section::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.18) 0%, rgba(7, 7, 8, 0.62) 42%, rgba(7, 7, 8, 0.95) 100%);
  }

  .section-visual img,
  .artist-section .section-visual img {
    object-position: center top;
  }

  .section-copy {
    align-self: start;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding-top: 18px;
  }

  .brand {
    font-size: 0.82rem;
  }

  .header-right {
    gap: 10px;
  }

  .nav {
    font-size: 0.72rem;
  }

  .social-links a {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 116px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.4rem);
  }

  .hero-line {
    font-size: clamp(1.38rem, 9vw, 2.2rem);
  }

  .button {
    width: 100%;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-meta {
    gap: 12px;
  }

  .contact-section {
    min-height: 48vh;
  }
}
