:root {
  --bg: #f7f4ef;
  --bg-alt: #ece9e2;
  --fg: #1c1a17;
  --fg-muted: #6b6557;
  --accent: #3a6b35;
  --accent-warm: #c8873a;
  --patch-green: #2d4f22;
  --patch-amber: #e8a93a;
  --border: #d4cfc6;
  --card-bg: #fff;
}

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

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

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }
.nav-home-link { text-decoration: none; color: var(--accent); }

/* Hero */
.hero {
  padding: 5rem 2.5rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}
.hero-rule {
  margin-top: 3rem;
  height: 1px;
  background: var(--border);
}

/* Patch */
.patch-outer {
  width: 110px;
  height: 110px;
  background: var(--patch-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(45, 79, 34, 0.25);
  position: relative;
}
.patch-outer::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--patch-amber);
  border-radius: 50%;
}
.patch-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.patch-star {
  color: var(--patch-amber);
  font-size: 1.4rem;
  line-height: 1;
}
.patch-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1.3;
}

/* Stats */
.stats {
  background: var(--accent);
  padding: 2.5rem 2.5rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Services */
.services {
  padding: 5rem 2.5rem;
  background: var(--bg);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: var(--fg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Philosophy */
.philosophy {
  background: var(--bg-alt);
  padding: 5rem 2.5rem;
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 0.5rem;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 1rem;
}
.quote-attr {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
}
.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value {
  border-left: 3px solid var(--accent-warm);
  padding-left: 1.25rem;
}
.value-label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.value-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Testimonials */
.testimonials {
  padding: 5rem 2.5rem;
  background: var(--bg);
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.testimonial-stars {
  color: var(--accent-warm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 1rem;
}
.testimonial-name {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: normal;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 5rem 2.5rem;
  text-align: center;
}
.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
}
.badge-star {
  color: var(--patch-amber);
  font-size: 1rem;
}
.badge-text {
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.05em;
}

/* Footer */
.footer {
  background: var(--patch-green);
  padding: 2.5rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}
.footer-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.footer-info {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  .nav-cta { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }
  .patch-outer {
    width: 80px;
    height: 80px;
    margin-top: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-inner {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .closing-headline {
    font-size: 1.8rem;
  }
}