:root {
  --ink: #241611;
  --paper: #fffaf2;
  --muted: #695b52;
  --line: #e5d5c4;
  --maroon: #7b1f2d;
  --maroon-dark: #541520;
  --saffron: #d9902f;
  --teal: #0e6b65;
  --ivory: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 58px);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--maroon);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--maroon);
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #170f10;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 10, 12, 0.92) 0%, rgba(46, 20, 23, 0.72) 42%, rgba(25, 15, 17, 0.1) 100%),
    linear-gradient(0deg, rgba(22, 10, 12, 0.42), transparent 45%);
}

.hero-copy {
  position: relative;
  width: min(640px, 90vw);
  margin-left: clamp(22px, 7vw, 96px);
  padding: 80px 0;
  color: var(--ivory);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--saffron);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--ivory);
  background: var(--maroon);
}

.button.secondary {
  color: #2d1811;
  background: var(--saffron);
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.signal-bar div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--ivory);
}

.signal-bar strong,
.signal-bar span {
  display: block;
}

.signal-bar strong {
  color: var(--maroon);
  font-size: 20px;
}

.signal-bar span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 5vw, 76px);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.profile-grid p,
.section-heading p,
.contact-section p {
  max-width: 800px;
  color: var(--muted);
  font-size: 18px;
}

.artist-card,
.timeline article,
.album-grid article,
.press-grid article,
address {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.artist-card {
  padding: 24px;
}

.card-title,
.album-grid span,
.timeline span {
  color: var(--teal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.artist-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.artist-card li + li {
  margin-top: 8px;
}

.milestones,
.video-section {
  background: #f5eadc;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline article,
.album-grid article,
.press-grid article {
  padding: 22px;
}

.timeline p,
.album-grid p,
.press-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.music-section {
  background: #211516;
  color: var(--ivory);
}

.music-section .section-heading p,
.music-section .album-grid p {
  color: #e1d0c2;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.album-grid article {
  color: var(--ink);
}

.text-link {
  color: var(--saffron);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.video-grid iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-grid h3 {
  margin: 0;
  padding: 16px 18px;
}

.press-grid,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

address {
  padding: 22px;
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--maroon);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: #eadbd0;
  background: #130b0c;
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer strong,
.site-footer span {
  display: block;
}

@media (max-width: 940px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(22, 10, 12, 0.94) 0%, rgba(46, 20, 23, 0.68) 55%, rgba(25, 15, 17, 0.14) 100%);
  }

  .signal-bar,
  .profile-grid,
  .timeline,
  .album-grid,
  .video-grid,
  .press-grid,
  .contact-section,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 44px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }
}
