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

:root {
  --bg: #FAFAF5;
  --surface: #F0EFE8;
  --primary: #1B4332;
  --accent: #D97706;
  --text: #1A1A18;
  --text-muted: #5C5C58;
  --border: #D8D6CC;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  padding: 80px 24px 72px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 600px;
  background: var(--white);
}
.stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── PROOF ── */
.proof { padding: 72px 24px; background: var(--surface); }
.proof-inner { max-width: 900px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
}
.proof-icon { color: var(--accent); margin-bottom: 16px; }
.proof-headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.proof-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ── PROCESS ── */
.process { padding: 72px 24px; background: var(--bg); }
.process-inner { max-width: 860px; margin: 0 auto; }
.section-lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: -28px;
  margin-bottom: 48px;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 60px;
  opacity: 0.6;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.step-body { font-size: 0.95rem; color: var(--text-muted); max-width: 500px; }

/* ── SERVICES ── */
.services { padding: 72px 24px; background: var(--surface); }
.services-inner { max-width: 900px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.service-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.service-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.pricing-callout {
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 36px 40px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-from { font-size: 0.875rem; opacity: 0.7; margin-top: 4px; }
.pricing-amount { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; }
.pricing-per { font-size: 1.1rem; opacity: 0.7; font-weight: 400; margin-left: 2px; }
.pricing-note { font-size: 0.875rem; opacity: 0.7; margin-left: auto; align-self: center; }

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 80px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 32px;
}
.testimonial-name { font-weight: 600; color: var(--primary); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ── CLOSING ── */
.closing { padding: 80px 24px; background: var(--primary); color: var(--white); }
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-body { font-size: 1.05rem; opacity: 0.8; line-height: 1.7; margin-bottom: 48px; }
.closing-cta { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 32px; }
.cta-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin-bottom: 8px; }
.cta-brand { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; margin-bottom: 4px; }
.cta-sub { font-size: 0.875rem; opacity: 0.6; }

/* ── FOOTER ── */
.footer { padding: 40px 24px; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 860px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); font-size: 1rem; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); flex: 1; padding: 0 16px; }
.footer-meta { font-size: 0.75rem; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero { padding: 56px 20px 48px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .process-step { gap: 20px; }
  .step-number { font-size: 2rem; min-width: 44px; }
  .pricing-callout { padding: 28px 24px; flex-direction: column; gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 4px; }
  .footer-tagline { padding: 0; }
}