:root {
  --bg: #0a0a0f;
  --surface: #14141c;
  --text: #f4f4f8;
  --muted: #a8a8b8;
  --accent: #ff3a75;
  --border: rgba(255,255,255,0.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

body.has-page-bg {
  background-color: var(--bg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,15,0.96);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.logo img { height: 40px; width: auto; }
.logo:hover { text-decoration: none; }
.main-nav { display: flex; flex-wrap: wrap; gap: 16px; }
.main-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-nav a.active,
.main-nav a:hover { color: var(--text); text-decoration: none; }

.hero {
  min-height: 48vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 72px 24px;
}

/* Homepage layered hero (Kentha-style) */
.hero-home {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  background: #050508;
}
.hero-intro {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-perspective {
  position: relative;
  z-index: 1;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
}
.hero-layers {
  position: relative;
  width: min(920px, 92vw);
  aspect-ratio: 1;
  max-height: 72vh;
}
.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.hero-layer.layer-1 { z-index: 1; }
.hero-layer.layer-2 { z-index: 2; }
.hero-layer.layer-3 { z-index: 3; }
.hero-layer.layer-4 { z-index: 4; }
.hero-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 42%;
  max-width: 320px;
  display: block;
  transition: transform 0.2s;
}
.hero-cover:hover { transform: translate(-50%, -50%) scale(1.03); }
.hero-cover img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}
.hero-fg {
  position: absolute;
  pointer-events: none;
  z-index: 6;
}
.hero-fg.records {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 78%;
  max-width: 640px;
}
.hero-fg.logo-text {
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  width: 55%;
  max-width: 420px;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 56px 0; }
.page-head h1 { margin: 0; font-size: 2rem; }

.section-title {
  margin: 0 0 32px;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.catalogue-list { display: grid; gap: 20px; }
.catalogue-item {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.catalogue-overlay {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(8,8,12,0.15) 0%, rgba(8,8,12,0.88) 72%);
}
.catalogue-cover { display: none; }
.catalogue-meta {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.track-num { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.album-link { display: block; color: rgba(255,255,255,0.75); font-size: 0.92rem; margin-top: 4px; }
.catalogue-item audio {
  width: 100%;
  max-width: 480px;
}

.page-banner {
  padding: 80px 24px 40px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-banner h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8);
}
.page-banner::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,12,0.35) 0%, rgba(8,8,12,0.75) 100%);
  pointer-events: none;
}
.page-banner { position: relative; }
.page-banner .wrap { position: relative; z-index: 1; }

.contact-page {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.contact-page .wrap {
  max-width: 640px;
  padding: 48px 32px;
  background: rgba(10,10,15,0.82);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.prose-page--on-bg .wrap {
  max-width: 820px;
  padding: 40px 32px;
  background: rgba(10,10,15,0.88);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.page-logo {
  text-align: center;
  margin: 0 0 24px;
}
.page-logo img {
  max-width: 270px;
  margin: 0 auto;
}
.prose-page .lead {
  text-align: center;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.page-figure {
  margin: 32px 0;
  text-align: center;
}
.page-figure img {
  margin: 0 auto;
  border-radius: 8px;
}
.brands-list {
  display: grid;
  gap: 40px;
}
.brand-card {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.brand-card:last-child { border-bottom: none; }
.brand-logo {
  max-width: 480px;
  margin: 0 auto 16px;
}
.brand-card p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.release-grid,
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.release-card,
.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.release-card:hover,
.artist-card:hover { border-color: rgba(255,58,117,0.45); }
.release-card a,
.artist-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 16px;
  text-align: center;
}
.release-card img,
.artist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.release-card h3,
.artist-card h3 {
  margin: 0;
  font-size: 0.95rem;
}
.release-card span { color: var(--muted); font-size: 0.85rem; }

.release-layout,
.artist-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.release-cover,
.artist-photo {
  width: 100%;
  border-radius: 12px;
}
.meta { color: var(--muted); }

.prose-page h1 { margin-top: 0; }
.prose-page h2,
.prose-page .lead {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.prose-page p,
.prose-page li { color: var(--muted); max-width: 820px; }
.prose-page ul { padding-left: 1.2rem; }

.contact-teaser { text-align: center; }
.contact-teaser h2 {
  margin: 0 0 8px;
  letter-spacing: 0.12em;
}
.btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.btn:hover { text-decoration: none; opacity: 0.9; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px 40px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 720px) {
  .catalogue-item { grid-template-columns: 72px 1fr; }
  .catalogue-cover img { width: 72px; height: 72px; }
  .release-layout,
  .artist-layout { grid-template-columns: 1fr; }
}
