.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url('/static/thompson-pond.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1b4332;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 2rem 1.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero .subtitle {
  font-size: 1.2rem;
  opacity: .9;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.hero .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  background: var(--white);
  color: var(--pine);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s;
}
.hero .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.landing-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.landing-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--pine);
  margin-bottom: 1rem;
}
.landing-section p {
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 1rem;
}
.landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.landing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.landing-card h3 {
  font-family: var(--font-display);
  color: var(--pine);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.landing-card p {
  font-size: .9rem;
  color: var(--slate-light);
  margin: 0;
}
.landing-divider {
  border: none;
  border-top: 1px solid var(--stone-dark);
  margin: 0;
}
