/* Sunriver Studios local-safe clean build sr20260514b */
:root {
  --ink: #f2ead8;
  --muted: #cdbf9f;
  --soft: #ad9c7d;
  --gold: #c59a50;
  --gold2: #e3c88c;
  --line: rgba(227, 200, 140, 0.28);
  --line2: rgba(227, 200, 140, 0.45);
  --shadow: rgba(0,0,0,.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background-image:
    linear-gradient(180deg, rgba(5, 4, 3, .58), rgba(5, 4, 3, .40) 28%, rgba(5, 4, 3, .56) 100%),
    url("images/wood-paneling-background-sr20260514b.png");
  background-size:
    cover,
    100vw auto;
  background-position:
    center top,
    center top;
  background-repeat:
    no-repeat,
    repeat-y;
  background-attachment:
    fixed,
    fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(227, 200, 140, .12), transparent 26rem),
    radial-gradient(circle at 86% 16%, rgba(120, 160, 160, .08), transparent 24rem),
    linear-gradient(90deg, rgba(0,0,0,.34), transparent 16%, transparent 84%, rgba(0,0,0,.36));
  z-index: -1;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: .8rem clamp(1rem, 4vw, 3rem);
  background: rgba(8, 6, 5, .84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.wordmark {
  font-family: Cinzel, Georgia, serif;
  text-decoration: none;
  letter-spacing: .08em;
  color: var(--gold2);
  font-size: .98rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(.8rem, 2.6vw, 1.6rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .76rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--gold2);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: calc(78vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .85fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  padding: clamp(2.4rem, 5.5vw, 4.8rem) 0;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 .55rem;
  color: var(--gold2);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: Cinzel, Georgia, serif;
  margin: 0;
  line-height: 1.12;
}

h1,
h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.55rem);
}

h1 {
  max-width: 16ch;
  text-wrap: balance;
}

h3 {
  font-size: 1.08rem;
  color: var(--gold2);
}

.lede {
  margin: .95rem 0 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.7vw, 1.10rem);
  max-width: 64ch;
}

.under-note {
  margin: .8rem 0 0;
  color: var(--soft);
  font-size: .96rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.button,
.link-row a,
.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .66rem .92rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}

.button:hover,
.link-row a:hover,
.email-link:hover {
  transform: translateY(-2px);
  border-color: var(--line2);
}

.primary {
  color: #151108;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}

.secondary,
.link-row a {
  color: var(--gold2);
  background: rgba(196,154,82,.13);
}

.album-stage {
  justify-self: center;
  width: min(100%, 430px);
}

.album-stage img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.48));
}

.section {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4.4rem) 0;
}

.compact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

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

.intro-strip p,
.section-heading p,
.release-copy p,
.artist-list p,
.gear-panel p,
.contact-section p {
  color: var(--muted);
}

.intro-strip p {
  margin: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1rem;
}

.section-heading p {
  margin: 0;
  font-size: .96rem;
}

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

.release-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(227,200,140,.08), transparent 34%),
    linear-gradient(180deg, rgba(20,15,11,.92), rgba(9,7,5,.96));
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.release-art {
  position: relative;
  align-self: stretch;
  min-height: 170px;
  border-radius: .95rem;
  background:
    linear-gradient(135deg, rgba(227,200,140,.18), rgba(105,80,50,.18)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 2px, transparent 2px 10px);
  border: 1px solid rgba(227,200,140,.28);
  overflow: hidden;
}

.release-art::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  right: -44px;
  bottom: -34px;
  background:
    repeating-radial-gradient(circle, rgba(235,222,190,.12) 0 1px, transparent 1px 8px),
    radial-gradient(circle, #070807 0 100%);
  border: 1px solid rgba(227,200,140,.18);
}

.release-art::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  right: 9px;
  bottom: 18px;
  border-radius: 50%;
  background: rgba(196,154,82,.65);
}

.release-art span {
  position: absolute;
  left: .75rem;
  top: .7rem;
  color: #151108;
  background: var(--gold2);
  border-radius: 999px;
  padding: .25rem .5rem;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.release-art.punk {
  background:
    linear-gradient(135deg, rgba(196,82,82,.22), rgba(93,70,50,.16)),
    repeating-linear-gradient(-35deg, rgba(255,255,255,.035) 0 2px, transparent 2px 9px);
}

.release-art.jazz {
  background:
    linear-gradient(135deg, rgba(118,150,154,.24), rgba(93,70,50,.16)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 2px, transparent 2px 13px);
}

.release-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.release-type {
  margin: 0 0 .28rem;
  color: var(--gold2) !important;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}

.release-copy p {
  margin: .55rem 0 0;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .9rem;
}

.artist-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.artist-list article {
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  gap: .8rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(20,15,11,.82);
}

.card-symbol {
  display: grid;
  place-items: center;
  min-height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: .7rem;
  color: var(--gold2);
  font-family: Cinzel, Georgia, serif;
  letter-spacing: .12em;
}

.artist-list p {
  margin: .35rem 0 0;
}

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

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.gear-panel {
  min-height: 205px;
  padding: 1.05rem;
  border-radius: 1.05rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(20,15,11,.94), rgba(9,7,5,.98));
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.gear-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  border-radius: .85rem;
  border: 1px solid rgba(227,200,140,.18);
  margin-bottom: .9rem;
  opacity: 1;
  filter: none;
  background: #050505;
}

