:root {
  color-scheme: dark;
  --paper: #f5f4f0;
  --quiet: #888;
  --line: #262626;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  background: #000;
}

body {
  margin: 0;
  background: #050505;
  color: var(--paper);
  font-family: "Graduate", "Rockwell Extra Bold", "Arial Black", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.landing {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(30px, 6vw, 80px) clamp(20px, 5vw, 72px);
}

.hero {
  display: flex;
  width: min(100%, 1120px);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand {
  width: 100%;
  padding-bottom: clamp(28px, 4.5vw, 52px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.genres {
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: var(--paper);
  font-size: clamp(1.15rem, 3.6vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.05;
}

.details {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(34px, 5vw, 62px);
}

h1 {
  margin: 0;
  font-size: clamp(1.55rem, 4.4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.05;
}

h1 span {
  display: block;
}

h1 small {
  display: block;
  margin-top: 12px;
  color: var(--quiet);
  font: inherit;
  font-size: clamp(0.62rem, 1.25vw, 0.86rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.35;
}

.date {
  margin: clamp(28px, 4.2vw, 48px) 0 0;
  padding-top: clamp(25px, 3.8vw, 42px);
  border-top: 1px solid var(--line);
}

.date time {
  display: block;
  font-size: clamp(1.05rem, 2.7vw, 2rem);
  letter-spacing: 0.12em;
  line-height: 1;
}

.eyebrow {
  margin: clamp(22px, 3.2vw, 34px) 0 0;
  color: var(--quiet);
  font-size: clamp(0.62rem, 1.05vw, 0.76rem);
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.socials {
  display: flex;
  gap: 26px;
  margin-top: clamp(30px, 4.5vw, 48px);
}

.socials a {
  display: grid;
  width: 30px;
  height: 34px;
  place-items: center;
  border-bottom: 1px solid transparent;
  color: var(--paper);
  font-size: 1.12rem;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    opacity 180ms ease;
}

.socials a:hover {
  border-color: currentColor;
  opacity: 0.7;
}

.socials a:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

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

@media (max-width: 560px) {
  .landing {
    padding:
      max(28px, env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      max(28px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
  }

  .brand {
    padding-bottom: 26px;
  }

  .genres {
    margin-top: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.045em;
  }

  .details {
    margin-top: 30px;
  }

  .eyebrow {
    letter-spacing: 0.24em;
  }

  h1 {
    letter-spacing: 0.045em;
  }

  h1 small {
    letter-spacing: 0.2em;
  }

  .date {
    margin-top: 24px;
    padding-top: 24px;
  }

  .socials {
    margin-top: 28px;
  }
}

@media (max-width: 360px) {
  .genres {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.35rem;
  }

  h1 small {
    font-size: 0.58rem;
  }

  .date time {
    font-size: 0.95rem;
  }
}

@media (max-height: 690px) and (min-width: 561px) {
  .landing {
    padding-block: 20px;
  }

  .brand {
    width: min(100%, 820px);
    padding-bottom: 26px;
  }

  .details {
    margin-top: 28px;
  }

  .date {
    margin-top: 24px;
    padding-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
