:root {
  --bg: #f8f5f0;
  --bg-alt: #f0ede7;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #d4a843;
  --accent-dark: #b8892e;
  --green: #1a3a2f;
  --green-mid: #243d33;
  --green-light: #2d4f3f;
  --white: #ffffff;
  --border: #e0dbd4;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(248,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* HERO */
.hero {
  position: relative;
  padding: 140px 40px 100px;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: 0; right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.06;
  pointer-events: none;
}
.hero-inner { max-width: 900px; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 36px;
}
.hero-headline em {
  font-style: italic;
  color: var(--green);
}
.hero-body {
  max-width: 580px;
  margin-bottom: 48px;
}
.hero-body p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.hero-body-accent {
  font-weight: 500;
  color: var(--fg) !important;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: var(--white);
}
.hero-stat {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
  font-weight: 400;
}
.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* DIFFERENTIATOR */
.diff {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diff-inner { max-width: 1100px; }
.diff-header { margin-bottom: 48px; }
.diff-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 640px;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.diff-card {
  padding: 36px;
  border-radius: 16px;
  background: var(--white);
}
.diff-card-right { margin-top: 24px; }
.diff-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}
.diff-tag-wrong { background: #fef2f2; color: #991b1b; }
.diff-tag-right { background: #f0fdf4; color: #166534; }
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diff-list li {
  font-size: 15px;
  padding-left: 20px;
  position: relative;
  color: var(--fg-muted);
  line-height: 1.5;
}
.diff-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.diff-list-wrong li::before { background: #dc2626; }
.diff-list-right li::before { background: var(--green); }

/* SERVICES */
.services { padding: 100px 40px; }
.services-inner { max-width: 1100px; }
.services-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.service-card-featured {
  border-color: var(--green);
  background: var(--green);
}
.service-card-featured .service-number { color: var(--accent); }
.service-card-featured .service-name { color: var(--white); }
.service-card-featured .service-desc { color: rgba(255,255,255,0.75); }
.service-card-featured .service-price { color: var(--accent); }
.service-number {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--border);
  margin-bottom: 16px;
  line-height: 1;
}
.service-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.outcomes-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.65;
}
.outcomes-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.breakdown-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.breakdown-num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green);
  min-width: 24px;
}
.breakdown-text {
  font-size: 14px;
  color: var(--fg-muted);
}
.outcomes-total {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 24px;
  background: var(--green);
  border-radius: 12px;
}
.total-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.total-value {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--white);
}
.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phase-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}
.phase-card-mid { border-left: 3px solid var(--accent); }
.phase-card-target { border-left: 3px solid var(--green); }
.phase-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.phase-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.phase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phase-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.phase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--green);
  text-align: center;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}
.manifesto-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 20px;
  font-style: normal;
  letter-spacing: -0.5px;
}
.manifesto-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* FOOTER */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-note {
  max-width: 400px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
  text-align: right;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card-right { margin-top: 0; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-note { text-align: left; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 24px 80px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .diff, .services, .outcomes, .manifesto { padding: 64px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; }
  .nav { padding: 0 24px; }
  .nav-tagline { display: none; }
}