/* Typography */
:root {
  --bg: #FDFAF5;
  --bg-alt: #F4EFE6;
  --green: #2D5016;
  --green-light: #3D6B1E;
  --amber: #B87333;
  --amber-light: #D4894A;
  --burgundy: #6B2D2D;
  --text: #1C1C1C;
  --text-muted: #5A5A5A;
  --cream: #FAF7F2;
  --border: #E2D9CA;
}

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

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

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

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 48px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(45, 80, 22, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 80%, rgba(184, 115, 51, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  background: var(--amber);
  color: white;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--amber-light); }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-stat-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
}
.hero-stat-card--accent {
  background: var(--green);
  border-color: var(--green);
}
.hero-stat-card--accent .stat-number { color: white; }
.hero-stat-card--accent .stat-label { color: rgba(255,255,255,0.75); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  min-width: 80px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Problem */
.problem {
  background: var(--green);
  padding: 80px 48px;
}
.problem-inner { max-width: 900px; margin: 0 auto; }
.problem-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: white;
  font-weight: 600;
  margin-bottom: 48px;
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding-left: 24px;
  line-height: 1.4;
}
.problem-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}
.problem-icon { color: var(--amber); font-size: 0.9rem; flex-shrink: 0; margin-top: 3px; }
.problem-resolve {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 500;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* Section Title */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* How It Works */
.howitworks { padding: 100px 48px; background: var(--bg); }
.howitworks-inner { max-width: 900px; margin: 0 auto; }
.howitworks .section-title { text-align: center; margin-bottom: 64px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--cream);
  border: 2px solid var(--amber);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.step-body { padding-bottom: 40px; }
.step-title { font-size: 1.3rem; color: var(--green); margin-bottom: 8px; font-weight: 700; }
.step-desc { color: var(--text-muted); line-height: 1.7; }
.step-connector {
  width: 2px;
  height: 32px;
  background: var(--border);
  margin-left: 27px;
}

/* Assessment */
.assessment { padding: 100px 48px; background: var(--bg-alt); }
.assessment-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.assessment-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.assessment-fields { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.assessment-fields li { font-size: 0.95rem; color: var(--text-muted); padding-left: 20px; position: relative; }
.assessment-fields li::before { content: '—'; position: absolute; left: 0; color: var(--amber); }
.assessment-cta {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.assessment-cta:hover { background: var(--green-light); }
.sample-plan-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.sample-plan-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(45, 80, 22, 0.06);
}
.sample-context {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.sample-output { display: flex; flex-direction: column; gap: 20px; }
.sample-section { border-left: 2px solid var(--border); padding-left: 16px; }
.sample-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}
.sample-section ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sample-section li { font-size: 0.875rem; color: var(--text); }
.sample-section p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Pricing */
.pricing { padding: 100px 48px; background: var(--bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing .section-title { text-align: center; margin-bottom: 8px; }
.pricing-sub { text-align: center; color: var(--text-muted); margin-bottom: 56px; font-size: 1.05rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.plan {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.plan--featured {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.plan--featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-header { margin-bottom: 24px; }
.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.plan--featured .plan-name { color: white; }
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
}
.plan--featured .plan-price { color: white; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-size: 0.85rem; }
.plan--featured .plan-features li::before { color: var(--amber-light); }

/* Monthly */
.pricing-monthly { border-top: 1px solid var(--border); padding-top: 56px; }
.monthly-title {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 32px;
  text-align: center;
  font-weight: 700;
}
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.monthly-plan {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.monthly-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.monthly-price {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
}
.monthly-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Sample Plan Components */
.sampleplan { padding: 100px 48px; background: var(--bg-alt); }
.sampleplan-inner { max-width: 1200px; margin: 0 auto; }
.sampleplan .section-title { text-align: center; margin-bottom: 8px; }
.sampleplan-sub { text-align: center; color: var(--text-muted); margin-bottom: 56px; font-size: 1rem; }
.plan-components {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.component {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.component:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.07);
}
.component-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 10px;
}
.component-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Legacy */
.legacy {
  background: var(--burgundy);
  padding: 100px 48px;
}
.legacy-inner { max-width: 900px; margin: 0 auto; }
.legacy-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 16px;
  font-weight: 700;
}
.legacy-lead { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 48px; line-height: 1.7; }
.legacy-items { display: flex; flex-direction: column; gap: 0; }
.legacy-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.legacy-item strong { color: rgba(255,255,255,0.9); font-size: 1rem; font-weight: 600; }
.legacy-item span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Closing */
.closing { padding: 100px 48px; background: var(--bg); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub { color: var(--text-muted); font-size: 1.1rem; }

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 48px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}
.footer-desc { font-size: 0.9rem; color: var(--text-muted); }
.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 60px 24px 60px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .problem { padding: 60px 24px; }
  .howitworks { padding: 60px 24px; }
  .assessment { padding: 60px 24px; }
  .assessment-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .monthly-grid { grid-template-columns: 1fr; }
  .sampleplan { padding: 60px 24px; }
  .plan-components { grid-template-columns: 1fr; }
  .legacy { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 40px 24px 32px; }
}