/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fafaf5;
  --bg-dark: #0f1a12;
  --fg: #1a2e1f;
  --fg-muted: #5a7560;
  --accent: #d4a017;
  --accent-warm: #e8b93a;
  --card-bg: #ffffff;
  --border: #dde8de;
  --green-deep: #1a3a2a;
  --green-mid: #2d5a3d;
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--fg);
}

/* === NAV === */
.site-nav {
  padding: 20px 48px;
  display: flex;
  align-items: center;
}

.wordmark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

/* === HERO === */
.hero {
  padding: 80px 48px 72px;
  background: var(--bg);
}

.hero-inner {
  max-width: 860px;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.eyebrow-pill {
  display: inline-block;
  background: var(--green-deep);
  color: #e8f5e9;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.hero-headline {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--green-deep);
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === MARQUEE === */
.marquee-strip {
  background: var(--green-deep);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  padding: 0 8px;
}

.marquee-track .sep {
  color: var(--accent);
  padding: 0 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === SECTION LABEL === */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* === WHAT === */
.what {
  padding: 96px 48px;
  background: #f4f7f2;
}

.what-inner { max-width: 900px; }

.what-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 56px;
  max-width: 500px;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.what-item h3 {
  font-size: 1.15rem;
  margin: 16px 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--green-deep);
}

.what-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.what-icon {
  width: 48px;
  height: 48px;
  background: var(--green-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* === WHO === */
.who {
  padding: 96px 48px;
  background: var(--bg);
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
}

.who-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
}

.who-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.persona-block {
  background: #f4f7f2;
  border-left: 3px solid var(--accent);
  padding: 28px 28px 28px 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px;
}

.persona-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 12px;
}

.persona-attr {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === PACKAGES === */
.packages {
  padding: 96px 48px;
  background: var(--green-deep);
}

.packages-inner { max-width: 900px; }

.packages .section-label { color: var(--accent); }

.packages-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fafaf5;
  margin-bottom: 48px;
}

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

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
}

.pricing-card.featured {
  background: rgba(212,160,23,0.12);
  border-color: var(--accent);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

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

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fafaf5;
  margin-bottom: 28px;
  line-height: 1;
}

.card-price span {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

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

.card-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.pricing-note {
  margin-top: 36px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* === PROOF === */
.proof {
  padding: 96px 48px;
  background: #f4f7f2;
}

.proof-inner { max-width: 900px; }

.proof-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 56px;
  max-width: 520px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.proof-stat {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 10px;
}

.proof-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.proof-quote {
  background: white;
  border-radius: 16px;
  padding: 36px 40px;
  border: 1px solid var(--border);
}

.proof-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 16px;
}

.proof-quote cite {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: normal;
}

/* === TOOLS === */
.tools {
  padding: 80px 48px;
  background: var(--bg);
  text-align: center;
}

.tools-inner { max-width: 700px; margin: 0 auto; }

.tools-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 40px;
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.tool-chip {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
}

.tools-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 16px;
}

/* === CLOSING === */
.closing {
  padding: 100px 48px;
  background: var(--bg-dark);
}

.closing-inner { max-width: 700px; }

.closing-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: #fafaf5;
  margin-bottom: 28px;
  line-height: 1.2;
}

.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
}

/* === FOOTER === */
.site-footer {
  padding: 40px 48px;
  background: #0a120c;
}

.footer-inner {}

.footer-wordmark {
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }

  .hero { padding: 48px 24px 56px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { display: none; }

  .what, .who, .packages, .proof, .tools, .closing { padding: 64px 24px; }

  .what-grid,
  .pricing-grid,
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }

  .who-inner { grid-template-columns: 1fr; gap: 40px; }

  .proof-quote { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .card-price { font-size: 2.2rem; }
  .proof-stat { font-size: 2.4rem; }
}