:root {
  --background: #080808;
  --text: #f5f5f0;
  --muted: #9d9d98;
  --accent: #0af0b4;
  --border: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

.landing {
  min-height: 100vh;
}

/* HEADER */

.header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;

  width: 100%;
  padding: 24px 5vw;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.logo-link {
  display: inline-block;
  line-height: 0;
}

.logo {
  display: block;
  width: auto;
  height: 120px;
  object-fit: contain;
}

.instagram-link {
  margin-top: 8px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.instagram-link:hover {
  color: var(--text);
}

/* HERO */

.hero {
  position: relative;

  min-height: 100vh;
  padding: 210px 5vw 60px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-image:
    linear-gradient(
      rgba(8, 8, 8, 0.62),
      rgba(8, 8, 8, 0.72)
    ),
    url("../HesselBeats26-SJM-058.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.72) 0%,
      rgba(8, 8, 8, 0.38) 55%,
      rgba(8, 8, 8, 0.52) 100%
    );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1400px;
}

.eyebrow {
  margin: 0 0 28px;

  color: var(--accent);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;

  font-size: clamp(80px, 17vw, 240px);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.intro {
  max-width: 760px;

  margin: 52px 0 36px;

  color: #d0d0cc;

  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.55;
}

.aftermovie-link {
  display: inline-block;

  padding-bottom: 8px;

  border-bottom: 1px solid var(--accent);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aftermovie-link:hover {
  color: var(--accent);
}

/* AFTERMOVIE */

.aftermovie {
  min-height: 100vh;
  padding: 80px 5vw;

  display: flex;
  align-items: center;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;

  background: #111;
}

.video-wrapper iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}

/* FOOTER */

.footer {
  padding: 30px 5vw;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid var(--border);

  color: var(--muted);

  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer a:hover {
  color: var(--text);
}

/* TABLET */

@media (max-width: 1000px) {
  .logo {
    height: 100px;
  }

  .hero {
    padding-top: 180px;
  }
}

/* SMARTPHONE */

@media (max-width: 700px) {
  .header {
    padding: 20px 24px;
  }

  .logo {
    height: 78px;
  }

  .instagram-link {
    margin-top: 5px;
    font-size: 10px;
  }

  .hero {
    min-height: 100svh;
    padding: 145px 24px 50px;
    align-items: center;
  }

  .hero::before {
    top: 10%;
    right: -60%;

    width: 430px;
    height: 430px;

    filter: blur(130px);
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  h1 {
    font-size: 23vw;
    line-height: 0.8;
  }

  .intro {
    margin-top: 36px;

    font-size: 18px;
    line-height: 1.5;
  }

  .aftermovie-link {
    font-size: 10px;
  }

  .aftermovie {
    min-height: auto;
    padding: 70px 24px;
  }

  .footer {
    padding: 24px;

    flex-direction: column;
    align-items: flex-start;
  }
}