:root {
  --bg: #f7f5f0;
  --bg-warm: #efeade;
  --fg: #2c2c2a;
  --fg-soft: #5a5a56;
  --accent: #4a7c59;
  --accent-light: #6b9e78;
  --accent-pale: #dce8df;
  --cream: #faf8f3;
  --gold: #c4a265;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(165deg, var(--cream) 0%, var(--bg-warm) 50%, var(--accent-pale) 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid rgba(74, 124, 89, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--fg);
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Botanical decoration */
.hero-botanical {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.leaf {
  position: absolute;
  border-radius: 50% 0;
  opacity: 0.07;
  background: var(--accent);
}

.leaf-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -60px;
  transform: rotate(25deg);
}

.leaf-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 15%;
  transform: rotate(-15deg);
  opacity: 0.05;
}

.leaf-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: -40px;
  transform: rotate(45deg);
  opacity: 0.04;
}

/* PHILOSOPHY */
.philosophy {
  padding: 6rem 2rem;
  background: var(--cream);
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-label,
.services-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.philosophy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.philosophy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-soft);
  max-width: 600px;
}

.philosophy-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-soft);
  letter-spacing: 0.03em;
}

/* SERVICES */
.services {
  padding: 6rem 2rem;
  background: var(--bg);
}

.services-inner {
  max-width: 960px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 124, 89, 0.08);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-soft);
}

/* AREAS */
.areas {
  padding: 5rem 2rem;
  background: var(--accent);
  color: white;
  text-align: center;
}

.areas-inner {
  max-width: 700px;
  margin: 0 auto;
}

.areas h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.areas-subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.area-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  text-align: center;
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.closing p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-soft);
}

/* FOOTER */
.site-footer {
  padding: 2.5rem 2rem;
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.4rem;
}

.footer-details {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .philosophy-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .philosophy, .services, .closing {
    padding: 4rem 1.5rem;
  }

  .areas {
    padding: 3.5rem 1.5rem;
  }

  .leaf-1 { width: 180px; height: 180px; }
  .leaf-2 { width: 120px; height: 120px; }
  .leaf-3 { display: none; }
}