* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: Georgia, serif;
  background-color: #000;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url('/assets/images/landing/landing.png') no-repeat center center / cover;
  display: flex;
  align-items: flex-end;
  padding: 6vh 6vw;
  color: #ffffff;
}

/* Subtle darkness for readability */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0)
  );
}

.content {
  position: relative;
  max-width: 640px;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 0.9;
}

p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.contact {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-meta {
  position: absolute;
  bottom: 4vh;
  left: 6vw;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-meta p {
  margin: 0;
}
