:root {
  --green-dark: #354626;
  --green-medium: #697A4D;
  --green-forest: #253a05;
  --green-light: #A1B482;
  --green-accent: #52594A;

  --white: #FFFFFF;
  --gray-light: #F0F0F0;
  --gray-medium: #cac8c5;
  --gray-icons: #6E6C68;
  --gray-dark: #262525;

  --beige-light: #F9F6F3;
  --beige-dark: #c5b4a1;

  --orange-light: #DD7C0C;
  --orange-hover: #EF8F20;
  --orange: #C66A00;
  --orange-dark: #AF4403;
  --orange-vivid: #FF9214;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: 'Amarante', serif;

  --container: 1100px;
  --radius-md: 10px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-dark);
  background: var(--beige-light);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

a { text-decoration: none; color: inherit; }

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

p { margin: 0; line-height: 1.65; color: var(--gray-icons); }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ---------- Header ---------- */
header {
  background: var(--green-dark);
  padding: 22px 0;
}
.header-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-title {
  font-family: var(--font-logo);
  font-size: 26px;
  color: var(--white);
  line-height: 1.1;
}
.logo-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 70px; text-align: center; }
.hero .eyebrow { margin-bottom: 40px; }
.hero .wrap { max-width: 760px; }
.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero .lede {
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- About ---------- */
.about { background: var(--white); padding: 70px 0; }
.about-grid { max-width: 700px; margin: 0 auto; text-align: center; }
.about-text h2 {
  font-size: 28px;
  margin-bottom: 18px;
}
.about-text p { font-size: 16.5px; }
.standalone-lede {
  font-size: 21px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.5;
}

/* ---------- Activities ---------- */
.activities { padding: 80px 0; }
.activities .eyebrow { text-align: center; margin-bottom: 40px; }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1.5px solid transparent;
}
.activity-card.featured {
  border-color: var(--orange-light);
}
.activity-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.activity-card p {
  font-size: 14.5px;
  margin-bottom: 18px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange);
}

/* ---------- CTA ---------- */
.cta { padding: 0 0 90px; }
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--orange-light);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(221, 124, 12, 0.28);
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-ghost:hover { background: var(--green-dark); color: var(--white); }

/* ---------- Footer ---------- */
footer {
  background: var(--green-forest);
  color: rgba(255,255,255,0.55);
  padding: 36px 0;
  font-size: 13.5px;
}
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
footer a { color: rgba(255,255,255,0.75); }
footer a:hover { color: var(--white); }
.footer-links { display: flex; gap: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .hero h1 { font-size: 32px; }
  .activities-grid { grid-template-columns: 1fr; }
  footer .wrap { flex-direction: column; text-align: center; }
}
