:root {
  --ink: #f7efe2;
  --muted: #c5b8a2;
  --paper: #15100c;
  --panel: #211913;
  --panel-strong: #2f2217;
  --line: #4b3829;
  --coal: #0c0a09;
  --rust: #b54228;
  --ember: #f06a28;
  --brass: #c8943a;
  --bone: #f4e3c3;
  --steel: #92999a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(181, 66, 40, 0.22), transparent 30%),
    linear-gradient(180deg, #21150f 0%, var(--paper) 42%, #0f0c0a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 10, 9, 0.9);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(244, 227, 195, 0.55);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--rust), #512016);
  color: #ffffff;
  font-size: 0.78rem;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  color: var(--bone);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
  color: var(--ember);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: rgba(0, 0, 0, 0.18);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(790px, 94vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.92), rgba(20, 11, 7, 0.62) 48%, rgba(10, 8, 7, 0.22)),
    linear-gradient(0deg, rgba(12, 10, 9, 0.84), rgba(12, 10, 9, 0.05) 54%, rgba(0,0,0,0.12));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb45f;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 7.2vw, 5.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.hero h1 {
  overflow-wrap: normal;
  word-break: keep-all;
}

h2 {
  max-width: 13ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 247, 231, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--ember), var(--rust));
  color: #170d08;
}

.button.secondary {
  border-color: rgba(244, 227, 195, 0.72);
  color: var(--bone);
  background: rgba(0, 0, 0, 0.18);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.stats div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.section-heading.narrow {
  display: block;
  max-width: 780px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.about-grid p,
.album-card p:last-child,
.tour-list span,
.contact-copy p {
  color: var(--muted);
}

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

.album-card,
.contact-form {
  background: linear-gradient(180deg, rgba(47, 34, 23, 0.96), rgba(31, 24, 18, 0.96));
  border: 1px solid var(--line);
  border-radius: 6px;
}

.album-card {
  min-height: 340px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.album-art {
  position: relative;
  width: 100%;
  min-height: 150px;
  margin-bottom: auto;
  overflow: hidden;
  border: 1px solid rgba(244, 227, 195, 0.18);
  border-radius: 4px;
}

.album-art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244, 227, 195, 0.4);
}

.album-art.ember {
  background: linear-gradient(135deg, #120c09, #aa331e 54%, #f06a28);
}

.album-art.brass {
  background: linear-gradient(135deg, #20150e, #7d5524 52%, #d6a24a);
}

.album-art.iron {
  background: linear-gradient(135deg, #080808, #3f4648 54%, #a6a19a);
}

.release-type {
  margin: 22px 0 8px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  color: var(--brass);
  font-weight: 900;
  text-transform: uppercase;
}

.discography-section,
.follow-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tour-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 84px);
}

.tour-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-list li {
  display: grid;
  grid-template-columns: 92px 1fr 1.2fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.tour-list time {
  color: var(--ember);
  font-weight: 950;
  text-transform: uppercase;
}

.tour-list strong {
  color: var(--bone);
  font-size: 1.04rem;
}

.follow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.follow-grid a {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(244, 227, 195, 0.055);
  color: var(--bone);
  font-weight: 950;
  text-transform: uppercase;
}

.follow-grid a:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.contact-section {
  align-items: start;
}

.contact-copy p {
  max-width: 540px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #604632;
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #120f0d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(240, 106, 40, 0.22);
  border-color: var(--ember);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--brass);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--bone);
  font-weight: 900;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 6px);
    right: 18px;
    display: none;
    width: min(300px, calc(100vw - 36px));
    padding: 12px;
    background: rgba(18, 15, 13, 0.98);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: var(--shadow);
    color: var(--ink);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .stats,
  .about-grid,
  .album-grid,
  .tour-section,
  .contact-section,
  .follow-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .tour-list li {
    grid-template-columns: 86px 1fr;
  }

  .tour-list strong {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
  }

  .brand span:last-child {
    max-width: 152px;
    line-height: 1.1;
  }

  .hero {
    min-height: 700px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 8, 7, 0.9), rgba(10, 8, 7, 0.28));
  }

  h1 {
    font-size: clamp(1.85rem, 9.8vw, 2.55rem);
    max-width: 100%;
  }

  h2 {
    font-size: 2.1rem;
  }

  .tour-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tour-list strong {
    grid-column: auto;
  }

  .hero-actions,
  .site-footer {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

.release-feature {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(47, 34, 23, 0.96), rgba(14, 11, 10, 0.96));
  box-shadow: var(--shadow);
}

.release-feature img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(244, 227, 195, 0.22);
  border-radius: 4px;
}

.release-feature h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.release-feature p:last-child,
.follow-section p {
  color: var(--muted);
  max-width: 680px;
}

.track-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(75, 56, 41, 0.9);
  border-radius: 4px;
  background: rgba(244, 227, 195, 0.045);
}

.track-list span {
  color: var(--ember);
  font-weight: 950;
}

.track-list strong {
  color: var(--bone);
  font-size: 0.98rem;
}

.track-list time {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .release-feature,
  .track-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .track-list li {
    grid-template-columns: 38px 1fr;
  }

  .track-list time {
    grid-column: 2;
  }
}

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

.release-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(47, 34, 23, 0.96), rgba(19, 15, 12, 0.96));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}

