/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: #1a1a1a;
  background: #faf8f3;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   DESIGN TOKENS (from Figma)
   ============================================================ */
:root {
  --green:         #0e5e40;
  --green-mid:     #136649;
  --green-dark:    #062c1d;
  --green-deeper:  #02261c;
  --green-light:   #e8f3ee;
  --green-glow:    #4ade80;
  --gold:          #c69c55;
  --gold-bright:   #e8a317;
  --cream:         #f5f0e8;
  --cream-light:   #fefdf7;
  --mint-bg:       #f3f7eb;
  --faq-bg:        #e8f2ff;
  --black:         #111111;
  --charcoal:      #1a1a1a;
  --gray:          #6b7280;
  --gray-light:    #f4f4f5;
  --border:        #e5e7eb;
  --transition:    0.22s ease;

  --card-purple:   #ebe4f5;
  --card-yellow:   #fdf3dc;
  --card-blue:     #e4eef8;
  --card-mint:     #dff3ea;

  --font-display:  'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', 'Inter', sans-serif;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}
.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  text-align: center;
  color: var(--black);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14, 94, 64, 0.3);
}
.btn-outline-dark {
  border: 1.5px solid var(--green);
  color: var(--green);
  background: #fff;
}
.btn-outline-dark:hover {
  background: var(--green-light);
}
.btn-outline-green {
  border: 1.5px solid var(--green);
  color: var(--green);
  background: #fff;
  border-radius: 10px;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  width: 100%;
}
.btn-outline-green:hover {
  background: var(--green-light);
}
.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.875rem;
}
