/* ── Tokens ── */
:root {
  --bg: #FAFAF7;
  --bg-alt: #F0EDE6;
  --fg: #1A1A18;
  --fg-muted: #6B6B63;
  --accent: #C8873D;
  --accent-dark: #9E6830;
  --white: #FFFFFF;
  --border: #E2DDD5;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; }
a { color: inherit; text-decoration: none; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.site-header nav { display: flex; gap: 28px; }
.site-header nav a { font-size: 0.875rem; color: var(--fg-muted); transition: color 0.2s; }
.site-header nav a:hover { color: var(--fg); }

/* ── Hero ── */
.hero {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-lede {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 44ch;
  line-height: 1.7;
}
.hero-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg);
  width: fit-content;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Section shared ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--fg);
}

/* ── Services ── */
.services {
  background: var(--bg-alt);
  padding: 80px 32px;
}
.services .section-header { margin-bottom: 48px; }
.services-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg); }
.service-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--fg);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.service-price {
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-dark);
}

/* ── Process ── */
.process {
  padding: 80px 32px;
  max-width: 1100px; margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step { position: relative; }
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Eco ── */
.eco {
  background: var(--fg);
  color: var(--white);
  padding: 80px 32px;
}
.eco-content {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.eco-text .section-label { color: var(--accent); }
.eco-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 12px;
}
.eco-text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.eco-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}
.eco-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
}
.eco-badge svg { flex-shrink: 0; }

/* ── Coverage ── */
.coverage {
  padding: 80px 32px;
  background: var(--bg-alt);
}
.coverage-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.coverage-inner h2 { font-size: 2rem; margin-bottom: 12px; }
.coverage-sub { color: var(--fg-muted); font-size: 0.9375rem; margin-bottom: 32px; }
.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.coverage-cities span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg);
}
.coverage-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.coverage-phone {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.2s;
}
.coverage-phone:hover { color: var(--accent-dark); }
.coverage-hours { font-size: 0.8125rem; color: var(--fg-muted); }

/* ── Closing ── */
.closing {
  padding: 80px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing h2 { font-size: 2.25rem; margin-bottom: 16px; }
.closing p { color: var(--fg-muted); font-size: 1.0625rem; line-height: 1.7; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand .wordmark { display: block; font-size: 1rem; margin-bottom: 4px; }
.footer-brand p { font-size: 0.75rem; color: var(--fg-muted); }
.footer-contact { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--fg-muted); }
.footer-contact a:hover { color: var(--fg); }
.footer-copy { font-size: 0.75rem; color: var(--fg-muted); width: 100%; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .eco-content { grid-template-columns: 1fr; gap: 40px; }
  .eco-badges { padding-top: 0; }
  .site-header nav { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}