.gear-panel p {
  margin: .45rem 0 0;
}

.contact-section {
  text-align: left;
}

.email-link {
  margin-top: 1rem;
  color: #151108;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}

.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  padding: 1.25rem 1rem 2rem;
  font-size: .9rem;
  background: rgba(8, 6, 5, .48);
}

@media (max-width: 920px) {
  .hero-inner,
  .compact-section,
  .section-heading,
  .release-grid,
  .artist-list,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .album-stage {
    justify-self: start;
    max-width: 340px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-inner {
    min-height: auto;
  }

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

  .release-art {
    min-height: 150px;
  }

  h1 {
    max-width: none;
  }
}


/* Release image card override: the artists */
.release-card.cover-card {
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
}

.release-art.cover-art {
  position: relative;
  align-self: center;
  width: 190px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: .95rem;
  overflow: hidden;
  background: #050505;
}

/* Remove old fake record graphics from image cards */
.release-art.cover-art::before,
.release-art.cover-art::after {
  display: none;
  content: none;
}

.release-art.cover-art .release-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #050505;
  z-index: 1;
}

.release-art.cover-art span {
  position: absolute;
  top: .7rem;
  left: .75rem;
  z-index: 2;
}

.release-card.cover-card .release-copy {
  min-width: 0;
}

/* Artist section photos */
.artist-list article.artist-profile {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: .8rem;
  align-items: center;
}

.artist-photo {
  display: block;
  width: 130px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: .85rem;
  border: 1px solid rgba(227,200,140,.28);
  background: #050505;
  box-shadow: 0 14px 28px rgba(0,0,0,.24);
}


@media (max-width: 640px) {
  .artist-list article.artist-profile {
    grid-template-columns: 1fr;
  }

  .artist-photo {
    width: min(100%, 260px);
  }
}

/* Clickable release stacks: Charles, Mary, and Garry */
.release-card.cover-card.featured-album {
  grid-template-columns: 255px minmax(0, 1fr);
  min-height: 350px;
}

.release-art.cover-art.album-stack {
  position: relative;
  align-self: center;
  width: 225px;
  height: 300px;
  aspect-ratio: auto;
  min-height: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.release-art.cover-art.album-stack::before,
.release-art.cover-art.album-stack::after {
  display: none;
  content: none;
}

.release-art.cover-art.album-stack .release-image {
  position: static;
}

.release-art.cover-art.album-stack .album-cover {
  position: absolute;
  left: 0;
  width: 225px;
  height: 225px;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(227,200,140,.34);
  border-radius: .95rem;
  background: #050505;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 20px 38px rgba(0,0,0,.38);
  transition:
    top .22s ease,
    transform .22s ease,
    box-shadow .22s ease,
    z-index 0s linear .11s;
}

.release-art.cover-art.album-stack .album-cover-back {
  top: 0;
  z-index: 1;
}

.release-art.cover-art.album-stack .album-cover-front {
  top: 75px;
  z-index: 2;
  box-shadow: 0 26px 48px rgba(0,0,0,.52);
}

.release-art.cover-art.album-stack.is-reversed .album-cover-back {
  top: 75px;
  z-index: 2;
  box-shadow: 0 26px 48px rgba(0,0,0,.52);
}

.release-art.cover-art.album-stack.is-reversed .album-cover-front {
  top: 0;
  z-index: 1;
  box-shadow: 0 20px 38px rgba(0,0,0,.38);
}

.release-art.cover-art.album-stack .album-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-art.cover-art.album-stack .album-cover:hover {
  transform: translateY(-3px);
}

/* Format labels are now baked into the artwork for stacked releases. */
.release-art.cover-art.album-stack span {
  display: none;
}

@media (max-width: 640px) {
  .release-card.cover-card.featured-album {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .release-art.cover-art.album-stack {
    width: min(100%, 260px);
    height: calc(min(100vw - 2rem, 260px) + 75px);
    margin-bottom: 0;
  }

  .release-art.cover-art.album-stack .album-cover {
    width: min(100%, 260px);
    height: min(100vw - 2rem, 260px);
  }

  .release-art.cover-art.album-stack .album-cover-front,
  .release-art.cover-art.album-stack.is-reversed .album-cover-back {
    top: 75px;
  }
}

/* Mt. Tabor single-cover card */
.release-art.cover-art.jazz .release-image {
  object-fit: cover;
}

