:root {
  --bg: #070706;
  --panel: rgba(18, 15, 10, 0.88);
  --panel-2: rgba(25, 20, 13, 0.94);
  --gold: #caa65a;
  --gold-soft: #e0c178;
  --text: #f5efe2;
  --muted: #b8aa91;
  --line: rgba(202, 166, 90, 0.28);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(160, 115, 38, 0.2), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(202, 166, 90, 0.12), transparent 30rem),
    linear-gradient(135deg, #030303 0%, #0c0a08 45%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.page-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 46px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(0,0,0,.82), rgba(34, 25, 12, .72)),
    linear-gradient(45deg, rgba(202, 166, 90, .14), transparent 60%);
  box-shadow: var(--shadow);
}

.compact-hero {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-with-logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;

  min-height: 392px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  flex: 1;
}

.header-logo-placeholder {
  position: relative;
  z-index: 1;
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -170px;
  border-radius: 50%;
  background: rgba(224, 193, 120, 0.22);
  filter: blur(36px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }

h1 {
  position: relative;
  max-width: 820px;
  font-size: clamp(2.35rem, 7vw, 5.2rem);
  letter-spacing: -0.035em;
  text-shadow: 0 4px 24px rgba(0,0,0,.6);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  color: #fff8e8;
}

h3 {
  font-size: 1.26rem;
  color: var(--gold-soft);
}

.panel {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.label-intro {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: center;
  padding: 34px;
}

.intro-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.intro-copy strong { color: var(--text); font-weight: 700; }

.logo-placeholder {
  width: 300px;
  height: 300px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 20%, rgba(224, 193, 120, .18), transparent 46%),
    rgba(8, 7, 5, .8);
  color: rgba(245, 239, 226, .56);
  text-align: center;
  letter-spacing: .08em;
}

.artists-section { margin-top: 42px; }

.section-heading {
  margin-bottom: 20px;
  padding-left: 4px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.artist-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-2);
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
  transition: transform .24s ease, border-color .24s ease;
}

.artist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 193, 120, .52);
}

.artist-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-image {
  background:
    linear-gradient(135deg, rgba(202, 166, 90, .22), transparent),
    linear-gradient(45deg, #111 0%, #241b0e 100%);
  color: rgba(245, 239, 226, .54);
  font-size: .86rem;
  letter-spacing: .08em;
}

.artist-body {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.artist-body p {
  flex: 1;
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.52;
}

.spotify-button,
.mail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 193, 120, .52);
  border-radius: 999px;
  color: #110d06;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 8px 20px rgba(202, 166, 90, .18);
}

.spotify-button {
  width: 100px;
  height: 40px;
  font-size: .84rem;
}

.cta-panel {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
}

.cta-panel p {
  max-width: 750px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.mail-button {
  min-width: 220px;
  height: 50px;
  padding: 0 26px;
  white-space: nowrap;
}


.offer-box{
background:#151515;
border:1px solid rgba(212,175,55,0.20);
border-radius:18px;
padding:50px;
margin-top:70px;
}

.eyebrow{
color:#b89c55;
text-transform:uppercase;
letter-spacing:3px;
font-size:.85rem;
margin-bottom:12px;
}

.offer-box h2{
margin-bottom:25px;
}

.offer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:40px;
margin:35px 0;
}

.offer-grid ul{
margin-top:15px;
padding-left:20px;
line-height:1.9;
}

.offer-grid h4{
color:#d4af37;
margin-bottom:10px;
}

.button.secondary{
display:inline-flex;
justify-content:center;
align-items:center;
width:220px;
height:50px;
background:#d4af37;
color:#0b0b0b;
text-decoration:none;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.button.secondary:hover{
transform:translateY(-2px);
}



@media (max-width: 920px) {
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .label-intro { grid-template-columns: 1fr; }
  .logo-placeholder { justify-self: start; }
  .header-with-logo { flex-direction: column; align-items: flex-start; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 24px, 1160px); padding-top: 16px; }
  .hero, .label-intro, .cta-panel { padding: 24px; }
  .artist-grid { grid-template-columns: 1fr; }
  .logo-placeholder { width: 300px; height: 300px; }
}


.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
