:root {
  --ink: #090706;
  --charcoal: #17120f;
  --espresso: #261813;
  --paper: #f8f2e9;
  --smoke: #ece4d8;
  --ivory: #fffaf2;
  --line: rgba(9, 7, 6, .16);
  --line-light: rgba(248, 242, 233, .2);
  --muted: #796d61;
  --gold: #c4a15b;
  --copper: #9b5632;
  --wine: #4f151a;
  --blue: #1f5968;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.52;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1rem;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--ivory);
  transition: background .2s ease, border-color .2s ease;
}
.site-header.is-scrolled {
  background: rgba(9, 7, 6, .9);
  border-bottom: 1px solid rgba(248, 242, 233, .12);
}
.brand, .footer-brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .12em;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: .08rem;
  line-height: 1;
  white-space: nowrap;
}
.brand span { font-size: .78rem; opacity: .8; }
.brand strong { font-weight: 400; font-size: clamp(1.08rem, 2vw, 1.45rem); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.55rem);
}
.site-nav a, .eyebrow {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-nav a {
  opacity: .88;
  transition: color .18s ease, opacity .18s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--gold);
}
.menu-toggle { display: none; }

.page-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}
.page-hero-compact {
  min-height: 68vh;
  min-height: 68svh;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.08) brightness(.78);
}
.hero-shade {
  background:
    radial-gradient(circle at 30% 20%, rgba(196, 161, 91, .22), transparent 28rem),
    linear-gradient(90deg, rgba(9,7,6,.85), rgba(9,7,6,.3) 56%, rgba(9,7,6,.72)),
    linear-gradient(180deg, rgba(9,7,6,.34), rgba(9,7,6,.12) 42%, rgba(9,7,6,.9));
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 8rem clamp(1rem, 5vw, 5rem) 6rem;
  max-width: 92rem;
}
.page-hero-compact .hero-content {
  padding-bottom: 4.5rem;
}
.hero-content h1 {
  max-width: 17ch;
  margin: 1rem 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 10.8vw, 10.5rem);
  line-height: .87;
  letter-spacing: 0;
}
.page-hero-compact .hero-content h1 {
  max-width: 18ch;
  font-size: clamp(3.1rem, 8.2vw, 7.6rem);
}
.hero-content h1 span {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.hero-copy {
  max-width: 48rem;
  margin: .25rem 0 0;
  color: rgba(255, 250, 242, .9);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .82rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button-light {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.button-ghost {
  color: var(--ivory);
  background: rgba(255, 250, 242, .08);
  border-color: rgba(255, 250, 242, .48);
}
.button-dark {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--copper);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
}
.intro, .producer-feature, .producer-page, .editorial-section, .licensing-section, .form-section, .contact-band, .split-dark, .section-heading {
  display: grid;
  grid-template-columns: minmax(12rem, .72fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro-kicker p:last-child {
  max-width: 20rem;
  margin: 1rem 0 0;
  color: var(--muted);
}
h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}
.intro-copy h2,
.producer-copy h2,
.editorial-copy h2,
.licensing-copy h2,
.form-intro h2,
.contact-band h2,
.split-dark h2,
.section-heading h2,
.simple-content h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5.35rem);
  line-height: .96;
}
.intro-copy p,
.producer-copy p,
.editorial-copy p,
.licensing-copy p,
.form-intro p,
.split-dark p,
.simple-content p {
  max-width: 52rem;
  color: #302822;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}
.muted { color: var(--muted); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--smoke);
}
.feature-strip article {
  min-height: 21rem;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.feature-strip article:last-child { border-right: 0; }
.feature-strip span, .service-card span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
}
.feature-strip h3, .service-card h3, .profile-card h3 {
  margin: .75rem 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}
.feature-strip p, .service-card p {
  margin: 0;
  color: #453a31;
}

.producer-feature {
  background:
    linear-gradient(135deg, rgba(196, 161, 91, .12), transparent 30rem),
    var(--paper);
}
.credit-panel {
  min-height: 26rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(rgba(9, 7, 6, .4), rgba(9, 7, 6, .82)),
    url("../images/bass-detail.jpg") center / cover;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.credit-panel-large { min-height: 34rem; }
.credit-panel span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
}
.credit-panel ul {
  display: grid;
  gap: .65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.credit-panel li {
  padding-top: .65rem;
  border-top: 1px solid rgba(255, 250, 242, .28);
}
.credit-panel-nick {
  background:
    linear-gradient(rgba(9, 7, 6, .18), rgba(9, 7, 6, .82)),
    url("../images/profile-nick-tauber.png") center / cover;
}

.editorial-section, .licensing-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr);
  align-items: center;
}
.editorial-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.clean-list, .license-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.clean-list li, .license-list li {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  color: #302822;
}

