:root {
  --bg: #f5f0e6;
  --bg-dark: #1a3a2a;
  --fg: #1a1a18;
  --fg-light: #f5f0e6;
  --accent: #d4a853;
  --accent-dim: #b8913a;
  --muted: #7a7468;
  --border: #e0d9c8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* HERO */
.hero {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 96px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,83,0.08) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(245,240,230,0.65);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.65;
}

/* STATS ROW */
.stats-row {
  background: var(--fg);
  color: var(--fg-light);
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(245,240,230,0.5);
  font-weight: 400;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* PROCESS */
.process {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.process-header {
  margin-bottom: 64px;
}
.process-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.process-header p {
  font-size: 16px;
  color: var(--muted);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.step {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}
.step:last-child { border-right: none; }
.step:not(:first-child) { padding-left: 40px; }
.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dim);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* PRINCIPLES */
.principles {
  background: var(--fg);
  color: var(--fg-light);
  padding: 96px 48px;
}
.principles h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  max-width: 600px;
  margin-bottom: 56px;
  color: var(--fg-light);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
}
.principle {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.principle-icon {
  color: var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}
.principle h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-light);
  line-height: 1.3;
}
.principle p {
  font-size: 15px;
  color: rgba(245,240,230,0.55);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 112px 48px 96px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 24px;
  font-style: italic;
}
.closing-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* FOOTER */
footer {
  background: var(--fg);
  color: rgba(245,240,230,0.4);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-light);
}
.footer-tagline {
  font-size: 12px;
  color: rgba(245,240,230,0.35);
}
.footer-meta {
  font-size: 12px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 72px 24px 60px; }
  .stats-row { padding: 0 24px; flex-direction: column; }
  .stat-divider { width: 40px; height: 1px; }
  .stat { padding: 28px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:last-child { border-bottom: none; }
  .process { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .step:not(:first-child) { padding-left: 0; }
  .step:last-child { border-bottom: none; }
  .principles { padding: 64px 24px; }
  .principles-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 72px 24px 64px; }
  footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
}