:root {
  --paper: #f7f3eb;
  --paper-soft: #fffaf2;
  --ink: #181715;
  --muted: #6b665e;
  --line: #ded5c6;
  --deep: #17211f;
  --deep-soft: #22312d;
  --accent: #9b6d33;
  --blue: #276170;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.75rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
  min-height: 72px;
  padding: 0.7rem 1.5rem;
  background: rgba(247, 243, 235, 0.97);
  border-bottom: 1px solid var(--line);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand,
.lute-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
}

.lute-link {
  color: var(--muted);
}

.lute-link img {
  width: 44px;
}

.lute-link:empty,
.lute-link img:only-child {
  margin-right: 0;
}

.brand img,
.lute-link img,
.footer-drawing img {
  filter: invert(1) brightness(0.25);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
  min-width: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.header-audio {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.header-audio audio {
  width: 190px;
  height: 32px;
}

.hero {
  position: relative;
  min-height: 52vh;
  overflow: hidden;
  background: #101312;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.2rem 1.5rem;
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.hero-copy p,
.section-kicker,
.instrument {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0.25rem 0 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.08;
}

.section {
  padding: 4.25rem 1.5rem;
}

.release {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background: var(--deep);
  color: var(--paper-soft);
}

.release-grid,
.intro,
.music,
.media-callout,
.bio-section,
.duo,
.page-title,
.video-grid,
.legal-text {
  max-width: 1180px;
  margin: 0 auto;
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

.cover {
  margin: 0;
}

.cover img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.release-copy h2 {
  margin: 0.45rem 0 1.25rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.12;
}

.release-copy h2 span {
  display: block;
}

.release-format,
.release-date {
  margin: 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: 1.25rem;
}

.release-date {
  color: rgba(255, 250, 242, 0.72);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

.section-heading h2,
.page-title h1,
.legal-text h1 {
  margin: 0.35rem 0 0;
  font-size: 2.05rem;
  line-height: 1.18;
}

.lineup {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.lineup li {
  min-height: 128px;
  padding: 1.35rem;
  background: var(--paper-soft);
}

.lineup strong,
.lineup span {
  display: block;
}

.lineup strong {
  font-weight: 500;
}

.lineup span {
  margin-top: 0.35rem;
  color: var(--muted);
}

.music,
.media-callout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 4rem;
  border-top: 1px solid var(--line);
}

.music {
  border-bottom: 1px solid var(--line);
}

.music-text {
  max-width: 760px;
  color: #302c27;
  font-size: 1.04rem;
}

.music-text p:first-child {
  margin-top: 0;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-content: start;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-soft);
  text-decoration: none;
}

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

.bio-list {
  display: grid;
  gap: 1.1rem;
}

.bio-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.bio-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 4px;
}

.bio-card h3 {
  margin: 0.25rem 0 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.bio-card p {
  margin: 0.75rem 0 0;
  color: #332f2a;
}

.bio-card .instrument {
  margin-top: 0.35rem;
  color: var(--blue);
}

.duo {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.duo figure {
  margin: 0;
}

.duo img {
  width: 100%;
  border-radius: 4px;
}

.duo h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 2rem;
}

.duo audio {
  width: min(100%, 420px);
  margin: 1rem 0 0.5rem;
}

.track-list {
  max-width: 620px;
  color: var(--muted);
}

.page-title {
  padding-bottom: 2rem;
}

.page-title h1 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
}

.video-grid {
  display: grid;
  gap: 1.25rem;
  padding-top: 0;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-soft);
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0f1211;
}

.video-card a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--muted);
  text-decoration: none;
}

.legal-page {
  min-height: calc(100vh - 72px);
}

.legal-text {
  max-width: 820px;
}

.legal-text h2 {
  margin: 2rem 0 0.3rem;
  font-size: 1.25rem;
}

.legal-text p {
  margin: 0.6rem 0;
}

.site-footer {
  padding: 2.4rem 1.5rem 2rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 120px 120px minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-drawing {
  display: block;
}

.footer-drawing img {
  max-height: 64px;
  width: auto;
}

.site-footer h2 {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.copyright {
  max-width: 1180px;
  margin: 1.8rem auto 0;
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .header-audio {
    justify-content: flex-start;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .release-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2rem;
  }

  .release-copy h2 {
    font-size: 2rem;
  }

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

  .music,
  .media-callout,
  .duo {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

}

@media (max-width: 760px) {
  .site-header {
    position: static;
    min-height: 0;
    padding: 0.85rem 1rem;
  }

  .brand-row {
    justify-content: space-between;
    width: 100%;
  }

  .brand img {
    width: 36px;
  }

  .lute-link img {
    width: 38px;
  }

  .main-nav {
    gap: 0.35rem 0.85rem;
    font-size: 0.94rem;
  }

  .header-audio {
    width: 100%;
  }

  .header-audio audio {
    width: min(100%, 220px);
  }

  .hero {
    min-height: 42vh;
  }

  .hero-copy {
    padding: 2rem 1rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .section {
    padding: 3.2rem 1rem;
  }

  .release {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }

  .release-grid {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 1rem;
  }

  .release-copy h2 {
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
  }

  .release-format,
  .release-date {
    font-size: 1rem;
  }

  .section-heading h2,
  .page-title h1,
  .legal-text h1 {
    font-size: 1.6rem;
  }

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

  .lineup li {
    min-height: 0;
    padding: 1rem;
  }

  .bio-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bio-card img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .bio-card img[src$="michael.jpg"] {
    aspect-ratio: 3 / 4;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 360px) {
  .brand-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .release-copy h2 {
    font-size: 1rem;
  }
}
