:root {
  --ink: #05070a;
  --ink-soft: #0b1016;
  --panel: rgba(10, 14, 19, 0.88);
  --cream: #f5ead2;
  --muted: #b8b3aa;
  --amber: #d9943b;
  --amber-bright: #f1bc6b;
  --blue: #6d8fa4;
  --line: rgba(242, 190, 107, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 12%, rgba(53, 89, 110, 0.20), transparent 34rem),
    radial-gradient(circle at 84% 38%, rgba(165, 91, 31, 0.16), transparent 36rem),
    linear-gradient(180deg, #080b0f 0%, #040608 58%, #090a0b 100%);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image: repeating-linear-gradient(115deg, transparent 0 48px, rgba(255,255,255,.018) 49px, transparent 50px 96px);
}

a { color: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 3px;
  background: var(--cream);
  color: var(--ink);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.wordmark {
  font-family: var(--serif);
  font-size: .78rem;
  letter-spacing: .22em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav { display: flex; gap: clamp(18px, 3vw, 38px); }

.site-nav a {
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--amber-bright); }

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(920px, 100svh);
  overflow: hidden;
  isolation: isolate;
  padding: 150px 24px 86px;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: url("/assets/images/logo.jpg") center / cover no-repeat;
  filter: saturate(.72) contrast(1.08);
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2,5,8,.58) 0%, rgba(3,6,9,.48) 48%, #06080b 100%),
    radial-gradient(ellipse at center, rgba(4,8,12,.25), rgba(2,4,7,.72));
}

.hero-inner { width: min(920px, 100%); }

.hero-logo {
  display: block;
  width: min(880px, 100%);
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.75));
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--amber-bright);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.83);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.25vw, 1.35rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 2px;
  background: rgba(3,5,8,.52);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--amber-bright);
  background: rgba(112,64,23,.36);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .6fr) minmax(300px, 1.4fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
}

.kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1, h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.prose { color: #c8c4bc; font-size: clamp(1rem, 1.5vw, 1.1rem); }
.prose p { margin: 0 0 1.35em; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--cream); font-weight: 600; }

.prose .creative-disclosure {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #aaa69d;
  font-size: .82rem;
  line-height: 1.65;
}

.prose .creative-disclosure strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--amber);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.portrait-section {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(320px, 1.08fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.portrait-wrap {
  position: relative;
  margin: 0;
}

.portrait-wrap::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  content: "";
  border: 1px solid var(--line);
}

.portrait-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(.82) contrast(1.03);
}

.portrait-wrap figcaption {
  margin-top: 14px;
  color: #8e8b85;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.portrait-copy h2 { margin-bottom: 28px; }

.releases-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 54px;
}

.releases-intro p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.release-card {
  position: relative;
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(150deg, rgba(19,25,32,.90), rgba(7,9,12,.94));
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}

.release-number {
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 1;
  color: rgba(255,255,255,.11);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
}

.cover-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 25px;
  background: #111;
}

.cover-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.album-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease, filter .5s ease;
}

.release-card:hover .album-cover { transform: scale(1.025); filter: saturate(1.06); }

.featured-player {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(320px, 1.22fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(18,25,32,.92), rgba(7,9,12,.96));
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.featured-track-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0,0,0,.4);
}

.featured-track-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.featured-track-copy {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--muted);
}

.featured-audio {
  display: block;
  width: 100%;
  margin: 0 0 22px;
}

.audio-controls { display: none; }

