:root {
  --green-deep: #1a3a2f;
  --green-dark: #243d31;
  --green-mid: #2f5140;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --cream: #faf8f4;
  --cream-dark: #f0ebe0;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  border-left: 1px solid var(--cream-dark);
}

/* Hero */
.hero {
  padding: 80px 48px 48px;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--green-deep);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 16px;
}
.hero-proof {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* Visual card */
.visual-card {
  background: var(--green-deep);
  border-radius: 16px;
  padding: 32px;
  color: var(--cream);
  box-shadow: 0 24px 64px rgba(26, 58, 47, 0.3);
}
.vc-header {
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vc-timeline { display: flex; flex-direction: column; gap: 20px; }
.vc-step { display: flex; align-items: center; gap: 14px; }
.vc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.vc-dot.pulse {
  background: var(--gold);
  animation: pulse 2s infinite;
}
.vc-label { font-size: 15px; color: rgba(255,255,255,0.75); }
.vc-step.done .vc-label { color: var(--cream); }
.vc-status {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: var(--gold-light);
  font-style: italic;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero bottom rule */
.hero-bottom-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--cream-dark);
  font-size: 15px;
  color: var(--text-muted);
}
.hero-bottom-rule .sep { color: var(--gold); font-weight: bold; }
.hero-bottom-rule .bold { color: var(--green-deep); font-weight: 600; font-size: 17px; }

/* Section labels */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

/* What section */
.what {
  padding: 100px 48px;
  background: var(--white);
}
.section-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 64px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.what-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--cream-dark);
  transition: border-color 0.2s;
}
.what-card:hover { border-color: var(--gold); }
.wc-icon {
  color: var(--green-deep);
  margin-bottom: 20px;
}
.what-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.what-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Sectors */
.sectors {
  padding: 100px 48px;
  background: var(--green-deep);
}
.sectors-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.sectors-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.sectors-body {
  font-size: 16px;
  color: rgba(250,248,244,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}
.sectors-right {}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sector-tag {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Why section */
.why {
  padding: 100px 48px;
  background: var(--cream);
}
.why-intro { margin-bottom: 64px; max-width: 700px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
}
.wc-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: rgba(26, 58, 47, 0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--green-dark);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--cream);
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 36px;
}
.closing-body {
  font-size: 17px;
  color: rgba(250,248,244,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}
.closing-body:last-child {
  margin-bottom: 0;
  color: var(--gold-light);
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 48px;
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--cream);
}
.footer-desc { font-size: 13px; color: rgba(250,248,244,0.4); }
.footer-meta {
  font-size: 13px;
  color: rgba(250,248,244,0.35);
  text-align: right;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-bottom-rule { flex-wrap: wrap; gap: 8px; font-size: 14px; }
  .what, .sectors, .why, .closing { padding: 72px 24px; }
  .what-grid { grid-template-columns: 1fr; }
  .sectors-inner { grid-template-columns: 1fr; gap: 48px; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-meta { text-align: left; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
}