@charset "UTF-8";

:root {
  --paper: #f5f4f0;
  --muted: rgba(245, 244, 240, 0.72);
  --line: rgba(245, 244, 240, 0.18);
  --red: #df1a1e;
  --black: #020202;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

body {
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(1rem, 3.8vh, 2.75rem) clamp(1rem, 4.6vw, 4.5rem)
    clamp(1rem, 3.5vh, 2.5rem);
}

.background {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: #050505 url("assets/tiles.png") center / cover no-repeat;
}

.background::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    radial-gradient(
      ellipse 74% 82% at 50% 46%,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.22) 44%,
      rgba(0, 0, 0, 0.78) 78%,
      #000 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.44) 0%,
      rgba(0, 0, 0, 0.08) 37%,
      rgba(0, 0, 0, 0.5) 100%
    );
}

.brand {
  display: flex;
  justify-content: center;
}

.eatmeat-logo {
  display: block;
  width: clamp(9.5rem, 20vw, 16rem);
  height: auto;
  filter: drop-shadow(0 0.55rem 1.6rem rgba(0, 0, 0, 0.52));
}

.closure {
  align-self: center;
  justify-self: center;
  width: min(100%, 62rem);
  margin-top: clamp(-0.5rem, -1.2vh, -0.15rem);
  text-align: center;
}

.eyebrow {
  margin: 0 0 clamp(0.65rem, 1.6vh, 1.1rem);
  color: var(--muted);
  font-size: clamp(0.64rem, 0.78vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed",
    Arial, sans-serif;
  font-size: clamp(2.35rem, 5.25vw, 5.6rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h1 span:first-child {
  margin-bottom: 0.18em;
  color: var(--red);
  font-size: 0.53em;
  letter-spacing: 0.02em;
  line-height: 1;
}

.apology {
  margin: clamp(0.85rem, 2.3vh, 1.55rem) auto 0;
  color: rgba(245, 244, 240, 0.83);
  font-size: clamp(0.86rem, 1.15vw, 1.08rem);
  line-height: 1.55;
  text-wrap: balance;
}

.alternative {
  display: grid;
  grid-template-columns: clamp(6.5rem, 10vw, 9.25rem) minmax(16rem, 1fr) auto;
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: center;
  width: min(100%, 75rem);
  justify-self: center;
  padding-top: clamp(0.9rem, 2.4vh, 1.6rem);
  border-top: 1px solid var(--line);
}

.sisku-mark {
  position: relative;
  display: block;
  aspect-ratio: 1.62;
  overflow: hidden;
  border-radius: 0.1rem;
}

.sisku-mark img {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.sisku-mark:hover img,
.sisku-mark:focus-visible img {
  transform: translateY(-50%) scale(1.03);
}

.alternative-copy h2 {
  margin: 0 0 0.32rem;
  font-size: clamp(0.88rem, 1.15vw, 1.1rem);
  font-weight: 800;
  line-height: 1.2;
}

.alternative-copy p {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.72rem, 0.92vw, 0.88rem);
  line-height: 1.45;
}

.visit-link {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid rgba(223, 26, 30, 0.68);
  background: rgba(223, 26, 30, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.visit-link span {
  color: #ff5c5f;
  font-size: 1rem;
}

.visit-link:hover {
  border-color: var(--red);
  background: rgba(223, 26, 30, 0.26);
  transform: translateY(-2px);
}

.visit-link:focus-visible,
.sisku-mark:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

@media (max-width: 700px) {
  .site-shell {
    padding-inline: clamp(0.9rem, 5vw, 1.4rem);
  }

  .eatmeat-logo {
    width: clamp(8.5rem, 39vw, 11rem);
  }

  .closure {
    margin-top: -0.35rem;
  }

  .alternative {
    grid-template-columns: 5.2rem minmax(0, 1fr);
    gap: 0.8rem 0.95rem;
  }

  .visit-link {
    grid-column: 1 / -1;
    min-height: 2.65rem;
    padding-block: 0.65rem;
  }
}

@media (max-height: 650px) {
  .site-shell {
    padding-block: 0.8rem;
  }

  .eatmeat-logo {
    width: clamp(7.2rem, 17vw, 10rem);
  }

  .eyebrow {
    margin-bottom: 0.45rem;
  }

  h1 {
    font-size: clamp(2rem, 7vh, 3.35rem);
  }

  .apology {
    margin-top: 0.65rem;
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .alternative {
    padding-top: 0.65rem;
  }

  .alternative-copy p {
    line-height: 1.3;
  }
}

@media (max-width: 420px) and (max-height: 720px) {
  .eyebrow {
    display: none;
  }

  .apology br {
    display: none;
  }

  .alternative-copy h2 {
    margin-bottom: 0.2rem;
  }
}

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