:root {
  --forest: #1a3a2a;
  --sage: #4a7c5c;
  --mint: #7db892;
  --cream: #f5f0e8;
  --sand: #e8dfd2;
  --warm-white: #faf8f5;
  --charcoal: #2d2d2d;
  --muted: #6b6b6b;
  --accent-gold: #c4a35a;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 58, 42, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-leaf {
  font-size: 1.4rem;
  color: var(--sage);
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ── HERO ── */
.hero {
  padding: 10rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-accent {
  color: var(--sage);
}
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
}
.hero-card {
  padding: 1.8rem 2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}
.hero-card:hover {
  transform: translateX(8px);
}
.card-1 {
  background: var(--forest);
  color: var(--cream);
  margin-left: 0;
}
.card-2 {
  background: var(--sage);
  color: white;
  margin-left: 2rem;
}
.card-3 {
  background: var(--sand);
  color: var(--forest);
  margin-left: 4rem;
}
.card-icon {
  font-size: 1.6rem;
}
.card-label {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 2rem;
  background: var(--forest);
  color: var(--cream);
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.services-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.services-header p {
  font-size: 1.1rem;
  color: var(--mint);
  font-weight: 300;
  max-width: 550px;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-block {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(125, 184, 146, 0.15);
  transition: background 0.3s ease;
}
.service-block:hover {
  background: rgba(255, 255, 255, 0.1);
}
.service-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--mint);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.service-block h3 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
  font-weight: 300;
}

/* ── WHY ── */
.why {
  padding: 6rem 2rem;
  background: var(--cream);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.why-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--forest);
  letter-spacing: -0.03em;
  line-height: 1.15;
  position: sticky;
  top: 6rem;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.why-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(26, 58, 42, 0.1);
}
.why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.why-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--sage);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.why-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--warm-white);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-inner h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.closing-inner p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.closing-cities {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--sage);
  letter-spacing: 0.02em;
}
.city-dot {
  color: var(--sand);
}

/* ── FOOTER ── */
.footer {
  padding: 2.5rem 2rem;
  background: var(--forest);
  color: var(--mint);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(125, 184, 146, 0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 4rem;
    gap: 3rem;
  }
  .hero-visual {
    padding-left: 0;
  }
  .card-2 { margin-left: 1rem; }
  .card-3 { margin-left: 2rem; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-left h2 {
    position: static;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .nav-tagline {
    display: none;
  }
  .closing {
    padding: 5rem 1.5rem;
  }
}