:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DE;
  --green: #2C5F2E;
  --green-light: #3D7A40;
  --green-dark: #1E4520;
  --gold: #B8933A;
  --ink: #1A1A18;
  --ink-muted: #4A4A47;
  --white: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

/* NAV */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(44, 95, 46, 0.12);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 6rem 2.5rem 5rem;
  background: var(--cream);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 2rem;
  border-left: 2px solid var(--green);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* SECTION LABEL */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* HOW */
.how {
  padding: 6rem 2.5rem;
  background: var(--white);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-item {
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  background: var(--cream);
}
.how-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
}
.how-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.how-item p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing {
  padding: 6rem 2.5rem;
  background: var(--green);
  color: var(--white);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing .section-label {
  color: rgba(255,255,255,0.6);
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3rem;
  max-width: 560px;
  line-height: 1.2;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-card-featured {
  background: rgba(255,255,255,0.13);
  border-color: var(--gold);
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.pricing-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  min-height: 3em;
}
.pricing-amount {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.pricing-setup {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.pricing-sep {
  display: none;
}
.pricing-monthly {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.pricing-monthly span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.pricing-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
}

/* PROCESS */
.process {
  padding: 6rem 2.5rem;
  background: var(--cream-dark);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2.5rem;
}
.process-step {
  display: flex;
  gap: 1.5rem;
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 7rem 2.5rem;
  background: var(--green-dark);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* FOOTER */
.footer {
  padding: 2.5rem;
  background: var(--ink);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { padding-left: 0; border-left: none; border-top: 2px solid var(--green); padding-top: 2rem; flex-direction: row; flex-wrap: wrap; }
  .hero-stat { min-width: 120px; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .nav-inner { flex-direction: column; gap: 0.25rem; }
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .how, .pricing, .process, .closing { padding: 4rem 1.5rem; }
  .nav { padding: 1.25rem 1.5rem; }
}