/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #1B3A2F;
  --green-mid: #2D5A47;
  --green-light: #3D7A5F;
  --parchment: #F5F0E8;
  --parchment-dark: #EDE8DC;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --burgundy: #6B2D3B;
  --text-dark: #1A1A18;
  --text-mid: #4A4A44;
  --text-light: #7A7A70;
  --white: #FFFFFF;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--text-dark);
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green-deep);
  text-align: center;
  margin-bottom: 3rem;
}

/* ─── Navigation ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 58, 47, 0.1);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Hero ─── */
.hero {
  background: var(--green-deep);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
}

/* Garden illustration (pure CSS) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.garden-illustration {
  width: 280px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.garden-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, #2D5A47, #3D7A5F);
  border-radius: 40px 40px 0 0;
}

.garden-stem {
  position: absolute;
  bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stem-1 { left: 50%; transform: translateX(-50%); }
.stem-2 { left: 30%; }
.stem-3 { right: 30%; }

.garden-stem::before {
  content: '';
  width: 3px;
  height: 80px;
  background: linear-gradient(to top, #5a8a6f, #8ab89a);
  border-radius: 2px;
}

.leaf {
  width: 28px;
  height: 18px;
  background: #5a8a6f;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
}

.leaf-l { left: -22px; top: 10px; transform: rotate(-30deg); }
.leaf-r { right: -22px; top: 10px; transform: rotate(30deg); }

.bloom {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #C9A84C 30%, #E8C96A 60%, transparent 100%);
  position: absolute;
  top: -8px;
}

.bloom-sm { width: 16px; height: 16px; top: -4px; }

.bird {
  position: absolute;
  width: 14px;
  height: 6px;
  border-radius: 50% 50% 0 0;
  background: var(--gold-light);
  opacity: 0.6;
}

.bird::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 8px;
  height: 6px;
  border-radius: 50% 50% 0 0;
  background: var(--gold-light);
  transform: scaleX(-1);
}

.bird-1 { top: 30px; right: 60px; }
.bird-2 { top: 50px; left: 40px; transform: scaleX(-1); }

/* ─── Proof / Stats Bar ─── */
.proof {
  background: var(--green-mid);
  color: var(--white);
  padding: 2.5rem 2rem;
}

.proof-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.proof-stat {
  text-align: center;
}

.proof-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.proof-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 5rem 2rem;
  background: var(--white);
}

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Features ─── */
.features {
  padding: 5rem 2rem;
  background: var(--parchment);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(27, 58, 47, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 58, 47, 0.1);
}

.feature-icon {
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── Pricing ─── */
.pricing {
  padding: 5rem 2rem;
  background: var(--white);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--parchment);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid rgba(27, 58, 47, 0.1);
  position: relative;
}

.pricing-card-featured {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-tier {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.pricing-card-featured .pricing-tier {
  color: var(--gold-light);
}

.pricing-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pricing-card-featured .pricing-price {
  color: var(--white);
}

.price-dollar {
  font-size: 1.6rem;
  vertical-align: super;
  font-weight: 400;
}

.price-dec {
  font-size: 1.8rem;
  font-weight: 400;
}

.price-annual {
  font-size: 0.8rem;
  opacity: 0.7;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.pricing-card-featured .pricing-period {
  color: rgba(255,255,255,0.6);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

.pricing-card-featured .pricing-features li {
  color: rgba(255,255,255,0.8);
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 5rem 2rem;
  background: var(--parchment-dark);
}

.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.manifesto-body {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ─── Closing ─── */
.closing {
  padding: 5rem 2rem;
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
}

.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.closing-sub {
  color: var(--gold-light);
  font-size: 1.05rem;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--green-mid);
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ─── Mobile Responsive ─── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-visual {
    display: none;
  }

  .proof-inner {
    gap: 1.5rem;
  }

  .proof-num {
    font-size: 1.8rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    order: -1;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1.5rem 2.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .proof-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .proof-divider {
    width: 50px;
    height: 1px;
  }

  .step {
    grid-template-columns: 44px 1fr;
  }
}