:root {
  --bg: #050505;
  --panel: rgba(14, 14, 16, 0.88);
  --text: rgba(247, 244, 239, 0.96);
  --muted: rgba(247, 244, 239, 0.66);
  --faint: rgba(247, 244, 239, 0.18);
  --line: rgba(247, 244, 239, 0.11);
  --accent: #dfe5e7;
  --accent-2: #6c828a;
  --max: 1280px;
  --gutter: clamp(18px, 4vw, 42px);
  --shadow: 0 28px 80px rgba(0,0,0,0.56);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.07), transparent 18%),
    radial-gradient(circle at 80% 22%, rgba(108,130,138,0.18), transparent 20%),
    linear-gradient(180deg, #050505 0%, #060607 54%, #040404 100%);
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent 18%, transparent 82%, rgba(255,255,255,0.02));
  z-index: 0;
}

.grain,
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.26'/%3E%3C/svg%3E");
  opacity: 0.1;
  mix-blend-mode: soft-light;
}
.glow { filter: blur(60px); opacity: 0.35; }
.glow--left { background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%); top: -16vw; left: -18vw; width: 54vw; height: 54vw; }
.glow--right { background: radial-gradient(circle, rgba(108,130,138,0.18), transparent 62%); bottom: -12vw; right: -16vw; width: 56vw; height: 56vw; }

.container {
  width: min(var(--max), calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}
.header.is-scrolled .header__inner {
  padding: 14px 18px;
  background: rgba(6,6,7,0.84);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #b8c0c4);
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
}
.brand__text {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--text);
}

.menu {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.menu a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
}
.menu a:hover { color: var(--text); }

.hero {
  position: relative;
  padding: 22px 0 132px;
  margin-bottom: 18px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  min-height: calc(100vh - 110px);
  align-items: stretch;
}
.hero__socials {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.hero__socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--text);
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.hero__socials a:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 14px 28px rgba(0,0,0,0.4);
}
.hero__socials a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero__media {
  position: relative;
  min-height: calc(100vh - 150px);
}
.hero__video-shell {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: #050506;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: 47% center;
  transform: scale(1.08);
  z-index: 0;
}
.hero__video-shell::before,
.hero__video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero__video-shell::before {
  background: linear-gradient(115deg, rgba(255,255,255,0.12), transparent 38%, rgba(0,0,0,0.45));
  z-index: 1;
  pointer-events: none;
}
.hero__video-shell::after {
  background:
    radial-gradient(circle at 70% 42%, rgba(255,255,255,0.16), transparent 12%),
    radial-gradient(circle at 57% 58%, rgba(0,0,0,0.88), transparent 24%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.82));
  z-index: 1;
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(5,5,5,0.5);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--text);
  text-decoration: none;
}

.hero__copy {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  height: auto;
  padding-bottom: 0;
}
.eyebrow {
  margin: 0;
  font-family: "Azeret Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.68rem;
  color: var(--muted);
}
.hero h1,
.section h2,
.footer h2 {
  margin: 12px 0 16px;
  font-family: "Michroma", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  max-width: 10ch;
}
.hero__role {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  font-size: 0.76rem;
}
.hero__lede,
.section p,
.contact__details p,
blockquote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.98rem;
}
.hero__lede { max-width: 54ch; }
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button--solid {
  background: linear-gradient(180deg, #f5f3ef, #cfd4d7);
  color: #040405;
}
.button--ghost {
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.button--ghost:hover { background: rgba(255,255,255,0.08); }

.section {
  padding: 132px 0;
  position: relative;
}
.section__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}
.section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.22), transparent);
}

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

.spotify-embed {
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 20px;
  background: #111;
}
.spotify-embed--inline {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  width: 100%;
  display: block;
}
.spotify-inline {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 420px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,11,0.58);
  box-shadow: var(--shadow);
}
.spotify-inline__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
  margin-bottom: 10px;
}
.spotify-inline__note {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Azeret Mono", monospace;
  font-size: 0.64rem;
}

