/* === TOKENS === */
:root {
  --bg: #faf8f4;
  --bg-alt: #f2efe9;
  --bg-dark: #1c2b24;
  --fg: #1a1a18;
  --fg-muted: #5c5c54;
  --fg-light: #8a8a80;
  --accent: #c9a84c;
  --accent-dark: #a8882e;
  --green: #2d4a3e;
  --green-mid: #3d6352;
  --green-light: #4d7a65;
  --border: #e0dbd0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1080px;
  --pad-x: clamp(20px, 5vw, 60px);
  --pad-y: clamp(48px, 8vw, 96px);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
}
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }

/* === COMMON === */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 40px;
}

/* === HERO === */
.hero {
  position: relative;
  padding: var(--pad-y) var(--pad-x) var(--pad-y);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 32px;
  align-items: start;
}
.hero-accent-bar {
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--green), var(--accent));
  border-radius: 3px;
  min-height: 80px;
}
.hero-content { padding-left: 12px; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-light);
  letter-spacing: 0.04em;
}
.hero-meta-divider { color: var(--accent); }

/* === SERVICES === */
.services { padding: var(--pad-y) 0; background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(201,168,76,0.08);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.services-nonprofit {
  background: var(--green);
  border-radius: 12px;
  padding: 24px 28px;
  color: #fff;
}
.np-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.services-nonprofit p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

/* === APPROACH === */
.approach { padding: var(--pad-y) 0; }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.approach-quote {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 32px 36px;
}
.approach-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 16px;
}
.approach-quote cite {
  font-size: 13px;
  color: var(--fg-light);
  font-style: normal;
  font-weight: 500;
}

/* === WHY === */
.why { padding: var(--pad-y) 0; background: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.why-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === ABOUT === */
.about { padding: var(--pad-y) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-block {
  background: var(--green);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-placeholder {
  padding: 40px;
  text-align: center;
}
.about-image-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  line-height: 1.3;
}
.about-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === CLOSING === */
.closing { padding: var(--pad-y) 0; }
.closing-inner { text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.closing-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-light);
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.footer-info p, .footer-meta p {
  font-size: 13px;
  line-height: 1.6;
}
.footer-meta p {
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-accent-bar { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-inner,
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-stats { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .about-image-block { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-headline { font-size: 26px; }
  .about-stats { gap: 16px; }
}