/* Reset */
* {
  box-sizing: border-box;
}

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

/* Base */
body {
  min-height: 220vh; /* creates scroll space */
  background: #0b0b0c;
  color: rgba(255,255,255,0.92);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Full-screen background image */
.hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("/images/landing.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 48%;
  filter: saturate(0.9) contrast(1.08) brightness(0.95);
  pointer-events: none;
}

/* Dark veil for legibility */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.48) 0%,
    rgba(0,0,0,0.22) 45%,
    rgba(0,0,0,0.58) 100%
  );
  pointer-events: none;
}

/* Top-left logo */
.top {
  position: fixed;
  top: 28px;
  left: 28px;
  z-index: 10;
}

.logo-text {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* Bottom-centre email */
.bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.email {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.65;
  color: inherit;
  text-decoration: none;
  user-select: text;
  -webkit-user-select: text;
}

.email:hover {
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    filter: saturate(0.9) contrast(1.08) brightness(0.88);
  }

  .logo-text,
  .email {
    color: rgba(255,255,255,0.75);
  }
}

@media (max-width: 600px) {
  .top {
    top: 20px;
    left: 18px;
  }

  .bottom {
    bottom: 18px;
  }

  .logo-text {
    font-size: 14px;
  }

  .email {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .logo-text {
    letter-spacing: 0.22em;
  }

  .email {
    letter-spacing: 0.26em;
  }
}
/* Remove default link styling completely */
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
