:root {
  --red: #f23b20;
  --ink: #f5f1e8;
  --paper: #292929;
}

* { box-sizing: border-box; }

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

body {
  position: relative;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    radial-gradient(circle at 12% 18%, #000 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 32%, #000 0 .8px, transparent 1.4px),
    radial-gradient(circle at 38% 78%, #000 0 1px, transparent 1.6px),
    radial-gradient(circle at 91% 83%, #000 0 .7px, transparent 1.3px);
  background-size: 13px 17px, 19px 23px, 29px 31px, 37px 41px;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(48px, 7vh, 96px);
  overflow: hidden;
}

.brand img {
  display: block;
  width: clamp(230px, 28vw, 430px);
  height: auto;
}

.hero { align-self: center; }

.eyebrow,
.contact-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 14ch;
  color: var(--red);
  font-size: clamp(62px, 11.5vw, 190px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .72;
  text-transform: uppercase;
}

h1 span { display: block; }
h1 span:last-child { font-size: .54em; letter-spacing: -.055em; line-height: 1.15; }

.intro {
  margin: clamp(32px, 5vh, 58px) 0 0;
  max-width: 650px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.3;
}

.contact {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) 1.4fr 1.2fr;
  align-items: end;
  gap: 28px;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}

.contact-label { margin: 0; color: var(--ink); }

.contact-links { display: flex; flex-wrap: wrap; gap: 8px 28px; }

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease;
}

a:hover, a:focus-visible { color: var(--red); }

address {
  justify-self: end;
  max-width: 390px;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
  text-align: right;
}

@media (max-width: 760px) {
  .page { gap: 54px; }
  .brand img { width: 220px; }
  h1 { font-size: clamp(58px, 20vw, 110px); line-height: .78; }
  h1 span:last-child { font-size: .38em; letter-spacing: -.04em; line-height: 1.45; }
  .intro br { display: none; }
  .contact { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .contact-label { margin-bottom: 2px; }
  .contact-links { flex-direction: column; align-items: flex-start; gap: 8px; }
  address { justify-self: start; text-align: left; }
}

@media (prefers-reduced-motion: no-preference) {
  .brand, .eyebrow, h1, .intro, .contact { animation: enter .7s both; }
  .eyebrow { animation-delay: .08s; }
  h1 { animation-delay: .14s; }
  .intro { animation-delay: .2s; }
  .contact { animation-delay: .27s; }
}

@keyframes enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
