:root {
  --grass: #3d6b4a;
  --grass-deep: #284d36;
  --grass-soft: #dceadf;
  --earth: #b07848;
  --ink: #1a1a1a;
  --mist: #f0ede8;
  --white: #ffffff;
  --line: #e4ddd4;
  --shadow: 0 14px 36px rgba(20, 31, 23, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--mist); color: var(--ink); }
.main-nav { background: var(--grass); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.nav-brand { font-family: 'Syne', sans-serif; color: white; font-size: 18px; font-weight: 800; text-decoration: none; letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 13px; border-radius: 100px; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.16); }
main { max-width: 1180px; margin: 0 auto; padding: 28px 20px 70px; }

.page-hero {
  background: linear-gradient(135deg, rgba(61,107,74,0.96), rgba(40,77,54,0.94));
  color: white;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}
.page-hero p {
  max-width: 64ch;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
}
.hero-btn.primary { background: white; color: var(--grass); }
.hero-btn.secondary { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.24); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.section-title { font-family: 'Syne', sans-serif; font-size: 24px; letter-spacing: -0.03em; }
.section-copy { color: #637168; font-size: 14px; line-height: 1.6; max-width: 64ch; }

.best-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.best-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.best-media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #dceadf, #c8dff0);
  background-size: cover;
  background-position: center;
  position: relative;
}
.best-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--grass);
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
}
.best-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}
.best-meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a766e;
}
.best-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.best-description,
.best-tip {
  color: #314039;
  font-size: 14px;
  line-height: 1.65;
}
.best-feature-line {
  color: #5f6b64;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}
.best-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}
.text-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--grass);
}
.empty-state {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  color: #66736b;
}
.map-cta {
  margin-top: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.map-cta-copy p {
  color: #637168;
  font-size: 14px;
  line-height: 1.6;
  max-width: 58ch;
  margin-top: 6px;
}
.community-callout {
  margin-top: 24px;
  text-align: center;
  color: #637168;
  font-size: 13px;
  line-height: 1.6;
}
.community-callout a {
  color: var(--grass);
  font-weight: 700;
  text-decoration: none;
}

.page-hero h1,
.section-title,
.best-title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.page-hero h1 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-title,
.best-title {
  font-weight: 600;
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .page-hero { padding: 22px; }
  .section-head { align-items: start; flex-direction: column; }
  .map-cta { align-items: start; }
}
