:root {
  --paper: #f4efe8;
  --paper-light: #fffdfa;
  --ink: #10100f;
  --soft-ink: #74706a;
  --rule: #24221f;
  --accent: #f04a1a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0, var(--paper-light) 0, var(--paper) 46rem);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.page {
  width: min(100%, 1600px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 38px 72px 32px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: grid;
  gap: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-height: 16px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav span {
  color: var(--accent);
}

.header-rule,
.footer-rule {
  height: 1px;
  background: var(--rule);
}

.hero {
  display: grid;
  grid-template-columns: minmax(560px, 0.92fr) minmax(520px, 1fr);
  align-items: center;
  gap: 54px;
  padding: 58px 0 60px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--accent);
}

h1 {
  margin: 0 0 26px;
  font-family: "Bebas Neue", "DIN Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(112px, 8vw, 132px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.intro {
  width: 414px;
  max-width: 100%;
  margin: 0;
  padding: 20px 0 19px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 20px;
  line-height: 1.48;
}

.desktop-status,
.mobile-status {
  align-items: center;
  gap: 16px;
}

.desktop-status::before,
.mobile-status::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
}

.desktop-status {
  display: flex;
  margin-top: 24px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 19px;
  line-height: 1;
  color: var(--accent);
  text-transform: uppercase;
}

.mobile-status {
  display: none;
}

.hero-art {
  width: 100%;
  min-width: 0;
}

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

.site-footer {
  display: grid;
  gap: 24px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.6;
}

.footer-content p {
  margin: 0;
}

.footer-content nav {
  display: flex;
  gap: 24px;
}

@media (max-width: 760px) {
  body {
    background: radial-gradient(circle at 50% 0, var(--paper-light) 0, var(--paper) 34rem);
  }

  .page {
    min-height: 100svh;
    padding: 28px 24px 24px;
    display: block;
  }

  .site-header {
    gap: 14px;
  }

  .site-nav {
    justify-content: flex-end;
    gap: 20px;
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .hero {
    display: block;
    padding: 82px 0 54px;
  }

  .kicker,
  .desktop-status {
    display: none;
  }

  .mobile-status {
    width: max-content;
    display: inline-flex;
    margin-bottom: 70px;
    padding: 17px 28px;
    border-radius: 999px;
    background: rgba(223, 218, 210, 0.58);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
  }

  .mobile-status::before {
    width: 13px;
    height: 13px;
  }

  h1 {
    width: max-content;
    max-width: none;
    margin-bottom: 30px;
    font-size: 84px;
    line-height: 0.92;
    transform: scaleX(0.74);
    transform-origin: left top;
  }

  .intro {
    width: 340px;
    padding: 0;
    border: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 25px;
    line-height: 1.25;
    color: var(--soft-ink);
  }

  .hero-art {
    margin-top: 74px;
  }

  .hero-art img {
    width: min(100%, 342px);
    margin: 0 auto;
  }

  .site-footer {
    gap: 24px;
  }

  .footer-content {
    align-items: flex-start;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.35;
    color: var(--soft-ink);
  }

  .footer-content nav {
    flex-direction: column;
    gap: 8px;
    text-align: right;
  }
}

@media (max-width: 380px) {
  .site-nav {
    gap: 15px;
    font-size: 10px;
  }

  h1 {
    font-size: 80px;
  }

  .intro {
    width: 310px;
    font-size: 23px;
  }
}
