:root {
  --bg: #FDFBF7;
  --bg-alt: #F5F0E8;
  --fg: #1A1A18;
  --fg-muted: #6B6860;
  --accent: #0A5C3A;
  --accent-light: #E8F0EC;
  --gold: #D4A847;
  --gold-light: #F9F3E3;
  --card-bg: #FFFFFF;
  --border: #E5E0D8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* ===== NAV ===== */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== HERO ===== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 2px 20px rgba(10,92,58,0.06);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 20px;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 6px;
  text-align: center;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 24px rgba(10,92,58,0.08);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}
.hero-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.hero-card-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.hero-card-delta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 6px;
}
.hero-card-delta.positive { color: #16A34A; }
.hero-card-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 4px;
}
.hero-card-2 { background: var(--accent); }
.hero-card-2 .hero-card-label,
.hero-card-2 .hero-card-value,
.hero-card-2 .hero-card-sub { color: #fff; }
.hero-card-3 { background: var(--gold-light); }

/* ===== PROOF ===== */
.proof {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.proof-quote-mark { margin-bottom: 20px; }
.proof-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 20px;
}
.proof-attribution {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.proof-outro p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.philosophy-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 600px;
}
.philosophy-title em { font-style: italic; color: var(--accent); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.philosophy-item { padding: 0; }
.philosophy-icon { margin-bottom: 20px; }
.philosophy-item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.philosophy-item-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
  background: var(--accent);
  padding: 100px 40px;
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-label { color: var(--gold); }
.features-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: rgba(255,255,255,0.07);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.12);
}
.feature-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
  line-height: 1;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.feature-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 60px;
}
.process-title em { font-style: italic; color: var(--accent); }
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.process-step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.process-step-marker {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.process-step-marker span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.process-step-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.process-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0,
    var(--border) 2px,
    transparent 2px,
    transparent 8px
  );
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 60px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.outcome-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}
.outcome-icon { margin-bottom: 20px; }
.outcome-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.outcome-body {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--accent);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 32px;
}
.closing-title em { font-style: italic; color: var(--gold); }
.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 20px;
}
.closing-body-italic { font-style: italic; color: rgba(255,255,255,0.55); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.footer-logo-accent { color: var(--accent); }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 320px;
  text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 40px; }
  .hero-visual { display: none; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 16px; }
  .process-connector { width: 100%; height: 20px; background: repeating-linear-gradient(0deg, var(--border) 0, var(--border) 2px, transparent 2px, transparent 8px); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-note { text-align: left; }
  .nav { padding: 16px 24px; }
  .nav-tag { display: none; }
  .hero-stats { padding: 20px 24px; }
  .hero-stat-number { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .proof, .philosophy, .features, .process, .outcomes, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
}