/* Global CSS - tokens injected by /site-build Phase 3 */
/* Syntax: {{ TOKEN_NAME }} is replaced by the skill before build */

:root {
  --brand:           #027d49;
  --brand-dark:      #015a32;
  --secondary:       #39b54a;
  --brand-darkest:   #06331e;
  --brand-secondary: #39b54a;
  --white:           #ffffff;
  --off-white:       #f8f7f4;
  --warm-grey:       #f0ece6;
  --charcoal:        #2c2c2c;
  --dark:            #1a1a1a;
  --slate-900:       #1e293b;
  --mid-grey:        #6b7280;
  --light-grey:      #9ca3af;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* EYEBROW */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary { background: #124b32; color: #fff; }
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

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

/* PAGE HERO (shared across inner pages) */
.page-hero {
  position: relative;
  padding: 96px 0 72px;
  background: var(--brand-darkest, #06331e);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,68,42,0.94) 0%, rgba(1,90,50,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* SECTIONS */
.section { padding: 80px 0; }
.section-white { background: #fff; }
.section-off-white { background: var(--off-white); }
.section-warm { background: var(--warm-grey); }
.section-dark { background: var(--brand-darkest, #06331e); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--charcoal);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--mid-grey);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