.work-card,
.merch-card,
.tile,
blockquote,
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}
.work-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.work-card__thumb,
.merch-card__image,
.tile {
  position: relative;
  overflow: hidden;
}
.work-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  object-fit: cover;
}
.work-card__thumb--link {
  text-decoration: none;
  background: #040405;
}
.work-card__thumb--link img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.work-card__play {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(5,5,5,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Azeret Mono", monospace;
  font-size: 0.62rem;
}
.merch-card__image::after,
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
}
.work-card__thumb--a {
  background: radial-gradient(circle at 32% 36%, rgba(255,255,255,0.22), transparent 14%), linear-gradient(145deg, #1a1b1f, #070708 65%, #040405);
}
.work-card__thumb--b {
  background: radial-gradient(circle at 60% 34%, rgba(108,130,138,0.26), transparent 14%), linear-gradient(145deg, #17181c, #050506 65%, #0a0b0d);
}
.work-card__thumb--c {
  background: radial-gradient(circle at 54% 40%, rgba(255,255,255,0.14), transparent 15%), linear-gradient(145deg, #202225, #060607 60%, #050506);
}
.work-card__meta {
  padding: 20px;
}
.work-card__meta span,
.merch-card__meta span,
.contact__details span,
blockquote footer {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Azeret Mono", monospace;
  font-size: 0.58rem;
}
.work-card__meta h2,
.work-card__credit,
.merch-card__meta strong {
  margin: 0 0 10px;
  font-family: "Michroma", sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.15;
  letter-spacing: 0.16em;
}
.work-card__credit {
  color: rgba(247,244,239,0.88);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}
.work-card__meta p {
  max-width: none;
}

.soundcloud-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.soundcloud-panel__copy h2 {
  margin-top: 10px;
}
.soundcloud-panel__copy p {
  max-width: 62ch;
}
.soundcloud-embed {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #0d0f10;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.soundcloud-embed-wrap {
  display: grid;
  gap: 8px;
  width: 100%;
}
.soundcloud-attrib {
  max-width: 100%;
  opacity: 0.86;
}

.tile {
  min-height: 360px;
  border-radius: 26px;
  display: flex;
  align-items: end;
  padding: 18px;
  box-shadow: var(--shadow);
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile span {
  position: relative;
  z-index: 1;
  font-family: "Azeret Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
}
.tile--one {
  background: radial-gradient(circle at 48% 34%, rgba(255,255,255,0.22), transparent 18%), linear-gradient(145deg, #1d1e22, #050506);
}
.tile--two {
  background: radial-gradient(circle at 58% 34%, rgba(108,130,138,0.26), transparent 18%), linear-gradient(145deg, #17181b, #040405);
}
.tile--three {
  background: radial-gradient(circle at 40% 42%, rgba(255,255,255,0.16), transparent 16%), linear-gradient(145deg, #141518, #060607);
}

.merch-card {
  border-radius: 24px;
  overflow: hidden;
}
.merch-card__image {
  aspect-ratio: 1;
}
.merch-card__image--shirt {
  background: linear-gradient(145deg, #0f1012, #23262a 52%, #050506);
}
.merch-card__image--vinyl {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.24) 0 6%, transparent 6.5%), linear-gradient(145deg, #1b1d20, #050506 55%, #0b0c0d);
}
.merch-card__image--poster {
  background: radial-gradient(circle at 60% 30%, rgba(108,130,138,0.2), transparent 18%), linear-gradient(145deg, #191b1d, #060607);
}
.merch-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
}

.section--dark {
  margin: 18px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}
.section#spotify { background: linear-gradient(180deg, rgba(108,130,138,0.08), rgba(255,255,255,0.01)); }
.section#featured-work { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
.section#recent { background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02)); }
.section#artwork { background: linear-gradient(180deg, rgba(108,130,138,0.05), rgba(255,255,255,0.01)); }
.section#merch { background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.03)); }
.section#services { background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.025)); }
.section#testimonials { background: linear-gradient(180deg, rgba(108,130,138,0.045), rgba(255,255,255,0.01)); }
.section#contact { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005)); }
.narrow {
  width: min(860px, 100%);
}
.centered {
  text-align: center;
}
.centered .service-pills {
  justify-content: center;
}
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.service-pills span {
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Azeret Mono", monospace;
  font-size: 0.64rem;
}

.testimonials blockquote {
  margin: 0;
  padding: 22px;
  border-radius: 24px;
}
.testimonials blockquote p {
  font-size: 1.04rem;
}
.testimonials blockquote footer {
  margin-top: 22px;
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}
.contact__details {
  display: grid;
  gap: 16px;
}
.contact__details p {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-form {
  border-radius: 24px;
  padding: 20px;
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(247,244,239,0.38); }

.footer {
  padding: 12px 0 40px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: "Azeret Mono", monospace;
  font-size: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section h2,
.footer h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 1100px) {
  .hero__inner,
  .contact,
  .grid--three {
    grid-template-columns: 1fr;
  }
  .hero__copy {
    height: auto;
    justify-content: flex-start;
  }
  .hero__socials {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    transform: none;
    margin: 18px 0 26px;
  }
  .hero__media {
    height: 58vh;
  }
}

@media (max-width: 780px) {
  :root {
    --gutter: 16px;
  }
  .container {
    width: min(var(--max), calc(100vw - (var(--gutter) * 2)));
  }
  .container,
  .hero__inner,
  .contact,
  .grid--three,
  .soundcloud-panel,
  .work-card,
  .merch-card,
  blockquote,
  .contact-form {
    min-width: 0;
  }
  .menu-toggle { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 12px);
    padding: 18px;
    border-radius: 22px;
    background: rgba(6,6,7,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 14px;
  }
  .menu.is-open { display: flex; }
  .header__inner {
    position: relative;
    padding: 10px 0;
    align-items: center;
  }
  .brand__text {
    letter-spacing: 0.22em;
    font-size: 0.64rem;
    max-width: 100%;
  }
  .hero {
    padding: 8px 0 96px;
    margin-bottom: 0;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: unset;
    align-items: stretch;
  }
  .hero__copy {
    order: -1;
    padding-left: 0;
    padding-bottom: 0;
    height: auto;
    min-width: 0;
  }
  .hero__copy > .eyebrow { order: 1; }
  .hero__copy > h1 { order: 2; }
  .hero__copy > .hero__role { order: 3; }
  .hero__copy > .hero__lede { order: 4; }
  .hero__copy > .spotify-inline { order: 5; }
  .hero__copy > .hero__actions { order: 6; }
  .hero__media {
    order: 0;
    height: clamp(320px, 72vw, 460px);
    min-width: 0;
  }
  .hero__socials {
    justify-content: center;
    margin: 6px 0 12px;
    gap: 16px;
  }
  .hero__socials a {
    font-size: 0.64rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 11vw, 3.4rem);
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .hero__lede,
  .section p,
  .contact__details p,
  blockquote p {
    font-size: 0.95rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .soundcloud-attrib {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .eyebrow,
  .hero__role,
  .work-card__meta span,
  .work-card__credit,
  .merch-card__meta strong,
  .merch-card__meta span,
  .service-pills span,
  .contact__details span,
  .menu a,
  .footer__inner,
  .soundcloud-attrib {
    line-height: 1.35;
  }
  .eyebrow,
  .hero__role,
  .work-card__meta span,
  .work-card__credit,
  .merch-card__meta strong,
  .merch-card__meta span,
  .service-pills span,
  .contact__details span,
  .menu a,
  .footer__inner,
  .hero__socials a {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .button {
    width: 100%;
  }
  .spotify-inline {
    margin-top: 12px;
    padding: 14px;
    min-height: 0;
    height: clamp(540px, 92vw, 700px);
    overflow: hidden;
  }
  .spotify-inline__head {
    margin-bottom: 12px;
  }
  .spotify-embed--inline {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    align-self: stretch;
  }
  .section__head {
    gap: 14px;
    margin-bottom: 28px;
  }
  .section__line {
    opacity: 0.5;
  }
  .section {
    padding: 72px 0;
  }
  .grid {
    gap: 16px;
  }
  .soundcloud-panel {
    padding: 14px;
  }
  .soundcloud-embed-wrap iframe {
    height: 320px;
  }
  .work-card__meta,
  .testimonials blockquote,
  .contact-form,
  .merch-card__meta {
    padding-left: 16px;
    padding-right: 16px;
  }
  .merch-card__meta {
    align-items: center;
  }
  .contact {
    gap: 18px;
  }
  .contact-form textarea {
    min-height: 140px;
  }
  .service-pills {
    justify-content: center;
  }
  .service-pills span {
    text-align: center;
    max-width: 100%;
  }
  .contact__details p,
  blockquote p,
  .work-card__meta p,
  .soundcloud-panel__copy p,
  .hero__lede {
    max-width: 100%;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
