/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:     #1B4332;
  --green-mid: #2D6A4F;
  --amber:     #D97706;
  --amber-lt:  #FDE68A;
  --cream:     #FEFCF3;
  --warm-gray: #6B7280;
  --light:     #F5F5F0;
  --white:     #FFFFFF;
  --radius:    12px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--green);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 3rem;
  line-height: 1.1;
}

/* ─── Nav ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 252, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,67,50,0.08);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--warm-gray);
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 5rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.manifesto-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.manifesto-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.75rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--green-mid);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  max-width: 500px;
}

/* Visual: geometric shapes with stat cards */
.manifesto-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(27,67,50,0.12);
}

.geo-circle--lg {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 40% 40%, rgba(45,106,79,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.geo-circle--sm {
  width: 200px;
  height: 200px;
  border-color: rgba(217,119,6,0.2);
  border-style: dashed;
  top: 20%;
  right: 5%;
}

.geo-circle--xs {
  width: 90px;
  height: 90px;
  background: var(--amber);
  opacity: 0.12;
  bottom: 15%;
  left: 10%;
}

.geo-diagonal {
  position: absolute;
  width: 220px;
  height: 2px;
  background: linear-gradient(to right, var(--amber), transparent);
  opacity: 0.4;
  bottom: 30%;
  right: 0;
  transform: rotate(-30deg);
  border-radius: 2px;
}

.geo-dots {
  position: absolute;
  top: 12%;
  left: 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.3;
}

.stat-card {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 24px rgba(27,67,50,0.08);
  display: flex;
  flex-direction: column;
}

.stat-card--1 { bottom: 25%; left: 5%; }
.stat-card--2 { top: 18%; right: 8%; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--warm-gray);
  margin-top: 0.25rem;
}

/* ─── Services ─── */
.services {
  padding: 5rem 2rem;
  background: var(--white);
  border-top: 1px solid rgba(27,67,50,0.08);
  border-bottom: 1px solid rgba(27,67,50,0.08);
}

.services .section-headline { text-align: center; }

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(27,67,50,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27,67,50,0.1);
}

.service-card--accent {
  background: var(--green);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.service-card--accent h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 0; }
.service-card--accent p { color: rgba(254,252,243,0.8); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.service-icon--accent {
  background: rgba(254,252,243,0.15);
  color: var(--amber-lt);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--green-mid);
  line-height: 1.65;
}

/* ─── Outcomes ─── */
.outcomes {
  padding: 5rem 2rem;
  background: var(--cream);
}

.outcomes-inner { max-width: 900px; margin: 0 auto; }

.outcomes-headline { margin-bottom: 3rem; }

.outcomes-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.outcome-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.outcome-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: calc(var(--fill) * 1%);
  max-width: calc(var(--fill) * 1px * 4);
  background: linear-gradient(to right, var(--amber), var(--amber-lt));
  border-radius: 2px;
}

.outcome {
  position: relative;
  padding-top: 1rem;
  border-top: 2px solid rgba(27,67,50,0.08);
}

.outcome-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green);
  max-width: 480px;
}

.outcome-stat {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--amber);
  flex-shrink: 0;
}

.outcome-note {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 0.4rem;
  padding-left: 0;
}

.outcomes-quote {
  background: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2rem;
  margin-top: 2rem;
}

.outcomes-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-mid);
  line-height: 1.6;
}

/* ─── Process ─── */
.process {
  padding: 5rem 2rem;
  background: var(--white);
}

.process .section-headline { text-align: center; }

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.75rem 0;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(27,67,50,0.1);
  line-height: 1;
  padding-top: 0.25rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--green-mid);
  line-height: 1.65;
  max-width: 500px;
}

.step-connector {
  display: flex;
  justify-content: flex-start;
  padding-left: 80px;
}

.connector-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(27,67,50,0.15), rgba(217,119,6,0.25));
  border-radius: 2px;
}

/* ─── Closing ─── */
.closing-section {
  padding: 6rem 2rem;
  background: var(--green);
  text-align: center;
}

.closing-inner { max-width: 760px; margin: 0 auto; }

.closing-badge {
  display: inline-block;
  background: rgba(217,119,6,0.2);
  color: var(--amber-lt);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(217,119,6,0.3);
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.closing-cta {
  margin-bottom: 3rem;
}

.closing-price {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.closing-detail {
  font-size: 1rem;
  color: rgba(254,252,243,0.65);
}

.closing-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(254,252,243,0.1);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.proof-stat {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
}

.proof-label {
  font-size: 0.78rem;
  color: rgba(254,252,243,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 120px;
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(254,252,243,0.15);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--green);
  border-top: 1px solid rgba(254,252,243,0.08);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cream);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(254,252,243,0.45);
  margin-top: 0.35rem;
}

.footer-meta p {
  font-size: 0.8rem;
  color: rgba(254,252,243,0.3);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto-visual { height: 280px; }
  .geo-circle--lg { width: 240px; height: 240px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--accent { grid-template-columns: 1fr; }
  .step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-number { font-size: 1.75rem; }
  .step-connector { padding-left: 50px; }
  .closing-proof { flex-direction: column; gap: 1.5rem; }
  .proof-divider { width: 40px; height: 1px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .outcome-bar { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .outcomes-quote blockquote { font-size: 1rem; }
}

@media (max-width: 480px) {
  .manifesto { padding: 3rem 1.25rem; }
  .manifesto-headline { font-size: 2.5rem; }
  .section-headline { font-size: 1.75rem; }
  .closing-price { font-size: 2.25rem; }
  .proof-stat { font-size: 1.5rem; }
}