:root {
  --sage-deep: #3F5A37;
  --sage: #7A9B6E;
  --sage-pale: #F0F3EB;
  --sage-soft-bg: #DDE5D2;
  --sage-strong-bg: #B9CCA8;
  --sage-border: #C8D5C0;
  --sage-soft: #5F7A56;
  --cream: #FDFBF6;
  --peach: #E89070;
  --terracotta: #C2502E;
  --terracotta-deep: #A03F1F;
  --text: #2C2C2A;
  --text-soft: #4A4A47;

  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1.25;
}

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

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sage-deep);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
}
.nav-logo .intentional { color: var(--peach); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--sage-border);
}
.nav-links a { color: var(--sage-border); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--peach); text-decoration: none; }
.nav-links a.nav-current { color: var(--peach); }

@media (max-width: 640px) {
  .nav-inner { padding: 14px 20px; }
  .nav-logo { font-size: 13px; }
  .nav-links { gap: 16px; font-size: 13px; }
}

/* ============ LAYOUT ============ */
section {
  padding: 80px 32px;
}
.container {
  max-width: 760px;
  margin: 0 auto;
}
.container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  section { padding: 56px 24px; }
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-soft-bg) 70%, var(--sage-strong-bg) 100%);
  text-align: center;
  padding-top: 96px;
  padding-bottom: 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 155, 110, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
}
.hero-mark::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 .intentional {
  color: var(--terracotta);
}
.hero-tagline {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--sage-soft);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ PAGE HEADER (for sub-pages) ============ */
.page-header {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-soft-bg) 100%);
  text-align: center;
  padding: 80px 32px 56px;
}
.page-eyebrow {
  font-size: 12px;
  color: var(--sage-soft);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 46px);
  color: var(--sage-deep);
  margin-bottom: 18px;
  line-height: 1.2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-header h1 em,
.page-header h1 .accent {
  color: var(--terracotta);
  font-style: normal;
  font-weight: inherit;
}
.page-header .page-intro {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--sage-deep);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--sage);
}
.btn-secondary:hover {
  background: var(--sage);
  color: var(--cream);
  text-decoration: none;
}

/* ============ SECTIONS ============ */
.section-cream { background: var(--cream); }
.section-pale {
  background: var(--sage-pale);
  border-top: 1px solid var(--sage-border);
  border-bottom: 1px solid var(--sage-border);
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 24px;
}

p { margin-bottom: 16px; color: var(--text-soft); }
p:last-child { margin-bottom: 0; }

.mission-italic {
  font-style: italic;
  color: var(--text);
}

/* ============ QUOTE ============ */
.quote-block {
  margin-top: 28px;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--terracotta);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
  color: var(--sage-deep);
}
.quote-attr {
  display: block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  color: var(--sage-soft);
  letter-spacing: 0.3px;
}

/* Centered pull quote (for About page guiding question) */
.pull-quote {
  text-align: center;
}
.pull-quote .quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.5;
  color: var(--sage-deep);
  max-width: 680px;
  margin: 0 auto;
}

/* ============ GOALS / NUMBERED LIST ============ */
.goals {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}
.goal {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 4px 0;
}
.goal-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-pale);
  border: 1px solid var(--sage-border);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 13px;
  font-style: italic;
}
.goal-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
}
.goal-text strong {
  color: var(--sage-deep);
  font-weight: 600;
}

/* ============ BELIEFS (About page) ============ */
.beliefs {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}
.belief h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 8px;
  line-height: 1.35;
}
.belief p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* ============ GET INVOLVED ============ */
.involved-bg {
  background: linear-gradient(180deg, var(--sage-pale) 0%, #DDE5D2 100%);
  padding: 88px 32px;
}
.involved-bg h2 { text-align: center; margin-bottom: 32px; }
.involved-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 16px;
  border: 1px solid var(--sage-border);
}
.involved-card:last-child { margin-bottom: 0; }
.involved-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.involved-card p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* Embed slot placeholder styling */
.embed-slot {
  background: #FAF6EC;
  border: 1px dashed var(--sage-border);
  border-radius: 12px;
  padding: 18px;
  color: var(--sage-soft);
  font-size: 13px;
  font-style: italic;
  text-align: center;
}
.embed-slot strong { color: var(--sage-deep); display: block; margin-bottom: 4px; font-style: normal; }

/* Contact CTA card */
.contact-cta {
  background: linear-gradient(180deg, var(--sage-pale) 0%, var(--sage-soft-bg) 100%);
  text-align: center;
  padding: 72px 32px;
}
.contact-cta h2 { margin-bottom: 14px; }
.contact-cta p { font-size: 15px; color: var(--text-soft); margin-bottom: 24px; }

/* ============ FOOTER ============ */
footer {
  padding: 32px 24px;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--sage-border);
  color: var(--sage-soft);
  font-size: 13px;
}
footer a { color: var(--sage-soft); }

/* ============ REVEAL ANIMATION ============ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}
