:root {
  --ink: #d4e0e0;
  --deep: #1d2828;
  --rust: #471c13;
  --coral: #b1462e;
  --coral-bright: #d15a43;
  --white: #ffffff;
  --header-height: 232px;
  --page-pad: clamp(24px, 4vw, 42px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: Raleway, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.4;
}

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

a {
  color: inherit;
}

.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: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px var(--page-pad);
  color: var(--white);
}

.logo-link {
  display: block;
  width: min(34vw, 548px);
  min-width: 280px;
  text-decoration: none;
}

.site-logo {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-top: 58px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 17px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  text-decoration: none;
  color: var(--white);
  font-size: 19px;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.social-links--header a {
  width: 33px;
  height: 33px;
  font-size: 14px;
}

.social-links svg {
  width: 55%;
  height: 55%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  min-width: 118px;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  padding: 15px 27px 14px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-family: Raleway, Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0;
  transition: background-color 180ms ease, transform 180ms ease;
}

.site-nav .button {
  min-width: 86px;
  min-height: 39px;
  padding: 11px 19px 10px;
  font-size: 14px;
}

.button:hover,
.button:focus-visible {
  background: var(--coral-bright);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 638px;
  background:
    url("assets/hero.jpg") center 36% / 104% auto no-repeat,
    radial-gradient(circle at 43% 40%, rgba(214, 99, 28, 0.82), transparent 34%),
    linear-gradient(90deg, #5d1513, #8e331c 45%, #401416);
  overflow: hidden;
}

.single-section {
  min-height: 531px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 409px);
  gap: clamp(20px, 2.5vw, 42px);
  align-items: center;
  padding: 74px var(--page-pad) 62px;
  background: var(--deep);
}

.single-copy {
  max-width: 820px;
}

.single-copy h1 {
  max-width: 850px;
  margin: 0 0 28px;
  font-family: Roboto, Arial, sans-serif;
  font-size: clamp(28px, 2.55vw, 34px);
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--ink);
}

.single-copy h1 a {
  color: var(--coral);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.single-copy p {
  max-width: 610px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 18px);
  line-height: 1.4;
}

.artwork-link {
  justify-self: end;
  width: min(100%, 368px);
  background: #151615;
  text-decoration: none;
  transition: transform 220ms ease;
  transform-origin: center;
}

.artwork-link:hover,
.artwork-link:focus-visible {
  transform: scale(1.1);
}

.single-artwork {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background:
    url("assets/feverdream-art.png") center / cover no-repeat,
    radial-gradient(circle at 55% 50%, rgba(206, 36, 41, 0.95), transparent 18%),
    radial-gradient(circle at 45% 52%, rgba(52, 117, 93, 0.7), transparent 29%),
    #161716;
}

.epk-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(177, 70, 46, 0.26), transparent 34rem),
    var(--deep);
}

.epk-page--only-you {
  background:
    radial-gradient(circle at 50% 8%, rgba(47, 79, 118, 0.34), transparent 34rem),
    #10263f;
}

.epk-page--only-you .button {
  background: #7fd8c2;
  color: #10263f;
}

.epk-page--only-you .button:hover,
.epk-page--only-you .button:focus-visible {
  background: #9ee8d7;
}

.epk-page--only-you .button--outline {
  background: transparent;
  color: #b9f0e3;
  box-shadow: inset 0 0 0 1px currentColor;
}

.epk-page--only-you .button--outline:hover,
.epk-page--only-you .button--outline:focus-visible {
  background: rgba(127, 216, 194, 0.16);
}

.epk-page--only-you .epk-player audio {
  accent-color: #7fd8c2;
}

.epk-page--only-you .epk-copy blockquote {
  border-left-color: #7fd8c2;
  border-right-color: #7fd8c2;
}

.epk-page--only-you .site-footer {
  background: #071827;
}

.epk-page--only-you .site-footer .social-links a {
  color: #7fd8c2;
}

.epk-page--only-you .epk-main {
  padding-top: clamp(250px, 21.5vw, 275px);
}

.epk-page--only-you .epk-still {
  width: min(100%, 840px);
}

.epk-page--only-you .epk-feature {
  gap: 56px;
}

