:root {
  color-scheme: dark;
  --ink: #101010;
  --line: #2a2a28;
  --white: #fff;
  --focus: #d9d9d2;
}

@font-face {
  font-display: swap;
  font-family: "Zero Dark";
  font-style: normal;
  font-weight: 100 900;
  src: url("assets/zero-dark.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Zero Dark", Arial, Helvetica, "Helvetica Neue", sans-serif;
  font-size: 16px;
}

a {
  color: var(--white);
}

a:hover,
a:focus-visible {
  color: rgba(255, 255, 255, 0.68);
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand,
.nav a {
  text-decoration: none;
}

.brand,
.nav {
  font-weight: 700;
}

.brand {
  font-size: clamp(1.12rem, 2vw, 1.45rem);;
}

.nav {
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
}

.section {
  padding: clamp(64px, 10vw, 128px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-label {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.formats {
  min-height: 62svh;
  display: grid;
  align-content: center;
  background: var(--ink);
}

.poster-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.36em;
  max-width: 1220px;
  font-size: clamp(3rem, 11vw, 10.5rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.contact {
  min-height: 42svh;
  background: var(--ink);
}

.contact-box {
  display: grid;
  gap: 13px;
  max-width: 560px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-style: normal;
  line-height: 1.16;
}

.contact-box strong {
  margin-bottom: 6px;
  font-weight: 900;
}

.contact-box a {
  width: max-content;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-box a:hover,
.contact-box a:focus-visible {
  color: rgba(255, 255, 255, 0.68);
  text-decoration-color: rgba(255, 255, 255, 0.68);
}

.legal {
  background: var(--ink);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(34px, 6vw, 74px);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 54px);
}

.legal-grid > div {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
}

.footer a {
  text-underline-offset: 5px;
}

@media (max-width: 920px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.88rem;
  }

  .formats {
    min-height: 58svh;
  }

  .poster-line {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
    line-height: 0.9;
  }

  .footer {
    flex-direction: column;
  }
}
