:root {
  --bg: #faf8f2;
  --surface: #ffffff;
  --primary: #1a4a2e;
  --primary-mid: #245c3c;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --text: #1c1c1c;
  --text-muted: #5a5a5a;
  --border: #e8e4d9;
  --green-light: #eef5ef;
}

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

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

/* Nav */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  color: var(--primary);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 460px;
  font-weight: 300;
}

/* Map Card */
.hero-visual {
  display: flex;
  justify-content: center;
}
.map-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(26,74,46,0.10);
  width: 100%;
  max-width: 340px;
  overflow: hidden;
}
.map-card-header {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.map-pin-icon {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.map-card-body {
  padding: 20px 20px 24px;
}
.map-business-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}
.map-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
}
.map-rating span {
  font-size: 13px;
  color: var(--text-muted);
}
.map-snippet {
  margin-bottom: 16px;
}
.snippet-line {
  height: 9px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
  width: 100%;
}
.snippet-line.short { width: 60%; }
.map-badge {
  background: var(--green-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #c8e6ce;
}

/* What */
.what {
  padding: 100px 40px;
  background: var(--surface);
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.what-label, .services-label, .process-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 16px;
}
.what-headline, .services-headline, .process-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.what-card {
  background: var(--surface);
  padding: 36px 32px;
}
.what-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.what-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.what-body {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* Services */
.services {
  padding: 100px 40px;
  background: var(--bg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 40px 36px;
}
.service-icon {
  color: var(--accent-dim);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Process */
.process {
  padding: 100px 40px;
  background: var(--primary);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-label { color: rgba(255,255,255,0.5); }
.process-headline {
  color: #fff;
  margin-bottom: 64px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto blockquote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--primary);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Nav admin link */
.nav-admin-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid var(--primary);
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-admin-link:hover {
  background: var(--primary);
  color: #fff;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-brand .wordmark {
  display: block;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .what-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  .hero, .what, .services, .process, .manifesto, .footer { padding-left: 20px; padding-right: 20px; }
  .nav { padding-left: 20px; padding-right: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .what-headline, .services-headline, .process-headline { margin-bottom: 32px; }
}