/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: #000;
}

/* Full screen background */
.page {
  min-height: 100vh;
  width: 100%;
  position: relative;

  /* Upload background image to /assets/bg.jpg */
  background-image: url("assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* SEO-only (invisible) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Centered content */
.center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8vh;
  text-align: center;
  padding: 6vh 6vw;
}

/* Typography */
.headline {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(1.6rem, 4.2vw, 4rem);
  max-width: 60ch;
}

.subhead {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  opacity: 0.95;
}

.subhead.secondary {
  font-weight: 400;
  opacity: 0.9;
  max-width: 65ch;
}

.subhead a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 0.08em;
}

.dot {
  opacity: 0.6;
  padding: 0 0.6em;
}

/* Footer */
.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3vh;
  text-align: center;
  p
