:root {
  --bg: #FAF6EF;
  --bg-warm: #F3EEE4;
  --green-deep: #1E2B0F;
  --green-mid: #2E4218;
  --green-sage: #8A9E6E;
  --amber: #C8873A;
  --amber-light: #E8B96A;
  --text: #2A2218;
  --text-muted: #6B6050;
  --border: #D8CEBC;
  --border-light: #EDE8DE;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--green-deep);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}

/* Hero CSS Art - Meadow Canvas */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.meadow-canvas {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(160deg, #c8dfb2 0%, #8aab6a 35%, #d4a84b 60%, #c8873a 80%, #a06828 100%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,43,15,0.25), 0 4px 12px rgba(30,43,15,0.15);
}

.bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.bloom-1 { width: 22px; height: 22px; background: #fff8e1; top: 25%; left: 18%; opacity: 0.85; }
.bloom-2 { width: 16px; height: 16px; background: #ffe082; top: 38%; left: 35%; opacity: 0.9; }
.bloom-3 { width: 28px; height: 28px; background: #f8bbd9; top: 20%; left: 60%; opacity: 0.7; }
.bloom-4 { width: 20px; height: 20px; background: #fff8e1; top: 55%; left: 72%; opacity: 0.8; }
.bloom-5 { width: 14px; height: 14px; background: #e1bee7; top: 45%; left: 50%; opacity: 0.75; }
.bloom-6 { width: 18px; height: 18px; background: #ffe082; top: 70%; left: 28%; opacity: 0.85; }

.grass-blade {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}
.g1 { width: 4px; height: 70px; left: 12%; background: linear-gradient(to top, #2e4218, #4a6b2a); transform: rotate(-8deg); transform-origin: bottom center; }
.g2 { width: 3px; height: 55px; left: 20%; background: linear-gradient(to top, #3a5520, #5c8538); transform: rotate(5deg); }
.g3 { width: 5px; height: 85px; left: 45%; background: linear-gradient(to top, #243117, #3d5c22); transform: rotate(-4deg); }
.g4 { width: 4px; height: 60px; left: 62%; background: linear-gradient(to top, #2e4218, #4a6b2a); transform: rotate(7deg); }
.g5 { width: 3px; height: 75px; left: 78%; background: linear-gradient(to top, #324820, #5a8040); transform: rotate(-6deg); }

/* PROOF */
.proof {
  background: var(--green-deep);
  color: #F5F0E8;
  padding: 80px 40px;
}
.proof-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
}
.proof-card {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.proof-card:last-child { border-right: none; }
.proof-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 10px;
}
.proof-desc {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
}
.proof-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
  margin-top: 28px;
}

/* PROCESS */
.process {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 60px;
  max-width: 480px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--border);
  line-height: 1;
  padding-top: 2px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing {
  background: var(--bg-warm);
  padding: 100px 40px;
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.pricing-subhead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.pricing-block {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 52px;
}
.pricing-rate {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-light);
}
.pricing-amount {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1;
}
.pricing-unit {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}
.price-line:last-of-type { border-bottom: none; }
.price-line span:first-child { color: var(--text); }
.price-line span:last-child { color: var(--green-mid); font-weight: 600; }
.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 24px;
  text-align: center;
}
.pricing-comparison {
  max-width: 560px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-item {
  padding: 20px 24px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.compare-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.compare-cost {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

/* CLOSING */
.closing {
  background: var(--green-deep);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: #F5F0E8;
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-headline em {
  color: var(--amber-light);
  font-style: italic;
}
.closing-body {
  font-size: 1rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.8;
  margin-bottom: 48px;
}
.closing-signature {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.closing-signature > span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #F5F0E8;
}
.closing-location {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  padding: 36px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
}
.footer-tagline {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 40px;
    min-height: auto;
  }
  .hero-visual { order: -1; }
  .meadow-canvas { max-width: 320px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card:nth-child(2) { border-right: none; }
  .proof-card:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.12); }
  .proof-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); border-right: none; }
  .process-steps { grid-template-columns: 1fr; }
  .step { padding: 28px; }
  .pricing-block { padding: 36px 28px; }
  .pricing-comparison { grid-template-columns: 1fr; }
  .closing, .process, .pricing { padding: 70px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .section-headline { font-size: 1.8rem; }
}