/* === LANDING PAGE === */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.landing-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 45%, rgba(122, 138, 42, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(154, 170, 58, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.landing-content {
  position: relative;
  z-index: 1;
}

.landing h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.4vw, 4.25rem);
  font-weight: 400;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}

.landing .location {
  font-family: var(--sans);
  font-size: clamp(0.72rem, 1.25vw, 0.95rem);
  color: var(--green);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}
