:root {
  --bg: #F4F0EA;
  --bg-dark: #1A1917;
  --bg-mid: #E8E4DC;
  --accent: #E8570A;
  --text: #1A1917;
  --text-muted: #6B6560;
  --text-light: #F4F0EA;
  --border: #D8D3C8;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  padding: 80px 40px 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 36px;
}
.hero-rule {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 36px;
}
.hero-sub p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 560px;
}
.hero-sub p + p {
  margin-top: 16px;
}

/* ── SECTION LABEL ── */
.section-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

/* ── SERVICES ── */
.services {
  background: var(--bg-dark);
  padding: 96px 40px;
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--text-light);
  max-width: 560px;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: #252421;
  padding: 40px 36px 48px;
  position: relative;
}
.service-num {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.25;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9A9590;
}

/* ── HOW ── */
.how {
  padding: 96px 40px;
  background: var(--bg-mid);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 56px;
}
.step-marker {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.how-step p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.how-divider {
  width: 1px;
  height: 120px;
  background: var(--border);
  margin: 8px 40px 0;
  align-self: center;
}

/* ── TRUST / STATS ── */
.trust {
  padding: 96px 40px;
  background: var(--bg);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.trust-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 48px 0 56px;
}
.stat {
  flex: 1;
  padding: 0 48px 0 0;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin-right: 48px;
  align-self: center;
}
.trust-text {
  max-width: 640px;
}
.trust-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

/* ── CLOSING ── */
.closing {
  background: var(--accent);
  padding: 96px 40px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: #fff;
  max-width: 760px;
  margin-bottom: 28px;
}
.closing p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  padding: 40px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-light);
}
.footer-copy {
  font-size: 0.8rem;
  color: #7A7672;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-divider {
    display: none;
  }
  .trust-stats {
    flex-direction: column;
    gap: 32px;
  }
  .stat {
    padding: 0;
  }
  .stat-divider {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero { padding: 56px 24px 56px; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .how { padding: 64px 24px; }
  .trust { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .nav { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}