/* Reset + ensure no scrolling */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* no scrolling */
}

body {
  background: #000000;
  color: #ffffff;
}

/* Full-screen layout */
.page {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
}

.wrap {
  width: min(900px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* Image ~50% of viewport height */
.hero-image {
  height: 50vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Text styles */
.primary {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 20px;
}

.secondary {
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}