:root {
  --bg: #FAF6EF;
  --bg-alt: #F0EBE1;
  --fg: #1A1A18;
  --fg-muted: #6B6560;
  --accent: #B8933F;
  --accent-dark: #8A6F2E;
  --green: #1B3A2F;
  --green-light: #2D5246;
  --cream: #FAF6EF;
  --border: rgba(26,26,24,0.12);
  --card-shadow: 0 2px 12px rgba(26,26,24,0.08);
}

*, *::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: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
}

/* HERO */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  min-width: 280px;
  position: relative;
  z-index: 2;
}
.card-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.card-row:last-child { border-bottom: none; }
.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.green { background: #4CAF50; }
.blue { background: #2196F3; }
.gold { background: var(--accent); }
.muted { background: #C4BBA8; }
.hero-orb {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--green-light), var(--green));
  opacity: 0.15;
  z-index: 1;
}

/* FEATURES */
.features {
  background: var(--green);
  padding: 100px 40px;
}
.features-header {
  max-width: 1120px;
  margin: 0 auto 64px;
}
.features-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white;
  font-weight: 700;
}
.features-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature {
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,147,63,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--cream);
}
.manifesto-quote {
  max-width: 760px;
  margin: 0 auto 64px;
}
.manifesto-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}
.manifesto-stat-row {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 48px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ROLES */
.roles {
  padding: 100px 40px;
  background: white;
}
.roles-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--green);
  font-weight: 700;
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.roles-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.role-card {
  padding: 36px 32px;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.role-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.role-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--bg-alt);
  text-align: center;
}
.closing-headline {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: var(--green);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 20px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.65;
}
.closing-visual {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--green);
}
.ring-1 { width: 200px; height: 200px; top: 0; left: 0; opacity: 0.12; }
.closing-ring.ring-2 { width: 148px; height: 148px; opacity: 0.2; }
.closing-ring.ring-3 { width: 96px; height: 96px; opacity: 0.3; }
.closing-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.6;
  z-index: 1;
}

/* FOOTER */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer-brand {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 80px;
  }
  .features {
    padding: 72px 24px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .roles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .manifesto { padding: 72px 24px; }
  .roles { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 32px 24px; }
  .stat { padding: 0 24px; }
  .stat-num { font-size: 2.4rem; }
  .manifesto-stat-row { gap: 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero-card { min-width: 0; width: 100%; }
}