@font-face {
  font-family: "Oswald";
  src: url("assets/oswald-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/oswald-semibold.woff") format("woff");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: "Chainprinter";
  src: url("assets/chainprinter.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #050505;
  --red: #f00606;
  --yellow: #dcb603;
  --paper: #f5f3e8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--yellow);
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image: url("assets/paper-texture.avif");
  background-position: center top;
  background-size: cover;
  font-family: "Chainprinter", "Oswald", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5%;
}

.brand {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.brand img {
  width: 149px;
  height: auto;
}

.cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.6rem 1.5rem;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--red);
  font-family: Impact, "Arial Narrow Bold", "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

.cta:hover {
  color: var(--red);
  background: #fff;
  transform: translateY(-2px);
}

.cta:focus-visible,
.brand:focus-visible,
.archive-links a:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 4px;
}

.hero {
  width: 100%;
  height: 100svh;
  min-height: 560px;
  background-color: var(--yellow);
  background-image: url("assets/hero-desktop.png");
  background-position: center top;
  background-size: cover;
}

.content-section {
  margin: 100px 5%;
}

.content-section.compact {
  margin-top: 50px;
  margin-bottom: 50px;
}

.content-row {
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 4vw, 50px);
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.visual {
  flex: 1 1 50%;
  min-width: 0;
  margin: 0;
}

.visual img {
  width: 100%;
  height: auto;
}

.copy {
  flex: 1 1 50%;
  max-width: 650px;
}

.copy h1,
.copy h2 {
  margin: 0 0 0.55em;
  font-family: "Chainprinter", "Oswald", sans-serif;
  font-size: clamp(2.05rem, 3.4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.04;
}

.copy p {
  margin: 0;
  font-family: "Chainprinter", "Oswald", sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

.archive-footer {
  padding: 70px 5% 96px;
}

.footer-inner {
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.archive-footer h2 {
  max-width: 1000px;
  margin: 0;
  font-family: "Chainprinter", "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.archive-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  flex-wrap: wrap;
}

.archive-links a {
  font-family: "Chainprinter", "Oswald", sans-serif;
  font-size: 1rem;
  text-align: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.archive-links a:hover,
.archive-links a[aria-current="page"] {
  color: var(--red);
}

@media (max-width: 860px) {
  .content-row,
  .content-row.reverse {
    flex-direction: column;
  }

  .visual,
  .copy {
    width: 100%;
    max-width: 650px;
  }
}

@media (max-width: 600px) {
  body {
    background-color: var(--paper);
  }

  .site-header {
    min-height: 64px;
    padding: 14px 18px;
  }

  .brand img {
    width: 112px;
  }

  .cta {
    max-width: 150px;
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
    line-height: 1.05;
  }

  .hero {
    min-height: 680px;
    background-image: url("assets/hero-mobile.avif");
    background-position: center top;
  }

  .content-section,
  .content-section.compact {
    margin: 58px 20px;
  }

  .content-row {
    gap: 28px;
  }

  .copy h1,
  .copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.55rem);
  }

  .copy p {
    font-size: 18px;
    line-height: 1.32;
  }

  .archive-footer {
    padding: 38px 20px 72px;
  }

  .archive-footer h2 {
    max-width: 360px;
    font-size: 1.65rem;
  }

  .archive-links {
    flex-direction: column;
    gap: 14px;
  }

  .archive-links a {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta {
    transition: none;
  }
}
