:root {
  --ink: #0b1f3a;
  --paper: #fbfaf7;
  --yolk: #f2b705;
  --muted: #5b6675;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Segoe UI Variable", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.mark {
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mark__fifty {
  color: var(--ink);
}

.mark__eggs {
  color: var(--yolk);
}

.tagline {
  align-self: stretch;
  margin: 1.1rem 0 0;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
}

.lede {
  align-self: stretch;
  margin: 0.75rem auto 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact {
  margin-top: 2rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--yolk);
  padding-bottom: 2px;
}

.contact:hover {
  color: var(--yolk);
}

.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #f2f4f8;
    --paper: #0b1220;
    --muted: #97a1b3;
  }

  .mark__fifty {
    color: var(--ink);
  }
}
