:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5d6a66;
  --paper: #f6f3ed;
  --field: #dbe8e3;
  --accent: #c64d2e;
  --deep: #0f5b5f;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(15, 91, 95, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(15, 91, 95, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(100%, 880px);
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 18px;
}

.mark {
  width: 96px;
  height: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  transform: rotate(-8deg);
}

.mark span {
  display: block;
  border: 3px solid var(--ink);
  background: var(--field);
}

.mark span:nth-child(1) {
  background: var(--accent);
}

.mark span:nth-child(2) {
  transform: translateY(18px);
  background: var(--deep);
}

.mark span:nth-child(3) {
  transform: translateY(36px);
}

.eyebrow {
  margin: 12px 0 0;
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.35;
}

@media (max-width: 560px) {
  .page {
    padding: 22px;
  }

  .hero {
    min-height: 68vh;
  }

  .mark {
    width: 74px;
    height: 74px;
  }
}
