@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@400;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #2A5240;
  --green-light: #3a6b54;
  --cream:   #FFFBF4;
  --amber:   #C48B3B;
  --amber-dark: #a8732e;
  --text:    #2C2C2C;
  --muted:   #5A5A5A;
  --border:  #DDD6C8;
  --max:     1100px;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { color: var(--green); }
a:hover { color: var(--amber); }

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.3;
  color: var(--green);
}

h1 { font-size: 2.2rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.75rem; margin-top: 2.5rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

ul { padding-left: 1.4rem; margin-bottom: 1.1rem; }
li { margin-bottom: 0.4rem; }

/* ── Layout ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header / Nav ── */
header {
  background: var(--green);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.site-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-title:hover { color: var(--amber); }

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}

nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

nav a:hover,
nav a.active { color: var(--amber); }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  background: var(--green);
  color: #fff;
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  max-width: 780px;
  margin: 0 auto 1rem;
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

/* ── CTA Button ── */
.btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover {
  background: var(--amber-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--amber);
  color: var(--amber);
}
.btn-outline:hover {
  background: var(--amber);
  color: #fff;
}

/* ── Page sections ── */
.section {
  padding: 3.5rem 1.5rem;
}

.section-alt {
  background: #F3EDE2;
}

.section-green {
  background: var(--green);
  color: #fff;
}

.section-green h2 { color: #fff; }
.section-green p  { color: rgba(255,255,255,0.9); }

.section-center { text-align: center; }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

/* ── What's included cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  padding: 1.75rem;
  border-radius: 4px;
}

.card h3 { color: var(--green); margin-bottom: 0.5rem; margin-top: 0; }

/* ── Topics grid ── */
.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.topic-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.topic-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 0.55rem;
}

/* ── Intro text block ── */
.intro-text {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Pull quote / blockquote ── */
blockquote {
  border-left: 4px solid var(--amber);
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── FAQ accordion-style list ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item h2 { margin-top: 0; font-size: 1.2rem; color: var(--green); }

/* ── About section two-col ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── CTA strip ── */
.cta-strip {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--green);
  color: #fff;
}

.cta-strip h2 { color: #fff; margin-top: 0; }
.cta-strip p  { color: rgba(255,255,255,0.88); max-width: 540px; margin: 0 auto 1.75rem; }

/* ── Footer ── */
footer {
  background: #1e3d2f;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

footer a { color: var(--amber); text-decoration: none; }
footer a:hover { color: #fff; }

/* ── Page hero (interior pages) ── */
.page-hero {
  background: var(--green);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  max-width: 700px;
  margin: 0 auto 0.75rem;
  font-size: 2rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  html { font-size: 16px; }

  .hero h1 { font-size: 1.9rem; }

  .nav-toggle { display: flex; }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green);
    padding: 1rem 1.5rem 1.5rem;
  }

  nav ul.open { display: flex; }

  nav a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .btn { width: 100%; text-align: center; }
}