.release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(244, 227, 195, 0.22);
  border-radius: 4px;
}

.release-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
}

.latest-release {
  border-color: rgba(240, 106, 40, 0.72);
}

.popular-tracks {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  margin-bottom: 34px;
  padding: clamp(18px, 3vw, 28px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.popular-tracks h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.popular-tracks ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.popular-tracks li {
  display: grid;
  grid-template-columns: 44px 1fr minmax(120px, auto);
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(75, 56, 41, 0.9);
  border-radius: 4px;
  background: rgba(244, 227, 195, 0.045);
}

.popular-tracks span {
  color: var(--ember);
  font-weight: 950;
}

.popular-tracks strong {
  color: var(--bone);
}

.popular-tracks em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

@media (max-width: 1000px) {
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .popular-tracks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .release-grid,
  .popular-tracks li {
    grid-template-columns: 1fr;
  }

  .popular-tracks em {
    text-align: left;
  }
}

.album-section {
  display: grid;
  gap: 18px;
  padding: 0 0 clamp(42px, 7vw, 76px);
}

.album-section + .album-section {
  padding-top: clamp(42px, 7vw, 76px);
  border-top: 1px solid var(--line);
}

.album-section:last-child {
  padding-bottom: 0;
}

.track-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(240, 106, 40, 0.55);
  text-underline-offset: 4px;
}

.track-list a:hover {
  color: var(--ember);
}

.song-page {
  min-height: 100vh;
  padding-top: 94px;
}

.song-nav {
  display: flex;
}

.song-hero {
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0 clamp(30px, 6vw, 70px);
}

.song-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(244, 227, 195, 0.24);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.song-hero h1 {
  max-width: 100%;
  white-space: normal;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
}

.song-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.song-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(244, 227, 195, 0.045);
}

.song-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.song-meta dd {
  margin: 4px 0 0;
  color: var(--bone);
  font-weight: 900;
}

.song-lyrics {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 5vw, 64px);
}

.lyrics-panel {
  color: var(--muted);
  font-size: 1.05rem;
}

.lyrics-panel {
  min-height: 220px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(244, 227, 195, 0.045);
  white-space: pre-wrap;
}

@media (max-width: 900px) {
  .song-hero,
  .song-lyrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .song-page {
    padding-top: 74px;
  }

  .song-hero h1 {
    font-size: clamp(2rem, 13vw, 3.1rem);
  }

  .song-meta {
    grid-template-columns: 1fr;
  }
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: end;
}

.legal-page {
  min-height: 100vh;
  padding-top: 94px;
}

.legal-hero,
.legal-content {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
}

.legal-hero {
  padding: clamp(48px, 8vw, 92px) 0 clamp(24px, 5vw, 48px);
}

.legal-hero h1 {
  white-space: normal;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 16px;
  padding-bottom: clamp(72px, 10vw, 128px);
}

.legal-content article {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(244, 227, 195, 0.045);
}

.legal-content h2 {
  max-width: none;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-note {
  border-color: rgba(240, 106, 40, 0.72) !important;
}

@media (max-width: 560px) {
  .footer-links {
    justify-content: start;
  }

  .legal-page {
    padding-top: 74px;
  }
}

.follow-link {
  display: flex !important;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.follow-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 950;
}

.follow-link.facebook:hover {
  color: #86a8ff;
}

.follow-link.instagram:hover {
  color: #ff6f9f;
}

.follow-link.spotify:hover {
  color: #46d36b;
}

.follow-link.youtube:hover {
  color: #ff4d4d;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.about-copy h2 {
  max-width: 14ch;
}

.about-copy p {
  color: var(--muted);
  max-width: 680px;
}

.about-lead {
  margin-top: 24px;
  color: var(--bone) !important;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.about-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(240, 106, 40, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(47, 34, 23, 0.96), rgba(18, 14, 11, 0.96));
  box-shadow: var(--shadow);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 227, 195, 0.12);
  pointer-events: none;
}

.about-badge {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(244, 227, 195, 0.42);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--rust));
  color: #160c08;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.about-points {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 227, 195, 0.13);
}

.about-points li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-points span {
  color: var(--ember);
  font-weight: 950;
}

.about-points strong {
  color: var(--bone);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.about-points p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-points li {
    grid-template-columns: 1fr;
  }

  .about-points p {
    grid-column: auto;
    margin-top: -6px;
  }
}

@media (max-width: 560px) {
  .track-list li {
    grid-template-columns: 32px minmax(0, 1fr) 42px;
    gap: 8px;
    min-height: 48px;
    padding: 10px;
  }

  .track-list strong,
  .track-list a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .track-list time {
    grid-column: auto;
    justify-self: end;
    white-space: nowrap;
  }
}

#home,
#about,
#discography,
#follow,
#contact {
  scroll-margin-top: 86px;
}

.section-heading h2,
.about-copy h2,
.song-lyrics h2,
.legal-content h2 {
  max-width: none;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .section-heading h2,
  .about-copy h2,
  .song-lyrics h2,
  .legal-content h2 {
    white-space: normal;
  }
}

.section-heading h2,
.about-copy h2,
.song-lyrics h2,
.legal-content h2 {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.about-copy-wide {
  max-width: 920px;
}

.song-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
.song-hero h1 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.release-feature h3,
.release-card h3,
.popular-tracks h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
