* { box-sizing: border-box; }

:root {
  --black: #030405;
  --black2: #090b0e;
  --charcoal: #12161b;
  --line: rgba(255,255,255,.12);
  --text: #f4f7f8;
  --muted: #a8b0b8;
  --ice: #dff7ff;
  --gold: #c89c59;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  background: rgba(3,4,5,.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.logo {
  font-family: Cinzel, serif;
  letter-spacing: .22em;
  text-decoration: none;
  font-size: 1.25rem;
}

nav {
  display: flex;
  gap: 24px;
  font-size: .92rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.92)),
    linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,.15));
}

.hero-text {
  position: relative;
  padding: 0 5vw 10vh;
  max-width: 940px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: .76rem;
}

h1, h2, h3 {
  font-family: Cinzel, serif;
  line-height: 1.08;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(4rem, 11vw, 10rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}

h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); }
h3 { font-size: 1.35rem; }

.hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.16rem;
}

.buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.primary {
  background: var(--text);
  color: var(--black);
}

.ghost {
  background: rgba(255,255,255,.05);
  color: var(--text);
}

.section {
  padding: 90px 5vw;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(223,247,255,.06), transparent 30%),
    var(--black);
}

.narrow {
  max-width: 980px;
  margin: auto;
}

.muted, .section p {
  color: var(--muted);
}

.player-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.track {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 1.3fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}

.track span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .14em;
}

audio {
  width: 100%;
  filter: invert(1) grayscale(1);
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: saturate(.85) contrast(1.08);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.album-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  min-height: 100%;
}

.album-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.album-card div {
  padding: 18px;
}

.album-card p {
  font-size: .92rem;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
}

blockquote {
  margin: 32px 0 0;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  color: var(--text);
  font-family: Cinzel, serif;
  font-size: 1.4rem;
}

blockquote span {
  display: block;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: .95rem;
  margin-top: 8px;
}

.contact-form {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #050607;
  color: var(--text);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
}

textarea { resize: vertical; }

.hide-me {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.notice {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  margin-bottom: 18px;
}

.notice.success {
  background: rgba(120,255,190,.12);
}

.form-note {
  font-size: .86rem;
}

footer {
  padding: 30px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 1050px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  .track, .split { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  nav { display: none; }
  h1 { font-size: 3.4rem; }
  .image-strip, .album-grid { grid-template-columns: 1fr; }
  .image-strip img { height: 300px; }
}
