:root {
  --black: #000000;
  --white: #ffffff;
  --muted: #cfcfcf;
  --soft: #8f8f8f;
  --border: rgba(255, 255, 255, 0.6);
  --border-soft: rgba(255, 255, 255, 0.22);
  --max-width: 1120px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: grid;
  grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr);
  align-items: center;
  padding: 16px clamp(18px, 4vw, 42px);
  background: transparent;
  overflow: hidden;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: var(--black);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand,
.footer-brand {
  width: 72px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand img {
  max-height: 44px;
}

.footer-brand {
  width: 86px;
  height: 52px;
}

.footer-brand img {
  max-height: 52px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 24px);
}

.main-nav a,
.social-links a,
.footer-links a {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.social-links a:hover,
.footer-links a:hover {
  opacity: 0.65;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 13px;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 16px;
  border: 1px solid transparent;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/background-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 52%, rgba(0, 0, 0, 0.76) 86%, #000 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent 42%);
  pointer-events: none;
}

.section {
  padding: clamp(84px, 11vw, 150px) 22px;
  background: var(--black);
}

.store-section {
  padding-top: clamp(72px, 8vw, 110px);
}

.about-section {
  padding-top: clamp(78px, 9vw, 120px);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin: 0 auto clamp(70px, 8vw, 110px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
  text-align: left;
}

.about-image-placeholder {
  width: 100%;
  min-height: clamp(380px, 42vw, 560px);
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    #090909;
}

.about-copy {
  max-width: 540px;
  justify-self: end;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.72;
  text-align: justify;
}

.about-copy p {
  margin: 0 0 22px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.product-slider {
  --product-gap: clamp(28px, 5vw, 66px);
  max-width: 1080px;
  padding: 0 72px;
  margin-bottom: 72px;
}

.product-viewport {
  overflow: hidden;
}

.product-track {
  display: flex;
  gap: var(--product-gap);
  transition: transform 260ms ease;
  will-change: transform;
}

.product-card {
  flex: 0 0 calc((100% - (var(--product-gap) * 2)) / 3);
  display: grid;
  justify-items: center;
  grid-template-rows: auto minmax(44px, auto);
  gap: 22px;
  color: var(--white);
}

.product-image-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #f4f2f5;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease, opacity 220ms ease;
}

.product-card:hover img {
  transform: translateY(-4px);
  opacity: 0.82;
}

.product-card span,
.video-card h3 {
  max-width: 220px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-card > span:last-child {
  min-height: 44px;
  display: grid;
  place-items: start center;
  text-align: center;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 10px 18px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.slider {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.music-slider {
  padding: 0 80px;
}

.music-content {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
  text-align: left;
}

.music-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #111;
}

.music-copy {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.music-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 400;
  line-height: 1;
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--white);
  transform: translateY(-50%);
  cursor: pointer;
}

.slider-arrow svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.slider-arrow:hover {
  opacity: 0.65;
}

.music-prev,
.video-prev,
.product-prev {
  left: 0;
}

.music-next,
.video-next,
.product-next {
  right: 0;
}

.player-section {
  padding-top: 22px;
  padding-bottom: clamp(90px, 12vw, 160px);
}

.player-shell {
  width: min(100%, 540px);
  margin: 0 auto;
}

.spotify-placeholder {
  min-height: 190px;
  display: grid;
  grid-template-columns: 116px 1fr 52px;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #4a4a4a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.spotify-art {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 24px;
}

.spotify-info {
  text-align: left;
}

.spotify-info p,
.spotify-info span {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.spotify-info strong {
  display: block;
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
}

.spotify-play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  position: relative;
}

.spotify-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #4a4a4a;
  transform: translate(-50%, -50%);
}

.video-slider {
  padding: 0 80px;
}

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

.video-card {
  display: grid;
  gap: 26px;
  color: var(--white);
  cursor: pointer;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.7);
  transition: transform 240ms ease, filter 240ms ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.025);
  filter: grayscale(0.1) brightness(0.88);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--black);
  transform: translate(-50%, -50%);
}

.video-card h3 {
  justify-self: center;
  margin: 0;
}

.newsletter-section {
  padding-top: clamp(40px, 6vw, 82px);
}

.newsletter-inner {
  width: min(100%, 540px);
  margin: 0 auto;
  text-align: center;
}

.newsletter-intro {
  max-width: 540px;
  margin: 0 auto 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: justify;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  text-align: left;
}

.newsletter-form label,
.required-note {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form input[type="tel"] {
  width: 100%;
  height: 44px;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--white);
  opacity: 0.48;
}

.required-note {
  text-align: center;
  margin-top: 10px;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  text-transform: none;
}

.consent-row input {
  margin: 1px 0 0;
  accent-color: var(--white);
}

.consent-row span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.submit-button {
  justify-self: center;
  margin-top: 10px;
}

.form-message {
  min-height: 18px;
  margin: 4px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  text-align: center;
}

.form-message.is-error {
  color: #ffffff;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 42px);
  background: var(--black);
  color: var(--muted);
}

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

.footer-links a,
.footer-social a {
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: grid;
    place-content: center;
    gap: 28px;
    background: rgba(0, 0, 0, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    font-size: 24px;
    text-align: center;
  }

  .site-header .social-links {
    position: fixed;
    z-index: 26;
    right: 0;
    bottom: 44px;
    left: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-header.is-open .social-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-open {
    background: transparent;
  }

  .site-header.is-open .menu-toggle {
    position: fixed;
    z-index: 35;
    top: 20px;
    right: 18px;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .product-slider {
    --product-gap: 34px;
    padding: 0 52px;
  }

  .product-card {
    flex-basis: calc((100% - var(--product-gap)) / 2);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-image-placeholder {
    min-height: 420px;
  }

  .about-copy {
    max-width: 680px;
    justify-self: center;
  }

  .music-slider,
  .video-slider {
    padding: 0 52px;
  }

  .music-content {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .music-copy {
    justify-items: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-social {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
    padding: 12px 18px;
  }

  .brand {
    width: 64px;
    height: 42px;
  }

  .brand img {
    max-height: 42px;
  }

  .footer-brand {
    width: 78px;
    height: 48px;
  }

  .hero-section {
    background-position: center top;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-label {
    margin-bottom: 56px;
  }

  .product-slider {
    --product-gap: 22px;
    padding: 0;
    margin-bottom: 92px;
  }

  .product-card {
    flex-basis: 100%;
  }

  .about-image-placeholder {
    min-height: 360px;
  }

  .about-copy {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-copy p {
    margin-bottom: 18px;
  }

  .music-slider,
  .video-slider {
    padding: 0;
  }

  .slider-arrow {
    top: auto;
    bottom: -70px;
    transform: none;
  }

  .music-prev,
  .video-prev {
    left: calc(50% - 62px);
  }

  .music-next,
  .video-next {
    right: calc(50% - 62px);
  }

  .music-section,
  .videos-section,
  .store-section {
    padding-bottom: 150px;
  }

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

  .spotify-placeholder {
    grid-template-columns: 82px 1fr;
    min-height: 150px;
    padding: 18px;
  }

  .spotify-play {
    display: none;
  }

  .newsletter-inner {
    width: min(100%, 360px);
  }
}
