:root {
  --bg: #fafaf7;
  --bg-alt: #ecefe8;
  --bg-cta: #1f3a2e;
  --ink: #1c1c1c;
  --ink-inv: #fafaf7;
  --muted: #6b6b6b;
  --accent: #2f6b4f;
  --accent-hover: #265a41;
  --accent-ink: #ffffff;
  --max: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  border-bottom: 1px solid #e6e2d8;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .brand img { height: 44px; }
  .site-header nav a:not(.btn) { display: none; }
  .hero { padding: 4.5rem 0 4rem; }
  .section { padding: 3rem 0; }
  .feature-split { padding: 3rem 0; }
}
.site-header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.site-header nav a {
  color: var(--ink);
}
.site-header nav a.btn {
  color: var(--accent-ink);
}

.hero {
  padding: 7rem 0 6rem;
  color: var(--ink-inv);
  background-color: var(--bg-cta);
  background-size: cover;
  background-position: center;
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  margin: 0 0 0.75rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero p.lede {
  font-size: 1.2rem;
  color: rgba(250, 250, 247, 0.92);
  max-width: 60ch;
  margin: 0;
}
.hero .kicker {
  color: rgba(250, 250, 247, 0.85);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.85rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.9rem; }
.btn-large { padding: 1.1rem 1.8rem; font-size: 1.1rem; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ghost-light {
  background: transparent;
  color: var(--ink-inv);
  border: 2px solid var(--ink-inv);
}
.btn-ghost-light:hover { background: var(--ink-inv); color: var(--bg-cta); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 600;
}

.lede { font-size: 1.2rem; color: var(--muted); max-width: 60ch; margin: 0; }
.section-lede { font-size: 1.1rem; color: var(--muted); max-width: 65ch; margin: 0 0 2rem; }
.small { font-size: 0.85rem; }
.link { font-weight: 600; }

.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-cta {
  background: var(--bg-cta);
  color: var(--ink-inv);
  text-align: center;
}
.section-cta h2 { color: var(--ink-inv); }
.section-cta .section-lede { color: rgba(250, 250, 247, 0.85); margin-left: auto; margin-right: auto; }
.section-cta .muted { color: rgba(250, 250, 247, 0.6); }
.section-cta .btn {
  background: var(--bg);
  color: var(--bg-cta);
  border-color: var(--bg);
}
.section-cta .btn:hover { background: #fff; border-color: #fff; }
.section h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

.section-banner {
  padding: 5rem 0;
  background-color: var(--bg-cta);
  background-size: cover;
  background-position: center;
  color: var(--ink-inv);
  text-align: center;
}
.banner-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.4;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.cards-2-centered {
  max-width: calc(66.666% + 0.5rem);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 760px) {
  .cards-2-centered {
    max-width: 100%;
    grid-template-columns: 1fr;
  }
}
.card {
  background: #fff;
  border: 1px solid #ece8de;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-body { padding: 1.25rem; }
.card h3 { margin: 0 0 0.25rem; }
.muted { color: var(--muted); margin: 0 0 0.75rem; font-size: 0.95rem; }

.card-image .card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  border-bottom: 1px dashed #d5d0c2;
}

.map-container {
  text-align: center;
}
.map-container .section-lede {
  margin-left: auto;
  margin-right: auto;
}
.map-container img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e6e2d8;
  background: #fdf9ec;
  display: block;
  margin: 0 auto;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.camp-section h2 {
  margin: 0.25rem 0 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
}
.camp-section .kicker { margin: 0 0 0.5rem; }
.camp-section .section-lede {
  margin-bottom: 2rem;
  max-width: 65ch;
}
.camp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.75rem;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 780px;
  list-style: none;
}
.camp-chip {
  padding: 0.55rem 1.15rem;
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.subsection-title {
  margin: 2.5rem 0 1.25rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}
.subsection-title:first-of-type { margin-top: 0; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.card-icon svg { width: 24px; height: 24px; }

.feature-split {
  padding: 5rem 0;
  background: var(--bg-cta);
  color: var(--ink-inv);
}
.feature-split h2 {
  color: var(--ink-inv);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin: 0.25rem 0 1rem;
}
.feature-split .kicker { color: rgba(250, 250, 247, 0.75); margin: 0; }
.feature-split p { color: rgba(250, 250, 247, 0.92); }
.feature-split .muted { color: rgba(250, 250, 247, 0.6); }
.feature-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-split-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.feature-split .btn-ghost {
  color: var(--ink-inv);
  border-color: var(--ink-inv);
}
.feature-split .btn-ghost:hover {
  background: var(--ink-inv);
  color: var(--bg-cta);
}
@media (max-width: 760px) {
  .feature-split-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.why-item {
  text-align: center;
  padding: 1rem;
}
.why-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
.why-item p {
  color: var(--muted);
  margin: 0;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent);
  margin-bottom: 1rem;
}
.why-icon svg { width: 28px; height: 28px; }

.sticky-book {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(20, 40, 30, 0.25);
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.sticky-book:hover {
  background: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-2px);
}
.sticky-book svg { width: 20px; height: 20px; }
@media (max-width: 600px) {
  .sticky-book { padding: 0.75rem 1rem; font-size: 0.95rem; }
  .sticky-book span { display: inline; }
}

.site-footer {
  border-top: 1px solid #e6e2d8;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
