:root {
  --green: #104a31;
  --green-2: #0b3826;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --line: #dfd7c8;
  --orange: #f05a24;
  --gold: #ffb12b;
  --text: #17251e;
  --muted: #59645c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 60px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--green); letter-spacing: .06em; }
.brand-mark { width: 48px; height: 48px; }
.brand-text strong { display: block; font-size: clamp(19px, 2vw, 29px); line-height: .9; letter-spacing: .04em; }
.brand-text span { display: block; font-size: 11px; letter-spacing: .35em; margin-top: 6px; }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 32px); font-weight: 700; }
.nav a { padding: 10px 0; border-bottom: 2px solid transparent; }
.nav a[aria-current="page"], .nav a:hover { border-color: var(--green); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 800;
  cursor: pointer;
}
.button.secondary { background: var(--paper); color: var(--green); }

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 60px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,250,240,.98) 0%, rgba(255,250,240,.82) 44%, rgba(255,250,240,.15) 72%), var(--hero) center/cover no-repeat;
}
.hero > * { position: relative; }
.hero-content { max-width: 680px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}
h1 {
  color: var(--green);
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
  margin: 18px 0 20px;
}
.hero p, .section-intro {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: #26352c;
}
.signup {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 34px;
}
input:not([type="checkbox"]), select {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.9);
  padding: 0 18px;
  color: var(--text);
  font: inherit;
  box-shadow: 0 6px 20px rgba(16,74,49,.06);
}
input[type="checkbox"] {
  width: auto;
  min-height: 0;
  box-shadow: none;
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 60px);
}
.section h2 {
  color: var(--green);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 20px;
}
.type-grid, .card-grid, .region-grid, .coming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.region-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.type-card, .camp-card, .filter-panel, .plain-panel, .coming-item {
  background: rgba(255,253,248,.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.type-card, .coming-item {
  padding: 26px;
}
.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 28px;
  margin-bottom: 18px;
}
.type-card h3, .camp-card h3, .coming-item h3 { color: var(--green); font-size: 24px; margin: 0 0 8px; line-height: 1.1; }
.type-card p, .camp-card p, .coming-item p { color: var(--muted); margin: 0; line-height: 1.45; }

.camp-card img { width: 100%; height: 185px; object-fit: cover; }
.camp-card-body { padding: 18px; }
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  color: var(--green);
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 800;
  margin: 8px 0;
}
.badge.private { color: var(--orange); }
.meta { color: var(--muted); font-size: 14px; line-height: 1.5; }

.directory-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.filter-panel { padding: 18px; position: sticky; top: 104px; }
.filter-panel label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 14px;
}
.filter-bar {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 12px;
  margin: 30px 0 22px;
}
.plain-panel { padding: 28px; }
.map-shell {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 340px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #e9efe8;
}
.map-art {
  display: grid;
  place-items: center;
  color: var(--green);
  background:
    radial-gradient(circle at 35% 35%, rgba(16,74,49,.18), transparent 24%),
    radial-gradient(circle at 60% 54%, rgba(240,90,36,.18), transparent 20%),
    linear-gradient(135deg, #f9f4e9, #dde9de);
}
.map-sidebar { background: var(--paper); border-left: 1px solid var(--line); padding: 22px; }
.coming-list { display: grid; gap: 12px; margin-top: 20px; }
.coming-list span { display: flex; gap: 12px; align-items: center; font-weight: 750; }
.coming-list span::before { content: ""; width: 10px; height: 10px; border-radius: 99px; background: var(--orange); }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 60px);
  color: white;
  background: linear-gradient(120deg, var(--green), var(--green-2));
}
.site-footer .brand { color: white; }
.footer-links { display: flex; gap: 24px; opacity: .95; }

@media (max-width: 860px) {
  .site-header { position: static; align-items: flex-start; }
  .nav { display: none; }
  .brand-text strong { font-size: 22px; }
  .hero { min-height: auto; padding-top: 56px; }
  .hero::before { background: linear-gradient(180deg, rgba(255,250,240,.95), rgba(255,250,240,.72)), var(--hero) center/cover no-repeat; }
  .signup, .filter-bar, .directory-layout, .map-shell { grid-template-columns: 1fr; }
  .type-grid, .card-grid, .region-grid, .coming-grid { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .map-sidebar { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}
