:root {
  --ink: #111111;
  --paper: #f8f7f2;
  --white: #ffffff;
  --muted: #66615a;
  --line: rgba(17, 17, 17, 0.14);
  --moss: #6f7768;
  --clay: #b07d62;
  --charcoal: #20201d;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(248, 247, 242, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 247, 242, 0.95);
  border-bottom-color: var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 78px;
  min-width: 78px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 112px clamp(20px, 6vw, 88px) 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 247, 242, 0.88), rgba(248, 247, 242, 0.45)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.035) 0 1px, transparent 1px 112px);
  content: "";
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 42vw;
  height: 34vh;
  background: color-mix(in srgb, var(--moss) 20%, transparent);
  content: "";
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__content {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.hero__logo {
  width: min(100%, 520px);
  margin: 0 auto 34px;
  filter: drop-shadow(0 24px 44px rgba(17, 17, 17, 0.1));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 12vw, 10.5rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.hero__lead {
  max-width: 670px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.intro-band {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 6vw, 88px);
  background: var(--ink);
  color: var(--paper);
}

.intro-band p {
  max-width: var(--max);
  margin: 0 auto;
  font-size: clamp(1.55rem, 4vw, 3.6rem);
  font-weight: 680;
  line-height: 1.02;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(68px, 10vw, 124px) clamp(20px, 4vw, 32px);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
}

.section__copy {
  color: var(--charcoal);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.section__copy p {
  margin-bottom: 22px;
}

.section__copy p:last-child {
  margin-bottom: 0;
}

.statement {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: end;
  padding: clamp(62px, 9vw, 112px) clamp(20px, 6vw, 88px);
  background: #e6e2d7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement > * {
  max-width: 660px;
}

.statement p:not(.eyebrow) {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section__topline {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section__topline > p {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

#works .section__topline {
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: start;
}

#works .section__topline > p {
  max-width: 760px;
  text-align: left;
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(300px, 1fr);
  min-height: 320px;
  border: 1px solid var(--line);
  background: var(--white);
}

.release-panel__image {
  width: 100%;
  height: 100%;
  min-height: 352px;
  object-fit: cover;
  object-position: center;
}

.release-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3.4vw, 38px);
}

.release-panel__content p {
  max-width: 520px;
  color: var(--muted);
}

.spotify-embed {
  display: block;
  width: 100%;
  max-width: 620px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
}

.text-link {
  width: fit-content;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roster {
  border-top: 1px solid var(--line);
}

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

.roster-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.roster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #ece8dd;
}

.roster-card div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  padding: 16px;
}

.roster-card h3 {
  margin: 0 0 10px;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  font-weight: 780;
  line-height: 1.04;
}

.roster-card__alias,
.roster-card__role {
  margin: 0;
}

.roster-card__alias {
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.roster-card__role {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.roster__topline {
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: start;
  align-items: start;
}

.roster__topline > p {
  max-width: 760px;
  text-align: left;
}

.contact {
  padding: clamp(72px, 12vw, 150px) clamp(20px, 6vw, 88px);
  background: var(--charcoal);
  color: var(--paper);
}

.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.contact .eyebrow {
  color: #d9aa83;
}

.contact h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(0.98rem, 1.38vw, 1.2rem);
  font-weight: 520;
  line-height: 1.45;
}

.contact__prompt {
  margin: 0 0 14px;
  color: #d9aa83;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact__mail {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  border-bottom: 2px solid currentColor;
  font-size: clamp(1.35rem, 4.5vw, 4rem);
  font-weight: 760;
  line-height: 1.1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 88px);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

  .brand-mark {
    width: 64px;
    min-width: 64px;
  }

  .nav-toggle {
    display: grid;
    position: relative;
    z-index: 22;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 96px 28px 36px;
    background: var(--paper);
    font-size: 1.35rem;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .hero {
    min-height: 94vh;
    padding: 96px 20px 92px;
  }

  .hero__logo {
    width: min(100%, 330px);
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 7.2rem);
  }

  .section--split,
  .statement,
  .section__topline,
  .roster__topline,
  .release-panel {
    grid-template-columns: 1fr;
  }

  .release-panel__image {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .release-panel__content {
    padding: 18px;
  }

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

  .roster-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .roster-card img {
    height: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .roster-card div {
    min-height: 116px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero__lead {
    font-size: 1rem;
  }

  .intro-band p {
    font-size: 1.55rem;
  }

  .roster-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .roster-card img,
  .roster-card div {
    min-height: 0;
  }

  .roster-card div {
    padding: 16px;
  }

  .roster-card h3 {
    font-size: 1rem;
  }
}
