:root {
  --black: #050505;
  --ink: #151515;
  --paper: #f6f1e8;
  --white: #ffffff;
  --muted: #77716a;
  --line: rgba(5, 5, 5, 0.14);
  --red: #b11226;
  --blue: #174a7c;
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 28px;
  background: var(--black);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand,
.site-header nav,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand,
.site-header a,
.site-footer a {
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  border-radius: 50%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 56px 28px;
  background: var(--black);
  color: var(--white);
}

.hero-copy,
.section-heading,
.about-section,
.epk-section,
.stream-section,
.join-section {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(4.5rem, 17vw, 13rem);
}

h2 {
  font-size: clamp(2.2rem, 7vw, 5.4rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.artist-name {
  margin: 0;
  color: transparent;
  font-size: clamp(2.4rem, 9vw, 7.5rem);
  font-weight: 950;
  line-height: 0.9;
  -webkit-text-stroke: 1.5px var(--white);
}

.release-date {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-text,
.join-copy p,
.about-section p,
.section-heading p {
  max-width: 720px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button.secondary {
  background: transparent;
  color: var(--white);
}

.text-button {
  background: transparent;
  color: var(--white);
}

.hero-visual {
  margin: 0;
}

.hero-visual img,
.press-card img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.hero-visual figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.stream-section,
.join-section,
.about-section,
.epk-section {
  padding: 72px 28px;
}

.stream-grid,
.epk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stream-card,
.press-card {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.stream-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.stream-card span:last-child {
  text-align: right;
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
}

.platform-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.platform-icon circle,
.platform-icon rect {
  fill: none;
}

.spotify .platform-icon {
  background: #1db954;
}

.apple .platform-icon {
  background: #fa243c;
}

.soundcloud .platform-icon {
  background: #ff5500;
}

.tiktok .platform-icon {
  background: #111111;
}

.instagram .platform-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #515bd4);
}

.youtube .platform-icon {
  background: #ff0033;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 36px;
  background: var(--ink);
  color: var(--white);
}

.fan-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

label span {
  color: rgba(255, 255, 255, 0.68);
  text-transform: none;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--black);
  color: var(--white);
  font: inherit;
}

.checkbox-label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 700;
  text-transform: none;
}

.checkbox-label input {
  min-height: auto;
}

.form-status {
  min-height: 24px;
  margin: 0;
}

.form-mode {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.about-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

.press-card p {
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .join-section,
  .about-section,
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stream-grid,
  .epk-grid {
    grid-template-columns: 1fr;
  }

  .stream-card span:last-child {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero,
  .stream-section,
  .join-section,
  .about-section,
  .epk-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button,
  .button-row {
    width: 100%;
  }
}
