:root {
  --paper: #E9E7E0;
  --ink: #0d0e0d;
  --edge: #151615;
  --page-pad: clamp(20px, 2.92vw, 42px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Zalando Sans", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  padding: 23px var(--page-pad) 0;
}

.actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.copy-status {
  position: absolute;
  top: 46px;
  right: var(--page-pad);
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  min-width: 55px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--edge);
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.pill:hover,
.pill:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.pill:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.holding-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 64px var(--page-pad);
}

.hero {
  position: relative;
  width: min(54.2vw, calc((100svh - 190px) * 1.27), 780px);
}

.film {
  position: relative;
  width: 100%;
  aspect-ratio: 1.27 / 1;
  overflow: hidden;
}

.film__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.film__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19.62%;
  min-width: 96px;
  max-width: 153px;
  height: auto;
  transform: translate(-50%, -50%);
}

.tagline {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: max-content;
  max-width: 92vw;
  margin: 0;
  transform: translateX(-50%);
  font-size: clamp(11px, 0.98vw, 14px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .site-header {
    padding-top: 18px;
  }

  .holding-page {
    padding: 64px var(--page-pad);
  }

  .hero {
    width: min(92vw, calc((100svh - 175px) * 1.27), 620px);
  }

  .tagline {
    top: calc(100% + 14px);
    letter-spacing: 0.22em;
  }
}

@media (max-width: 380px) {
  .pill {
    min-width: 50px;
  }

  .film__logo {
    min-width: 82px;
  }

  .tagline {
    font-size: 10px;
    letter-spacing: 0.17em;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .site-header {
    padding-top: 14px;
  }

  .hero {
    width: min(58vw, calc((100svh - 120px) * 1.27), 620px);
  }

  .tagline {
    top: calc(100% + 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .film__video {
    display: none;
  }

  .pill {
    transition: none;
  }
}
