:root {
  --paper: #f3dfb4;
  --ink: #121212;
  --red: #ce2d17;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 14%, rgba(243, 223, 180, 0.14), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(206, 45, 23, 0.14), transparent 20%),
    linear-gradient(180deg, #080606 0%, #14100f 52%, #1c1512 100%);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 122px,
      rgba(255, 245, 219, 0.08) 122px,
      rgba(255, 245, 219, 0.08) 146px
    );
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 3vh;
  height: 14px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  animation: sweep 1200ms 420ms ease-out forwards;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 1.75rem) clamp(1rem, 2vw, 1.5rem) clamp(3rem, 6vw, 5rem);
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: clamp(0.4rem, 1vw, 1rem);
}

.hero-banner-frame {
  width: min(100%, 1440px);
  border: 2px solid rgba(243, 223, 180, 0.18);
  background: rgba(0, 0, 0, 0.42);
  overflow: hidden;
  box-shadow:
    0 30px 64px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 244, 214, 0.05);
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
}

.hero-logo-frame {
  position: absolute;
  left: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(-3.4rem, -4vw, -2rem);
  width: min(24vw, 240px);
  padding: clamp(0.5rem, 1vw, 0.8rem);
  background: rgba(243, 223, 180, 0.95);
  transform: rotate(-4deg);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.hero-logo-frame::before {
  content: "";
  position: absolute;
  right: -1.2rem;
  bottom: -0.7rem;
  width: 6rem;
  height: 0.8rem;
  background: var(--red);
  transform: rotate(-5deg);
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

.copy-panel {
  position: relative;
  width: min(100%, 1180px);
  margin: clamp(4.6rem, 8vw, 7rem) auto 0;
  display: grid;
  justify-items: center;
  gap: clamp(0.45rem, 1vw, 0.9rem);
  text-align: center;
  padding-top: clamp(1.2rem, 2vw, 1.5rem);
}

.copy-panel::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  width: min(15rem, 38vw);
  height: 10px;
  background: rgba(243, 223, 180, 0.9);
  transform: translateX(-50%) skewX(-25deg);
}

.copy-panel::after {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  width: min(35rem, 70vw);
  height: 16px;
  background: var(--red);
  transform: translateX(-50%);
}

.line {
  margin: 0;
  max-width: 14ch;
  color: var(--paper);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 780ms ease forwards;
}

.line-1 {
  font-size: clamp(2.25rem, 6vw, 6rem);
  max-width: 10ch;
  animation-delay: 120ms;
}

.line-2,
.line-3 {
  font-size: clamp(1.4rem, 2.7vw, 2.8rem);
}

.line-2 {
  margin-top: clamp(1rem, 2.5vh, 2rem);
  animation-delay: 320ms;
}

.line-3 {
  animation-delay: 430ms;
}

.line-4 {
  margin-top: clamp(0.25rem, 1vh, 0.7rem);
  font-size: clamp(2rem, 4vw, 4rem);
  animation-delay: 540ms;
}

.line-5 {
  margin-top: clamp(1.2rem, 3vh, 2.3rem);
  padding: 0.55rem 0.8rem 0.48rem;
  font-size: clamp(1.08rem, 2vw, 1.7rem);
  max-width: none;
  border: 3px solid rgba(243, 223, 180, 0.95);
  background: rgba(15, 11, 10, 0.66);
  box-shadow: 10px 10px 0 rgba(206, 45, 23, 0.18);
  letter-spacing: 0.08em;
  animation-delay: 660ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sweep {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 860px) {
  body::after {
    bottom: 2.5vh;
    height: 12px;
  }

  .site-shell {
    padding: 0.85rem 0.85rem 3.6rem;
  }

  .hero-banner-frame {
    border-width: 1px;
  }

  .hero-logo-frame {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(58vw, 240px);
    margin: -2.2rem auto 0;
    transform: rotate(-3deg);
  }

  .copy-panel {
    margin-top: 2.9rem;
  }

  .copy-panel::before {
    width: min(11rem, 42vw);
  }

  .copy-panel::after {
    width: min(18rem, 68vw);
    height: 14px;
    top: -1.8rem;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding: 0.65rem 0.65rem 3.2rem;
  }

  .hero-logo-frame {
    width: min(72vw, 240px);
    padding: 0.45rem;
  }

  .hero-logo-frame::before {
    width: 4.8rem;
    right: -0.9rem;
    bottom: -0.55rem;
  }

  .line-5 {
    width: 100%;
    text-align: center;
  }
}
