@font-face {
  font-family: "Aptos";
  src: url("./fonts/Aptos-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; overflow: hidden; }

body {
  font-family: "Aptos", system-ui, sans-serif;
  font-weight: 300;
  color: #fff;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Background ─────────────────────────────────────────────────────────────── */

.bg-image {
  position: fixed;
  inset: 0;
  background: url("./images/main.jpg") center/cover no-repeat;
  z-index: 0;
}

/* ─── Layout ─────────────────────────────────────────────────────────────────── */

main {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
}

/* ─── Top zone: upper left, 2/3rds width, ≤45% from top ──────────────────────── */

.top {
  max-width: 66.6%;
}

.tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.5;
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

.email {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 150ms ease;
}
.email:hover { opacity: 1; }

footer {
  opacity: 0.4;
}

footer p {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}
