:root {
  --green: #1f3d2b;
  --paper: #f4f1e9;
  --maxw: 1180px;
}

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

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 5vw, 64px);
  color: #fff;
}

.logo {
  font-family: "Lora", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0;
}

.nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav a:hover { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.03);
}
@media (max-width: 700px) {
  .hero-bg { background-image: url("assets/hero-sm.jpg"); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 30, 20, 0.42) 0%, rgba(15, 30, 20, 0.05) 32%, rgba(15, 30, 20, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 64px) clamp(70px, 12vh, 130px);
  color: #fff;
}

.hero-title {
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.32);
}
