:root {
  --bg: #080604;
  --bg-soft: #13100b;
  --gold: #d9b65a;
  --gold-bright: #ffd978;
  --cream: #f4ead4;
  --muted: #b9aa88;
  --line: rgba(217, 182, 90, .28);
  --card: rgba(13, 10, 7, .78);
  --shadow: 0 25px 90px rgba(0,0,0,.55);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(160, 103, 23, .26), transparent 28%), var(--bg);
  color: var(--cream);
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 210, 107, .03), transparent 38%, rgba(255, 210, 107, .05)),
              radial-gradient(circle at 70% 15%, rgba(255, 194, 89, .16), transparent 25%);
  z-index: -2;
}
.page-glow {
  position: fixed;
  inset: -20%;
  background: radial-gradient(circle at 70% 20%, rgba(207, 136, 32, .22), transparent 30%),
              radial-gradient(circle at 15% 80%, rgba(119, 58, 14, .25), transparent 28%);
  filter: blur(40px);
  z-index: -3;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 5, 3, .76);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: clamp(.82rem, 1.4vw, 1.12rem);
  white-space: nowrap;
}
.brand .amp { font-size: 1.55em; padding: 0 .42em; color: var(--cream); font-style: italic; }
.nav { display: flex; gap: 18px; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .95rem;
  transition: color .2s ease;
}
.nav a:hover { color: var(--gold-bright); }
.language-switch { display: flex; gap: 6px; }
.language-switch button {
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  padding: 6px 9px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.language-switch button.active,
.language-switch button:hover {
  color: #130c04;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}
.section { padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px); }
.hero { min-height: calc(100vh - 78px); display: grid; place-items: center; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,6,4,.72), rgba(8,6,4,.4)), url('assets/images/album-cover.png') center/cover no-repeat;
  opacity: .31;
  transform: scale(1.06);
  filter: blur(1px);
}
.hero-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, transparent 0, rgba(8,6,4,.85) 70%); }
.hero-content {
  position: relative;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.05fr .82fr;
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
}
.eyebrow {
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  margin: 0 0 14px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 {
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  text-shadow: 0 0 35px rgba(255, 217, 120, .25);
}
.hero-subtitle {
  font-size: clamp(1.18rem, 2.2vw, 1.72rem);
  max-width: 720px;
  color: var(--cream);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .02em;
}
.btn-primary {
  background: linear-gradient(135deg, #a36f22, var(--gold-bright));
  color: #130c04;
  box-shadow: 0 15px 40px rgba(222, 166, 69, .22);
  border: 0;
}
.btn-ghost { color: var(--gold-bright); background: rgba(255,255,255,.03); }
.cover-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 12px;
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
}
.cover-card img { display: block; width: 100%; border-radius: 20px; }
.section-title { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-title h2, .story-card h2, .contact-copy h2, .quote-section h2 {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  color: var(--gold-bright);
  font-weight: 400;
}
.section-title p, .story-card p, .contact-copy p { color: var(--muted); font-size: 1.08rem; }
.album-section { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(255, 208, 103, .04)); }
.track-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 26px;
}
.tracklist, .preview-card, .story-card, .contact-form, .contact-copy {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.tracklist { margin: 0; padding: 34px 44px 34px 66px; columns: 1; color: var(--cream); }
.tracklist li { padding: 5px 0 5px 10px; }
.tracklist li::marker { color: var(--gold); }
.preview-card { padding: 34px; align-self: start; }
.small-label { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.preview-card h3 { color: var(--gold-bright); font-size: clamp(2.2rem, 4.8vw, 4.4rem); font-style: italic; font-weight: 400; margin: 10px 0 8px; }
.preview-card p { color: var(--muted); }
audio { width: 100%; margin-top: 18px; }
.story-section { position: relative; }
.story-card { width: min(980px, 100%); margin: 0 auto; padding: clamp(32px, 6vw, 64px); position: relative; overflow: hidden; }
.story-card::before { content: ""; position: absolute; inset: 0; background: url('assets/images/album-cover.png') right center/contain no-repeat; opacity: .13; pointer-events: none; }
.story-card > * { position: relative; }
blockquote { margin: 28px 0 0; padding-left: 22px; border-left: 2px solid var(--gold); color: var(--cream); font-size: 1.35rem; font-style: italic; }
.streaming-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stream-btn {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 217, 120, .08), rgba(255,255,255,.02));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.stream-btn:hover { transform: translateY(-4px); border-color: rgba(255, 217, 120, .6); background: rgba(255, 217, 120, .12); }
.stream-btn span { font-size: 1.4rem; color: var(--cream); }
.stream-btn em { color: var(--gold); font-style: normal; }
.quote-section { text-align: center; background: linear-gradient(180deg, rgba(255, 217, 120, .04), rgba(0,0,0,.12)); }
.quote-section > div { width: min(900px, 100%); margin: 0 auto; }
.ornament { display: inline-block; color: var(--gold); font-size: 2rem; margin-bottom: 12px; }
.quote-section p { color: var(--muted); font-size: 1.25rem; }
.contact-section {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 26px;
}
.contact-copy, .contact-form { padding: clamp(28px, 5vw, 44px); }
.mail-link { color: var(--gold-bright); font-size: 1.18rem; text-decoration: none; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--cream);
  padding: 13px 14px;
  font: inherit;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(255, 217, 120, .72); box-shadow: 0 0 0 3px rgba(255, 217, 120, .08); }
.checkbox { grid-template-columns: auto 1fr !important; align-items: start; }
.checkbox input { width: auto; margin-top: 5px; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-status { min-height: 24px; color: var(--gold-bright); margin: 0; }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); padding: 28px clamp(18px, 5vw, 72px); text-align: center; background: rgba(0,0,0,.28); }
.site-footer p { margin: 5px 0; }
@media (max-width: 980px) {
  .site-header { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero-content, .track-grid, .contact-section { grid-template-columns: 1fr; }
  .cover-card { max-width: 520px; margin: 0 auto; }
  .streaming-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .brand { white-space: normal; }
  h1 { font-size: 4rem; }
  .streaming-grid { grid-template-columns: 1fr; }
  .tracklist { padding: 26px 24px 26px 50px; }
}
