:root {
  --bg: #F8F7F4;
  --bg-alt: #EFEFEA;
  --fg: #1A1A1A;
  --fg-muted: #6B6B5E;
  --accent: #0A5E5E;
  --accent-light: #E8F4F4;
  --accent-warm: #C97B2A;
  --surface-dirty: #A09A8C;
  --surface-clean: #4BAF9A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { 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;
}

/* Navigation */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(26,26,26,0.06);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.hero-divider {
  width: 1px;
  height: 32px;
  background: rgba(26,26,26,0.15);
}

/* Transform card */
.hero-visual { display: flex; justify-content: flex-end; }
.transform-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 260px;
}
.transform-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  padding: 4px 0;
  border-radius: 4px;
}
.transform-label--before { background: rgba(160,154,140,0.15); color: #7A7469; }
.transform-label--after { background: var(--accent-light); color: var(--accent); }
.transform-swatch {
  width: 100%;
  height: 90px;
  border-radius: 8px;
}
.transform-swatch--dirty {
  background: linear-gradient(135deg, #B8B09E 0%, #9A9182 40%, #7A7266 60%, #8A8274 100%);
  position: relative;
}
.transform-swatch--dirty::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(0,0,0,0.15) 8px, rgba(0,0,0,0.15) 10px);
}
.transform-swatch--clean {
  background: linear-gradient(135deg, #D8D8D0 0%, #C8C8C0 40%, #B8B8B0 60%, #CACAC2 100%);
  position: relative;
}
.transform-arrow { color: var(--accent); margin: 4px 0; }
.transform-caption {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 4px;
}

/* Proof section */
.proof {
  padding: 72px 0;
  background: var(--bg-alt);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.proof-header { text-align: center; margin-bottom: 48px; }
.proof-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.proof-sub {
  font-size: 17px;
  color: var(--fg-muted);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proof-item { display: flex; flex-direction: column; gap: 10px; }
.proof-surface {
  border-radius: 12px;
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.proof-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.6;
  border-radius: 12px;
}
.proof-surface-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  position: relative;
  z-index: 1;
}
.proof-surface-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.proof-surface-tag--before { background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.proof-surface-tag--after { background: rgba(255,255,255,0.25); color: white; }
.proof-surface--driveway::before {
  background: linear-gradient(160deg, #8A8A7A 0%, #6A6A5A 50%, #7A7A6A 100%);
}
.proof-surface--deck::before {
  background: linear-gradient(160deg, #A08A6A 0%, #8A7050 50%, #9A8060 100%);
}
.proof-surface--exterior::before {
  background: linear-gradient(160deg, #B0A090 0%, #908070 50%, #A09580 100%);
}
.proof-surface--patio::before {
  background: linear-gradient(160deg, #9AA090 0%, #7A8070 50%, #8A9080 100%);
}
.proof-desc {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 0 2px;
}

/* Services */
.services { padding: 80px 0; }
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.services-header { margin-bottom: 48px; }
.services-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.services-sub { font-size: 17px; color: var(--fg-muted); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.service-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(26,26,26,0.06);
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.service-icon { color: var(--accent); margin-bottom: 16px; }
.service-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-price {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.service-price strong { color: var(--accent); font-weight: 700; font-size: 16px; }
.service-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.services-guarantee {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(26,26,26,0.06);
}
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}
.guarantee-badge svg { color: var(--accent); flex-shrink: 0; }

/* Process */
.process {
  padding: 80px 0;
  background: var(--accent);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.process-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 48px;
  text-align: center;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  padding: 80px 0;
  background: var(--fg);
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.manifesto-text--bold {
  color: white;
  font-size: 26px;
  font-weight: 700;
}

/* Closing */
.closing {
  padding: 80px 0;
  border-top: 1px solid rgba(26,26,26,0.06);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.closing-meta {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.closing-stat { display: flex; flex-direction: column; align-items: center; }
.closing-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.closing-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(26,26,26,0.06);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.footer-location { font-size: 13px; color: var(--fg-muted); }
.footer-copy { font-size: 13px; color: var(--fg-muted); max-width: 360px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .closing-meta { gap: 32px; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 0 48px; }
  .hero-meta { gap: 16px; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-guarantee { gap: 14px; }
  .closing-meta { gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}