/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #f8f9f8;
  color: #1a1a1a;
}
a { color: inherit; }

/* ── NAV ── */
nav {
  background: white;
  border-bottom: 1px solid #e4ebe6;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: #1a4731; }
.btn-signin {
  background: #1a4731;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-signin:hover { background: #0d3322; }

/* ── FOOTER ── */
footer {
  background: #0d2b1c;
  color: rgba(255,255,255,0.6);
  padding: 40px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-left: 20px;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-version {
  margin-left: 48px;
  color: rgba(255,255,255,0.28);
  font-size: 11px;
  font-family: 'SF Mono', 'Fira Mono', monospace;
  letter-spacing: 0.5px;
}
.footer-env-badge {
  margin-left: 8px;
  padding: 2px 6px;
  background: #b45309;
  color: #fef3c7;
  font-size: 10px;
  font-family: 'SF Mono', 'Fira Mono', monospace;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 3px;
  vertical-align: middle;
}

/* ── BUTTONS ── */
.btn-primary {
  background: #1a4731;
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #0d3322; }
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: white; }
.btn-view-all {
  background: white;
  border: 1.5px solid #1a4731;
  color: #1a4731;
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-view-all:hover { background: #f0f8f4; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #1e3028;
}
.hero-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,30,20,0.52) 0%,
    rgba(10,22,15,0.60) 60%,
    rgba(8,18,12,0.72) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #7abf98;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero-title span { color: #7abf98; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 12px; }

/* ── STATS BAR ── */
.stats-bar {
  background: #1a4731;
  color: white;
  display: flex;
  justify-content: center;
}
.stat {
  padding: 18px 48px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }
.stat-num { font-size: 26px; font-weight: 800; line-height: 1; }
.stat-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
section, .section-white {
  padding: 64px 40px;
}
.section-white {
  background: white;
  border-bottom: 1px solid #eee;
}
.section-header { margin-bottom: 32px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #1a4731;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}
.section-sub {
  font-size: 15px;
  color: #666;
  margin-top: 6px;
}

/* ── FILTER PILLS ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pill {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid #d0e8d8;
  color: #1a4731;
  background: white;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s, color 0.12s;
}
.pill.active {
  background: #1a4731;
  color: white;
  border-color: #1a4731;
}
.pill:hover:not(.active) { background: #f0f8f4; }

/* ── LAKE CARDS ── */
.lake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lake-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.lake-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.card-photo {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.card-photo-placeholder {
  background: linear-gradient(135deg, #1a4731 0%, #2d6a4f 40%, #1e6b8a 100%);
}
.card-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.badge-easy     { background: #d4edda; color: #1a5c2e; }
.badge-moderate { background: #fff3cd; color: #7a5a00; }
.badge-strenuous { background: #f8d7da; color: #7a1a1a; }
.card-body { padding: 16px; }
.card-area {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.card-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.card-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.card-stat { font-size: 12px; color: #666; }
.card-stat strong { color: #1a4731; font-weight: 700; }

.view-all-wrap {
  text-align: center;
  margin-top: 32px;
}

/* ── BROWSE PAGE ── */
.browse-page {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.browse-header { margin-bottom: 32px; }
.browse-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d2b1c;
  margin-bottom: 8px;
}
.browse-sub { font-size: 15px; color: #666; }
.browse-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.search-wrap { display: flex; align-items: center; }
.search-input {
  padding: 8px 16px;
  border: 1.5px solid #d0e8d8;
  border-radius: 999px;
  font-size: 14px;
  width: 220px;
  outline: none;
  transition: border-color 0.15s;
}
.search-input:focus { border-color: #1a4731; }
.browse-count {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.browse-empty {
  text-align: center;
  padding: 60px;
  color: #888;
  font-size: 16px;
}

/* ── LAKE DETAIL PAGE ── */
.stats-sidebar {
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  width: 220px;
  background: #0d2b1c;
  overflow-y: auto;
  z-index: 80;
}
.stats-sidebar-header {
  padding: 20px 20px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.stats-sidebar-body { padding: 6px 0; }
.stat-row {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-row:last-child { border-bottom: none; }
.stat-row-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.52);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.stat-row-value {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}
.stat-row-value.diff-moderate { color: #f0c96c; }
.stat-row-value.diff-easy { color: #7abf98; }
.stat-row-value.diff-strenuous { color: #e88080; }
.stat-coords { font-size: 13px; }

.lake-main { margin-left: 220px; }
.topbar {
  background: white;
  border-bottom: 1px solid #e4ebe6;
  padding: 0 40px;
  height: 48px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 64px;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}
.breadcrumb a {
  color: #1a4731;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }

.lake-header {
  padding: 32px 40px 0;
  background: white;
}
.lake-region-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f2ec;
  color: #1a4731;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.lake-title {
  font-size: 38px;
  font-weight: 800;
  color: #0d2b1c;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.lake-subtitle { font-size: 15px; color: #666; }

.hero-photo {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a4731 0%, #1e6b8a 40%, #0d2b3a 80%, #1a4731 100%);
}
.hero-photo svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
}

.content-body { padding: 40px; }
.main-col h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0d2b1c;
  margin-bottom: 14px;
  margin-top: 36px;
}
.main-col h2:first-child { margin-top: 0; }
.main-col p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.lake-map-container {
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.photo-thumb {
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.photo-placeholder {
  background: linear-gradient(135deg, #1a4731 0%, #1e6b8a 100%);
}
.photo-add {
  background: linear-gradient(135deg, #2b1a0d 0%, #4a3a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  text-align: center;
  padding: 8px;
}

.comment-box {
  background: #f8f9f8;
  border: 1.5px dashed #d0e8d8;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  color: #888;
  font-size: 13px;
  margin-top: 8px;
}
.comment-icon { font-size: 20px; margin-bottom: 8px; }
.comment-title {
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
}

/* ── MAP PAGE ── */
.map-page {
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.map-page-header { margin-bottom: 32px; }
.map-page-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d2b1c;
  margin-bottom: 8px;
}
.map-page-sub { font-size: 15px; color: #666; }
.map-coming-soon {
  background: white;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.map-coming-soon-icon { margin-bottom: 24px; }
.map-coming-soon h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0d2b1c;
  margin-bottom: 12px;
}
.map-coming-soon > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}
.map-coming-soon-details {
  background: #f8f9f8;
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 32px;
}
.map-coming-soon-details h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a4731;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.map-coming-soon-details ul {
  list-style: none;
  padding: 0;
}
.map-coming-soon-details li {
  font-size: 14px;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
.map-coming-soon-details li:last-child { border-bottom: none; }
.map-coming-soon-details li::before {
  content: "• ";
  color: #1a4731;
  font-weight: 700;
}
.map-tech-note {
  margin-top: 16px;
  font-size: 12px;
  color: #888;
}

/* ── ABOUT PAGE ── */
/* About layout — sidebar + main */
.about-layout {
  display: flex;
  min-height: calc(100vh - 64px);
  align-items: flex-start;
}
.about-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #0d2b1c;
  min-height: calc(100vh - 64px);
  padding: 32px 0;
  position: sticky;
  top: 64px;
  align-self: flex-start;
}
.about-sidebar-section {
  padding: 20px 24px;
}
.about-sidebar-heading {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.about-sidebar-heading.heading-warning {
  color: #fcd34d;
}
.about-sidebar-body {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 10px;
}
.about-sidebar-body strong {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}
.about-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-sidebar-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  padding: 6px 0 6px 16px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-sidebar-list li:last-child { border-bottom: none; }
.about-sidebar-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  font-size: 11px;
}
.about-sidebar-link {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about-sidebar-link:hover { color: #fff; }
.about-sidebar-divider {
  margin: 8px 24px;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.about-page {
  flex: 1;
  max-width: 780px;
  padding: 28px 48px;
}
.about-header { margin-bottom: 28px; }
.about-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d2b1c;
  margin-bottom: 8px;
}
.about-sub { font-size: 16px; color: #666; }
.about-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.about-section:last-child { border-bottom: none; }
.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0d2b1c;
  margin-bottom: 12px;
}
.about-section p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}
.about-list {
  list-style: none;
  margin: 0 0 14px;
}
.about-list li {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid #f4f4f4;
}
.about-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1a4731;
  font-weight: 700;
}
.about-link { color: #1a4731; font-weight: 500; }
.about-link:hover { text-decoration: underline; }
.about-disclaimer {
  background: #fff8e6;
  border-left: 4px solid #c49a2c;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
}
.about-disclaimer p { font-size: 14px; color: #555; }
.about-disclaimer p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lake-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 36px; }
  .stats-sidebar { display: none; }
  .lake-main { margin-left: 0; }
  .about-sidebar {
    display: none;
  }
}
@media (max-width: 600px) {
  nav { padding: 0 16px; }
  .lake-grid { grid-template-columns: 1fr; }
  section, .section-white { padding: 40px 16px; }
  .hero-title { font-size: 28px; }
  .stat { padding: 14px 20px; }
  .browse-page { padding: 20px 16px; }
  .about-page { padding: 20px 16px; }
}
