:root {
  --white: #ffffff;
  --bg: #f7faf8;
  --text: #1a2e1a;
  --muted: #5a6b5a;
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #e8f5ee;
  --border: #e2ebe4;
  --header-height: 119px;
  --header-pad: 0.5rem;
  --logo-h: calc(var(--header-height) - 2 * var(--header-pad));
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--header-height);
}

.container { width: min(1100px, 92vw); margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--header-pad) 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: var(--logo-h);
  width: auto;
  display: block;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,46,26,0.75) 0%, rgba(26,46,26,0.35) 55%, rgba(26,46,26,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 4rem;
  max-width: 620px;
  color: #fff;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7f3d0;
  margin-bottom: 1rem;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.btn {
  display: inline-block;
  background: var(--white);
  color: var(--green);
  font-weight: 600;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.stats {
  background: var(--green);
  color: #fff;
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.2;
}

.stats-grid span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.features { padding: 5rem 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
}

.feature .icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.feature ul {
  list-style: none;
  font-size: 0.875rem;
  color: var(--green);
}

.feature li::before { content: "→ "; opacity: 0.6; }

.fisheries {
  background: var(--bg);
  padding: 5rem 0;
}

.lake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lake-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.lake-card:hover { border-color: var(--green-light); }

.lake-card .state {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-light);
}

.lake-card h4 {
  font-size: 1.05rem;
  margin: 0.25rem 0;
}

.lake-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

.gear { padding: 4rem 0; }

.gear-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.gear-row span {
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.cta {
  background: linear-gradient(135deg, var(--green) 0%, #1b4332 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.cta p { opacity: 0.85; }

footer {
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-logo {
  height: 76px;
  width: auto;
  margin-bottom: 0.75rem;
}

@media (max-width: 800px) {
  :root {
    --header-height: 104px;
    --header-pad: 0.5rem;
    --logo-h: 62px;
  }
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .lake-grid { grid-template-columns: 1fr; }
  .hero { min-height: 75vh; }
}