.split-dark, .dark-section {
  background: var(--ink);
  color: var(--ivory);
}
.split-dark p, .dark-section p, .dark-section .section-heading h2 {
  color: rgba(255, 250, 242, .82);
}
.split-dark h2, .dark-section h2 { color: var(--ivory); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.four-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card {
  min-height: 18rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(145deg, rgba(196, 161, 91, .14), transparent 46%),
    var(--smoke);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.dark-section .cards {
  background: var(--line-light);
  border-color: var(--line-light);
}
.dark-section .service-card {
  background:
    linear-gradient(145deg, rgba(196, 161, 91, .16), transparent 46%),
    var(--charcoal);
}
.dark-section .service-card p { color: rgba(255, 250, 242, .72); }

.licensing-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.licensing-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}
.licensing-media-grid img:first-child { margin-top: 4rem; }
.profiles-section {
  background: var(--paper);
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.profile-card {
  background: var(--ivory);
}
.profile-card-text {
  position: relative;
  min-height: 20rem;
  background:
    linear-gradient(145deg, rgba(196, 161, 91, .16), transparent 46%),
    linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(247, 242, 235, .98));
}
.profile-card-text::before {
  content: "";
  display: block;
  height: .35rem;
  background: linear-gradient(90deg, var(--gold), var(--copper));
}
.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.profile-card-person img {
  aspect-ratio: 16 / 9;
  object-position: center;
}
.profile-card div { padding: clamp(1.15rem, 2.5vw, 1.8rem); }
.profile-card-text div {
  display: flex;
  min-height: 19.65rem;
  flex-direction: column;
}
.profile-card-person div {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
}
.profile-card span {
  color: var(--copper);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.profile-card p { color: #453a31; }
.profile-card-text h3 {
  margin-top: .85rem;
}
.profile-card-text .profile-links {
  margin-top: auto;
  padding-top: 1rem;
}
.profile-card-person .profile-links {
  margin-top: auto;
  padding-top: 1rem;
}
.track-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #453a31;
}
.track-list li + li { margin-top: .25rem; }
.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}
.profile-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 1rem;
  overflow: hidden;
  background: var(--ink);
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-band {
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--wine);
  color: var(--ivory);
}
.contact-band h2 { color: var(--ivory); }
.contact-routes {
  display: grid;
  gap: .75rem;
}
.contact-routes a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 250, 242, .24);
  text-decoration: none;
}
.contact-routes span {
  color: var(--gold);
  font-weight: 700;
}

.form-section {
  align-items: start;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: .45rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form .website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: #453a31;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}
.contact-form .consent input {
  width: auto;
  min-width: 1.1rem;
  margin-top: .15rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, .42);
  color: var(--ink);
  padding: 1rem;
  outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 161, 91, .18);
}
.form-note {
  margin: .6rem 0 0;
  grid-column: 1 / -1;
  color: var(--muted);
}

.simple-content {
  max-width: 58rem;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}
.simple-content h3 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.site-footer {
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.site-footer p {
  max-width: 25rem;
  color: rgba(255, 250, 242, .68);
}
.footer-links {
  display: grid;
  gap: .55rem;
  align-content: start;
  text-align: right;
}
.footer-links a { color: rgba(255, 250, 242, .82); }

@media (max-width: 1050px) {
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.25rem;
    background: rgba(9, 7, 6, .97);
    color: var(--ivory);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a { font-size: 1rem; }
  .menu-toggle {
    display: inline-grid;
    gap: .35rem;
    border: 0;
    background: transparent;
    color: inherit;
    padding: .65rem;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 1.75rem;
    height: 2px;
    background: currentColor;
  }
  .intro, .producer-feature, .producer-page, .editorial-section, .licensing-section, .form-section, .contact-band, .split-dark, .section-heading {
    grid-template-columns: 1fr;
  }
  .feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-strip article:nth-child(2) { border-right: 0; }
  .feature-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards, .four-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 13rem; }
  .profile-grid { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 680px) {
  .site-header { padding: .85rem 1rem; }
  .brand span { font-size: .68rem; }
  .brand strong { font-size: 1.08rem; }
  .page-hero, .page-hero-compact {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-image { object-position: center; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9,7,6,.5), rgba(9,7,6,.18) 30%, rgba(9,7,6,.9)),
      linear-gradient(90deg, rgba(9,7,6,.7), rgba(9,7,6,.24));
  }
  .hero-content {
    align-items: flex-start;
    text-align: left;
    padding: 6.5rem 1rem 3.25rem;
  }
  .hero-content h1,
  .page-hero-compact .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 3rem);
    line-height: .94;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .hero-content h1 span { display: block; }
  .hero-copy {
    font-size: 1.05rem;
  }
  .hero-actions, .button {
    width: 100%;
  }
  .section { padding: 3.5rem 1rem; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip article {
    min-height: 12rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-strip article:last-child { border-bottom: 0; }
  .licensing-media-grid, .contact-form {
    grid-template-columns: 1fr;
  }
  .licensing-media-grid img {
    min-height: 16rem;
  }
  .licensing-media-grid img:first-child { margin-top: 0; }
  .contact-band {
    margin: 0 1rem 3.5rem;
  }
  .contact-routes a {
    display: grid;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
