:root {
  --green: #1a3d2b;
  --green-mid: #2d5c42;
  --green-light: #3d7a58;
  --amber: #d4a843;
  --amber-light: #e8c46a;
  --cream: #f5f2ed;
  --white: #ffffff;
  --charcoal: #1a1a18;
  --gray: #6b6b67;
  --gray-light: #e8e6e0;
}

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

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,61,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 24px;
  display: inline-block;
  border: 1px solid var(--green-mid);
  padding: 6px 14px;
  border-radius: 2px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--green);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
  margin: 0 32px;
  flex-shrink: 0;
}

.hero-accent {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.accent-ring {
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.accent-ring-1 { width: 280px; height: 280px; opacity: 0.4; }
.accent-ring-2 { width: 400px; height: 400px; opacity: 0.2; }

.accent-block {
  background: var(--green);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.accent-block-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.accent-block-time {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

/* ── PROOF ── */
.proof {
  background: var(--green);
  padding: 48px 48px;
}

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

.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}

.proof-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.proof-icon {
  font-size: 28px;
  line-height: 1;
}

/* ── HOW ── */
.how {
  padding: 100px 48px;
  background: var(--cream);
}

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

.how-header {
  margin-bottom: 72px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 12px;
}

.how h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--green);
  line-height: 1.18;
  max-width: 600px;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.step { position: relative; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── PACKAGES ── */
.packages {
  padding: 100px 48px;
  background: var(--white);
}

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

.packages-header {
  margin-bottom: 60px;
}

.packages h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--green);
  line-height: 1.18;
  max-width: 560px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--cream);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
}

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

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

.pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

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

.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray);
}

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

.pricing-tag {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.5;
  min-height: 40px;
}

.pricing-card.featured .pricing-tag { color: rgba(255,255,255,0.7); }

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

.pricing-features li {
  font-size: 14px;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}

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

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: 12px;
  top: 1px;
}

.pricing-card.featured .pricing-features li::before { color: var(--amber); }

/* ── CLOSING ── */
.closing {
  padding: 100px 48px 80px;
  background: var(--cream);
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
}

.closing-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing-content p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 540px;
  font-weight: 300;
}

.closing-rule {
  width: 80px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 20px;
}

.closing-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--gray-light);
  background: var(--cream);
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray);
}

.footer-meta {
  font-size: 13px;
  color: var(--gray);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 60px 28px 80px; }
  .hero-accent { display: none; }
  .hero-headline { font-size: 40px; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .proof-scroll { gap: 28px; }
  .packages, .how, .closing { padding: 60px 28px; }
  .proof { padding: 40px 28px; }
  .footer { padding: 32px 28px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .hero-headline { font-size: 32px; }
  .hero-sub { font-size: 16px; }
}