@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/barlow-condensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/barlow-condensed-800.woff2") format("woff2");
}

:root {
  --paper: #e9e1d0;
  --ink: #11110f;
  --warning: #b4261e;
}

* {
  box-sizing: border-box;
}

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

html,
body,
body * {
  cursor: default;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

.holding-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

.holding-page::after {
  position: fixed;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(
    rgba(17, 17, 15, 0.3) 0.55px,
    transparent 0.7px
  );
  background-size: 4px 4px;
  mix-blend-mode: multiply;
  opacity: 0.18;
}

.poster {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto minmax(2rem, 1fr) auto;
  padding: clamp(0.75rem, 1.7vw, 1.75rem) 0
    clamp(1.25rem, 2.3vw, 2.5rem);
}

h1 {
  align-self: start;
  min-width: 0;
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(8.5rem, 19vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.72;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.footer-line {
  display: contents;
}

.warning-bar {
  grid-row: 2;
  width: min(38vw, 32rem);
  height: clamp(2.75rem, 5.3vw, 4rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  background: var(--warning);
}

.slogan {
  grid-row: 4;
  justify-self: end;
  align-self: end;
  min-width: 0;
  margin: 0;
  padding-right: clamp(1rem, 2.2vw, 2.5rem);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.5rem, 2.65vw, 2.55rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.slogan-visible {
  display: block;
}

.draft-link,
.draft-link:visited,
.draft-link:hover,
.draft-link:active {
  color: inherit;
  text-decoration: none;
  cursor: default;
}

.draft-link:focus-visible {
  outline: 1px dashed var(--warning);
  outline-offset: 0.08em;
}

.ownership {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.ownership::before,
.ownership::after {
  position: absolute;
  z-index: 1;
  left: -0.12em;
  width: calc(100% + 0.24em);
  content: "";
  pointer-events: none;
  background: var(--warning);
  transform-origin: center;
}

.ownership::before {
  top: 34%;
  height: 0.27em;
  clip-path: polygon(
    0 47%,
    5% 18%,
    13% 32%,
    21% 7%,
    31% 27%,
    43% 13%,
    54% 34%,
    66% 4%,
    78% 25%,
    89% 11%,
    100% 40%,
    99% 77%,
    89% 91%,
    77% 74%,
    66% 96%,
    53% 72%,
    42% 89%,
    30% 70%,
    18% 94%,
    8% 72%,
    0 86%
  );
  transform: rotate(-3.8deg);
}

.ownership::after {
  top: 56%;
  height: 0.115em;
  opacity: 0.88;
  clip-path: polygon(
    0 35%,
    9% 3%,
    20% 29%,
    34% 8%,
    47% 36%,
    62% 4%,
    76% 31%,
    89% 12%,
    100% 42%,
    98% 82%,
    83% 68%,
    69% 95%,
    53% 70%,
    37% 91%,
    20% 66%,
    7% 88%,
    0 70%
  );
  transform: rotate(1.8deg);
}

@media (max-width: 760px) {
  .poster {
    padding-top: 1rem;
    padding-bottom: 1.25rem;
  }

  h1 {
    font-size: clamp(5rem, 25vw, 11rem);
    line-height: 0.76;
  }

  .warning-bar {
    width: 58vw;
    height: 2.25rem;
    margin-top: 1.25rem;
  }

  .slogan {
    max-width: calc(100vw - 2rem);
    padding: 0 1rem 0 0;
    font-size: clamp(1.35rem, 5.8vw, 2rem);
    line-height: 1.08;
    text-align: right;
    white-space: normal;
  }
}