.audio-enhanced .featured-audio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.audio-enhanced .audio-controls {
  display: grid;
  grid-template-columns: 54px minmax(120px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.audio-toggle {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--amber);
  border-radius: 50%;
  background: rgba(217,148,59,.12);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.05rem;
  transition: background .2s ease, transform .2s ease;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
  transform: scale(1.04);
  background: rgba(217,148,59,.25);
}

.audio-progress {
  width: 100%;
  accent-color: var(--amber);
  cursor: pointer;
}

.audio-time {
  min-width: 88px;
  color: #9e9b94;
  font-size: .72rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.track-album-link {
  color: var(--amber-bright);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
}

.track-album-link:hover,
.track-album-link:focus-visible { text-decoration: underline; text-underline-offset: 5px; }

.release-type {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.release-card h3 {
  margin: 0 0 20px;
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  line-height: 1.1;
}

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

.streaming-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 8px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 2px;
  background: rgba(0,0,0,.32);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

.streaming-link:hover,
.streaming-link:focus-visible {
  border-color: rgba(241,188,107,.7);
  background: rgba(117,67,24,.25);
}

.streaming-link img {
  display: block;
  max-width: 100%;
  max-height: 22px;
  object-fit: contain;
}

.streaming-link.youtube { gap: 5px; color: #fff; font-size: .68rem; }
.streaming-link.youtube img { width: 27px; }

.quote-band {
  position: relative;
  padding: clamp(84px, 12vw, 150px) 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,9,12,.95), rgba(7,9,12,.63), rgba(7,9,12,.95)),
    url("/assets/images/album/herenowbeyond.jpg") center 54% / cover no-repeat;
  text-align: center;
}

.quote-band blockquote {
  width: min(850px, 100%);
  margin: 0 auto;
  color: #fff6e4;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.08;
  text-shadow: 0 4px 30px #000;
}

.quote-band cite {
  display: block;
  margin-top: 24px;
  color: var(--amber-bright);
  font-family: var(--sans);
  font-size: .7rem;
  font-style: normal;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.contact {
  text-align: center;
}

.contact h2 { max-width: 760px; margin: 0 auto 24px; }
.contact p { margin: 0 auto 30px; color: var(--muted); }

.contact-link {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  text-underline-offset: 7px;
  text-decoration-color: var(--amber);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  color: #777a7c;
  font-size: .72rem;
  letter-spacing: .08em;
}

.site-footer a { text-underline-offset: 4px; }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--cream); }

.privacy-page { background: linear-gradient(180deg, #080b0f, #030405); }

.privacy-header {
  display: flex;
  justify-content: center;
  padding: 32px 20px 24px;
}

.privacy-logo {
  display: block;
  width: min(480px, 90vw);
  height: auto;
}

.privacy-card {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.privacy-card h1 { text-align: center; }
.privacy-card h2 { margin: 34px 0 10px; font-size: 1.25rem; letter-spacing: 0; }
.privacy-card p,
.privacy-card li { color: #c5c1b9; }
.privacy-card p { margin: 0 0 15px; }
.privacy-card ul { padding-left: 22px; }
.privacy-card address { font-style: normal; }
.updated { margin: 14px 0 36px !important; color: #858585 !important; text-align: center; font-size: .82rem; }
.privacy-card a { text-decoration-color: var(--amber); text-underline-offset: 3px; }
.back { margin-top: 42px; text-align: center; }

@media (max-width: 760px) {
  .site-header { width: calc(100% - 30px); padding-top: 20px; }
  .wordmark { max-width: 145px; line-height: 1.4; }
  .site-nav { gap: 14px; }
  .site-nav a:nth-child(2) { display: none; }
  .hero { min-height: 760px; padding-inline: 18px; }
  .hero-logo { margin-bottom: 8px; }
  .section { width: min(100% - 32px, 650px); }
  .section-heading,
  .portrait-section { grid-template-columns: 1fr; }
  .featured-player { grid-template-columns: 1fr; }
  .featured-track-cover { max-width: 520px; margin: 0 auto; }
  .portrait-wrap { margin-right: 14px; }
  .releases-intro { display: block; }
  .releases-intro h2 { margin-bottom: 22px; }
  .release-grid { grid-template-columns: 1fr; }
  .site-footer { width: calc(100% - 32px); flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 430px) {
  .site-nav a { font-size: .64rem; }
  .hero { min-height: 680px; padding-top: 120px; }
  .streaming-links { grid-template-columns: 1fr; }
  .streaming-link { min-height: 48px; }
  .streaming-link img { max-width: 150px; }
  .audio-enhanced .audio-controls { grid-template-columns: 48px 1fr; }
  .audio-toggle { width: 48px; height: 48px; }
  .audio-time { grid-column: 2; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
