:root {
  --bg: #090908;
  --dark: #11110f;
  --ink: #f1eee7;
  --muted: #aaa59b;
  --line: rgba(255, 255, 255, 0.15);
  --paper: #e7e1d6;
  --gold: #a98959;
  --pad: clamp(24px, 5vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #f4f0e8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  background: #f4f0e8;
  color: #111;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  background: linear-gradient(rgba(9, 9, 8, 0.5), transparent);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(9, 9, 8, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 13px/1 Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.nav a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.nav-external {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 7px;
  border: 0;
  background: none;
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform 0.2s ease;
}

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

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

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px var(--pad) 95px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  object-position: center 38%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.42) 50%, rgba(0, 0, 0, 0.1) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.kicker,
.eyebrow {
  color: #d1ccc1;
  font: 500 12px/1.4 Manrope, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.display,
.section-title,
.studio-copy h2,
.contact h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.hero h1 {
  margin: 20px 0 20px;
  font-size: clamp(54px, 7.5vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hero h1 em,
.display em,
.section-title em,
.studio-copy h2 em,
.contact h2 em {
  font-weight: 500;
}

.hero-tagline {
  margin: 0 0 12px;
  color: #f2ede4;
  font: 500 clamp(18px, 2vw, 24px)/1.4 Manrope, sans-serif;
}

.hero-intro {
  max-width: 650px;
  margin: 0;
  color: #d6d0c5;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 21px;
  border: 1px solid currentColor;
  font: 600 12px/1 Manrope, sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-light {
  border-color: #f4f0e8;
  background: #f4f0e8;
  color: #111;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(9, 9, 8, 0.3);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-index {
  position: absolute;
  right: var(--pad);
  bottom: 26px;
  left: var(--pad);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #aaa;
  font: 500 10px/1 Manrope, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(80px, 10vw, 145px) var(--pad);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 500 11px/1 Manrope, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--gold);
}

.section-label p {
  margin: 0;
}

.manifesto {
  background: var(--dark);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 8vw;
  margin-top: 60px;
}

.display {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.manifesto-copy {
  color: #c8c2b8;
  font-size: 17px;
  line-height: 1.7;
}

.manifesto-copy p:first-child {
  margin-top: 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 75px;
  border-top: 1px solid var(--line);
}

.principles article {
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}

.principles article + article {
  padding-left: 28px;
}

.principles article:last-child {
  border-right: 0;
}

.principles span {
  color: var(--gold);
  font-size: 10px;
}

.principles h3 {
  margin: 18px 0 10px;
  font: 500 22px/1.2 Manrope, sans-serif;
}

.principles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.artists {
  background: var(--bg);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.section-title {
  margin: 26px 0 0;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-note {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.65;
}

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

.artist-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #141412;
}

.artist-card-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.artist-card-image img {
  transition: transform 0.6s ease;
}

.artist-card:hover .artist-card-image img {
  transform: scale(1.025);
}

.artist-card-content {
  display: flex;
  min-height: 310px;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
}

.artist-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.artist-card-top > span {
  color: var(--muted);
  font: 500 10px/1.3 Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.artist-number {
  margin: 0;
  color: var(--gold);
  font: 500 10px/1.3 Manrope, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artist-card h3 {
  margin: 38px 0 16px;
  font: 600 clamp(34px, 3.6vw, 54px)/0.9 "Playfair Display", serif;
  letter-spacing: -0.045em;
}

.artist-genre {
  margin: 0;
  font: 500 11px/1.5 Manrope, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-statement {
  margin: auto 0 0;
  padding-top: 34px;
  color: #cbc5ba;
  font: 500 clamp(20px, 2vw, 27px)/1.18 "Playfair Display", serif;
}

.artist-komori {
  border-color: rgba(0, 0, 0, 0.12);
  background: var(--paper);
  color: #161612;
}

.artist-komori .artist-card-top > span,
.artist-komori .artist-statement {
  color: #5b564d;
}

.artist-nerian {
  background: #1a1918;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.releases {
  background: #0f0f0d;
}

.release-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 8vw;
}

.release-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.65;
}

.release-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.release-list article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 1fr) minmax(160px, 0.7fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

.release-list article > span {
  color: var(--gold);
  font: 600 11px/1 Manrope, sans-serif;
  letter-spacing: 0.18em;
}

.release-list h3 {
  margin: 0;
  font: 500 clamp(24px, 2.5vw, 38px)/1 "Playfair Display", serif;
}

.release-list p,
.release-list strong {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio {
  display: grid;
  grid-template-columns: 48% 52%;
  background: var(--paper);
  color: #141412;
}

.studio-image {
  min-height: 700px;
}

.studio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9vw 8vw;
}

.studio-copy .section-label {
  margin-bottom: 32px;
}

.studio-copy .eyebrow {
  color: #5d574e;
}

.studio-copy h2 {
  margin: 18px 0 28px;
  font-size: clamp(44px, 5.2vw, 80px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.studio-copy > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #514c43;
  font-size: 17px;
  line-height: 1.65;
}

.studio-services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.studio-services span {
  padding: 10px 13px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact {
  background: #0b0b0a;
}

.contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 7vw;
}

.contact h2 {
  margin: 24px 0 22px;
  font-size: clamp(52px, 7vw, 106px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.contact-intro {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 28px;
}

.contact-mail {
  display: flex;
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  gap: 20px;
  overflow-wrap: anywhere;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 2vw, 29px);
}

.contact-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 85px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.contact-bottom a {
  align-self: flex-start;
  color: var(--ink);
}

.contact-bottom p {
  margin: 0;
  text-align: right;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 30px var(--pad);
  border-top: 1px solid var(--line);
  color: #8d887f;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

.footer-brand {
  color: #e7e2d9;
}

/* Nick profile support */
.nick-back:hover,
.nick-back:focus-visible {
  color: var(--ink);
}

@media (max-width: 1050px) {
  .nav {
    gap: 22px;
  }

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

  .artist-card {
    display: grid;
    grid-template-columns: minmax(280px, 42%) 1fr;
  }

  .artist-card-image {
    height: 100%;
    min-height: 360px;
    aspect-ratio: auto;
  }

  .artist-card-content {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px var(--pad) 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 9, 8, 0.98);
    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    min-height: 48px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-external {
    padding-left: 0;
    border-left: 0;
  }

  .manifesto-grid,
  .release-heading,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .release-heading {
    gap: 36px;
  }

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

  .principles article,
  .principles article + article {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .release-list article {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 16px;
    padding: 20px 0;
  }

  .release-list p {
    display: none;
  }

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

  .studio-image {
    min-height: 55vh;
  }

  .studio-copy {
    padding: 75px var(--pad);
  }

  .contact-top {
    gap: 50px;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 125px;
    padding-bottom: 82px;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero h1 {
    font-size: clamp(48px, 14.5vw, 66px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-index {
    display: none;
  }

  .artist-card {
    display: flex;
  }

  .artist-card-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .artist-card-content {
    min-height: 285px;
  }

  .artist-card h3 {
    font-size: 42px;
  }

  .release-list article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .release-list strong {
    grid-column: 2;
  }

  .contact-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-bottom p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
