:root {
  --paper: #efe5d0;
  --paper-2: #e6d8bb;
  --ink: #171411;
  --muted: #6b6258;
  --accent: #b3422b;
  --black: #0f0d0c;
  --white: #f8f1e2;
  --line: rgba(23, 20, 17, 0.15);
  --shadow: 0 24px 60px rgba(41, 28, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(179, 66, 43, 0.12), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(0, 0, 0, 0.06), transparent 24%),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background: radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1px);
  background-size: 8px 8px;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  align-items: center;
  min-height: 96px;
  padding: 16px 30px 14px;
  color: var(--white);
  background: rgba(15, 13, 12, 0.97);
  border-bottom: 1px solid rgba(248, 241, 226, 0.14);
  backdrop-filter: blur(12px);
}

.brand-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.brand,
.brand-sub,
h1,
h2,
h3,
.stamp-mark span,
.artist-initials {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
}

.brand {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand-sub {
  max-width: 220px;
  color: var(--accent);
  font-size: 0.78rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3.5vw, 42px);
}

.nav a,
.top-link {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav a::after,
.top-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.nav a:hover::after,
.top-link:hover::after {
  width: 100%;
}

.top-link {
  justify-self: end;
  padding-left: 24px;
  border-left: 1px solid rgba(248, 241, 226, 0.18);
}

.site {
  width: min(1200px, calc(100vw - 56px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 50px 0 72px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow.centre {
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(6rem, 13vw, 12.5rem);
  line-height: 0.76;
  letter-spacing: 0.01em;
}

h1 span {
  display: block;
}

.tagline {
  position: relative;
  max-width: 620px;
  margin: 28px 0 34px;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.12;
  font-style: italic;
  font-weight: 800;
  transform: rotate(-1deg);
}

.tagline::after {
  content: "";
  display: block;
  width: min(440px, 92%);
  height: 4px;
  margin-top: 8px;
  background: var(--accent);
  transform: rotate(-1deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  min-width: 210px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.stamp-panel {
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(rgba(15, 13, 12, 0.90), rgba(15, 13, 12, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(179, 66, 43, 0.30), transparent 28%),
    var(--black);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stamp-mark {
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 30px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.stamp-mark span {
  display: block;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.82;
}

.stamp-panel p {
  max-width: 500px;
  margin: 0;
  color: rgba(248, 241, 226, 0.84);
  line-height: 1.65;
  font-weight: 600;
}

.artists-section,
.releases-section {
  padding: 72px 0 68px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.artists-section h2,
.releases-section h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.86;
}

.artist-card {
  max-width: 820px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  text-align: left;
  background: rgba(255,255,255,0.22);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.artist-initials {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 18px;
  font-size: 4.8rem;
  line-height: 1;
}

.artist-card h3 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.artist-card p,
.section-intro,
.release-grid p,
.cards p,
.contact-section p {
  color: var(--muted);
  line-height: 1.65;
}

.artist-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-intro {
  max-width: 650px;
  margin: 16px auto 42px;
  font-size: 1.18rem;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.release-grid article {
  padding: 14px 34px 24px;
  border-right: 1px solid var(--line);
}

.release-grid article:last-child {
  border-right: none;
}

.release-grid span {
  display: block;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.release-grid h3 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.9;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  margin: 58px 0 36px;
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(rgba(13, 11, 10, 0.88), rgba(13, 11, 10, 0.9)),
    radial-gradient(circle at 80% 50%, rgba(179, 66, 43, 0.2), transparent 25%),
    var(--black);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.manifesto h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(3.4rem, 5vw, 5.4rem);
  line-height: 0.9;
}

.manifesto h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 7px;
  margin-top: 16px;
  background: var(--accent);
}

.manifesto p {
  margin: 0 0 16px;
  color: rgba(248, 241, 226, 0.86);
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.info-card {
  padding: 30px;
  background: rgba(255,255,255,0.22);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.info-card h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.92;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: end;
  padding: 36px 0 64px;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.signup-form input,
.signup-form button {
  min-height: 56px;
  border: 0;
  font: inherit;
}

.signup-form input {
  min-width: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
}

.signup-form button {
  padding: 0 24px;
  color: var(--white);
  background: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding: 24px 30px;
  color: var(--white);
  background: var(--black);
  font-size: 0.92rem;
}

.footer a {
  justify-self: center;
  color: var(--white);
  text-decoration: none;
}

.footer span:last-child {
  justify-self: end;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 24px;
    min-height: auto;
  }

  .nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .top-link {
    justify-self: start;
    padding-left: 0;
    border-left: 0;
  }

  .hero,
  .manifesto,
  .cards,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .release-grid {
    grid-template-columns: 1fr;
  }

  .release-grid article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .release-grid article:last-child {
    border-bottom: none;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer a,
  .footer span:last-child {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site {
    width: min(100vw - 28px, 1200px);
  }

  .topbar {
    position: static;
  }

  .brand {
    font-size: 1.8rem;
  }

  .brand-sub {
    max-width: none;
  }

  h1 {
    font-size: clamp(4.6rem, 19vw, 7.2rem);
  }

  .tagline {
    font-size: 1.2rem;
  }

  .hero-actions,
  .signup-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .artist-card {
    grid-template-columns: 1fr;
  }

  .artist-initials {
    width: 140px;
  }
}