.epk-page--only-you .epk-copy {
  max-width: 1040px;
}

.epk-main {
  padding: clamp(220px, 20vw, 245px) var(--page-pad) 88px;
}

.epk-hero,
.epk-feature,
.epk-copy {
  width: min(100%, 980px);
  margin-inline: auto;
}

.epk-hero {
  text-align: center;
}

.epk-hero h1,
.epk-copy h2 {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--ink);
}

.epk-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.08;
}

.epk-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
  margin-top: clamp(48px, 6vw, 72px);
  text-align: center;
}

.epk-still {
  width: min(100%, 420px);
  aspect-ratio: 1628 / 2034;
  object-fit: cover;
}

.epk-still--landscape {
  aspect-ratio: 3 / 2;
}

.epk-player {
  display: grid;
  width: min(100%, 420px);
  gap: 24px;
  justify-items: center;
  padding: 28px;
  background: #171a1a;
}

.epk-track-label {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.epk-player audio {
  width: 100%;
  accent-color: var(--coral);
}

.epk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.button--outline {
  background: transparent;
  box-shadow: inset 0 0 0 1px currentColor;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.epk-copy {
  max-width: 820px;
  margin-top: clamp(32px, 4vw, 52px);
  text-align: center;
}

.epk-copy p {
  margin: 0 0 28px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.epk-copy blockquote {
  margin: 42px 0;
  padding: 0 30px;
  border-left: 1px solid var(--coral);
  border-right: 1px solid var(--coral);
  color: var(--white);
}

.epk-copy blockquote p {
  font-style: italic;
}

.epk-stream-cta {
  margin-top: 8px;
}

.epk-copy h2 {
  margin: 64px 0 28px;
  font-size: clamp(28px, 3vw, 40px);
}

.site-footer {
  display: flex;
  min-height: 161px;
  align-items: center;
  padding: 38px var(--page-pad);
  background: var(--rust);
  color: var(--white);
}

.social-links--footer {
  gap: 12px;
}

.social-links--footer a {
  width: 60px;
  height: 60px;
  border: 0;
  font-size: 54px;
}

.social-links--footer span {
  display: block;
  font-size: 33px;
  line-height: 1;
}

@media (max-width: 900px) {
  :root {
    --header-height: 108px;
  }

  .site-header {
    position: absolute;
    min-height: var(--header-height);
    align-items: center;
    padding-top: 27px;
    padding-bottom: 20px;
  }

  .logo-link {
    width: min(47.7vw, 198px);
    min-width: 162px;
    min-height: 55px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 47px;
    height: 37px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 31px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span:not(.sr-only) + span:not(.sr-only) {
    margin-top: -11px;
  }

  body.nav-open .menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 42px;
    padding: 138px 24px 44px;
    background: rgba(29, 40, 40, 0.94);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .social-links--header {
    gap: 15px;
  }

  .hero {
    min-height: 622px;
    background-position: 56% top, center, center;
    background-size: cover, auto, auto;
    background-repeat: no-repeat;
  }

  .single-section {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 58px var(--page-pad) 22px;
  }

  .single-copy h1 {
    margin-bottom: 31px;
    font-size: 26px;
    line-height: 1.14;
  }

  .single-copy p {
    font-size: 17px;
    line-height: 1.55;
  }

  .artwork-link {
    justify-self: center;
    width: min(100%, 242px);
    margin-top: 0;
    margin-bottom: 28px;
    transform: none;
  }

  .artwork-link:hover,
  .artwork-link:focus-visible {
    transform: scale(1.1);
  }

  .epk-main {
    padding-top: 142px;
    padding-bottom: 60px;
  }

  .epk-feature {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .epk-still {
    width: min(100%, 320px);
  }

  .epk-player {
    justify-items: center;
  }

  .epk-actions {
    justify-content: center;
  }

  .epk-copy blockquote {
    padding: 0 18px;
  }

  .site-footer {
    min-height: 119px;
    justify-content: center;
    padding: 32px var(--page-pad);
  }

  .social-links--footer {
    width: auto;
    flex-wrap: nowrap;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  :root {
    --page-pad: 23px;
  }

  .hero {
    min-height: 622px;
  }

}
