:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DC;
  --fg: #1A1A18;
  --fg-muted: #6B6560;
  --accent: #C8922A;
  --accent-dark: #A67720;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --border: #D4CFC4;
}

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

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

/* ─── NAV ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 24px 64px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-deep);
}
.hero-services .sep {
  color: var(--border);
}

/* ─── STATS ROW ─── */
.stats-row {
  background: var(--green-deep);
  color: #fff;
  padding: 32px 24px;
}
.stats-row .stat-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  opacity: 0.65;
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── PROBLEM ─── */
.problem-section {
  padding: 80px 24px;
  background: var(--bg);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.problem-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.problem-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--fg);
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── FIX ─── */
.fix-section {
  padding: 80px 24px;
  background: var(--green-deep);
  color: #fff;
}
.fix-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.fix-section .section-label {
  color: var(--accent);
}
.fix-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 24px;
  font-weight: 300;
}
.fix-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fix-list li {
  font-size: 0.95rem;
  opacity: 0.8;
  padding-left: 20px;
  position: relative;
}
.fix-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.fix-quote {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
}
.fix-quote blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 16px;
}
.fix-quote cite {
  font-size: 0.8rem;
  opacity: 0.5;
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 80px 24px;
  background: var(--bg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.service-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.service-item:hover {
  border-color: var(--green-deep);
}
.service-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}
.service-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--fg);
}
.service-body p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.services-pricing {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-alt);
  border-radius: 8px;
  font-size: 0.875rem;
}
.pricing-row span:first-child {
  color: var(--fg-muted);
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--green-deep);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 80px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.testimonial-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-text h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--fg);
}
.testimonial-text p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── CLOSING ─── */
.closing-section {
  padding: 96px 24px;
  background: var(--green-deep);
  color: #fff;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-icon {
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  opacity: 0.7;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 32px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-deep);
}
.footer-location {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.footer-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 480px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 56px 20px 48px; }
  .hero-headline { font-size: 2.1rem; }
  .fix-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat { padding: 0 12px; }
  .stat-number { font-size: 1.25rem; }
  .stats-row .stat-inner { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { flex: 0 0 calc(50% - 8px); text-align: left; }
  .pricing-table { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .closing-section { padding: 64px 20px; }
}
