:root {
  --ink: #061017;
  --ink-soft: #0b1820;
  --panel: #101e26;
  --panel-light: #172830;
  --paper: #f5f0e8;
  --muted: #9ba9ae;
  --orange: #f04a20;
  --orange-hot: #ff6b2c;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 0%, rgba(240, 74, 32, 0.13), transparent 31rem),
    linear-gradient(180deg, #071118 0%, #050b0f 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("cover.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.035;
  filter: grayscale(1);
  content: "";
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: flex;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: var(--paper);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark span {
  color: var(--orange);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

nav a {
  color: #d8dcdb;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible {
  color: var(--orange-hot);
}

.nav-contact {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
}

.hero {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 510px);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: min(1180px, calc(100% - 3rem));
  min-height: 760px;
  margin: 0 auto;
  padding: 5.5rem 0 7rem;
}

.hero-glow {
  position: absolute;
  right: -15%;
  bottom: 14%;
  width: 72%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--orange), #ffb062, transparent);
  box-shadow:
    0 0 25px var(--orange),
    0 0 90px rgba(240, 74, 32, 0.65);
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero-copy,
.cover-wrap {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange-hot);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.intro {
  max-width: 620px;
  margin: 2rem 0 0;
  color: #bdc7c9;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(240, 74, 32, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-hot);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.album-facts {
  display: flex;
  gap: 2rem;
  margin: 3.2rem 0 0;
  padding: 0;
  list-style: none;
}

.album-facts li {
  display: flex;
  flex-direction: column;
}

.album-facts strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.album-facts span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cover-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.cover-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  content: "";
}

.cover-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cover-wrap > p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.track-section {
  padding: 7rem max(1.5rem, calc((100% - 1180px) / 2));
  color: var(--ink);
  background: var(--paper);
}

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

.section-heading > p {
  max-width: 430px;
  margin: 0 0 0.5rem;
  color: #5d6669;
}

.album-player {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(270px, 1.4fr) minmax(130px, 0.55fr);
  gap: 1.6rem;
  align-items: center;
  padding: 1.2rem;
  color: var(--paper);
  background: var(--ink-soft);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(7, 16, 22, 0.18);
}

.now-playing {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.now-playing img {
  width: 62px;
  height: 62px;
  border-radius: 3px;
  object-fit: cover;
}

.now-playing div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.now-playing span,
.now-playing small {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.now-playing strong {
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transport {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.icon-button,
.main-play,
.volume-button {
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 34px;
  height: 34px;
  font-size: 2rem;
}

.main-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 22px rgba(240, 74, 32, 0.35);
}

.timeline,
.volume {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.timeline span {
  min-width: 34px;
  color: var(--muted);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  accent-color: var(--orange);
  cursor: pointer;
}

.volume-button {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.track-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(7, 16, 22, 0.16);
  list-style: none;
}

.track-list li {
  border-bottom: 1px solid rgba(7, 16, 22, 0.16);
}

.track-list li:nth-child(odd) {
  border-right: 1px solid rgba(7, 16, 22, 0.16);
}

.track {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 1rem 1.2rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.track:hover,
.track:focus-visible,
.track.is-active {
  background: rgba(240, 74, 32, 0.08);
}

.track.is-active .track-number,
.track.is-active .track-action {
  color: var(--orange);
}

.track-number {
  color: #7c8588;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.track-title {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.track-title strong {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-title small {
  color: #798184;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.track-action {
  color: #6c7476;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 6rem;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 8rem 0;
}

.about-copy {
  align-self: end;
  color: #b8c2c4;
  font-size: 1.08rem;
}

.about-copy p {
  margin: 0 0 1rem;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.8rem;
  color: var(--orange-hot);
  font-weight: 800;
  text-decoration: none;
}

footer {
  display: flex;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

footer p {
  margin: 0;
}

.footer-mark {
  font-size: 1rem;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 107, 44, 0.7);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 3rem;
    min-height: auto;
  }

  .album-player {
    grid-template-columns: minmax(240px, 1fr) auto minmax(280px, 1.4fr);
  }

  .volume {
    display: none;
  }

  .about {
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 2rem, 1180px);
  }

  nav {
    gap: 0.8rem;
  }

  nav a:not(.nav-contact) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 2rem, 620px);
    padding: 4rem 0 5.5rem;
  }

  .cover-wrap {
    order: -1;
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .cover-frame {
    transform: none;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.7rem);
  }

  .hero-glow {
    right: -25%;
    bottom: 10%;
    width: 120%;
  }

  .track-section {
    padding: 5rem 1rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 1.2rem;
  }

  .album-player {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .timeline {
    grid-column: 1 / -1;
  }

  .track-list {
    grid-template-columns: 1fr;
  }

  .track-list li:nth-child(odd) {
    border-right: 0;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: min(100% - 2rem, 620px);
    padding: 6rem 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 2rem, 620px);
  }
}

@media (max-width: 420px) {
  .album-facts {
    gap: 1.2rem;
    justify-content: space-between;
  }

  .button {
    width: 100%;
  }

  .now-playing img {
    width: 52px;
    height: 52px;
  }

  .track {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding-inline: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
