@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* === TOKENS === */
:root {
  --cream: #F9F7F2;
  --cream-dark: #EDE9E0;
  --forest: #2A5C35;
  --forest-light: #3A7A48;
  --charcoal: #1C1C1C;
  --warm-gray: #6B6560;
  --amber: #D4840A;
  --amber-light: #F0B84A;
  --red: #C45C3A;
  --off-white: #FEFCF9;
  --border: #DDD8CF;
}

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

/* === BASE === */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.15rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
p { color: var(--warm-gray); line-height: 1.75; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 400;
}

/* === HERO === */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 3rem;
  right: -4rem;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212,132,10,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,132,10,0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  width: fit-content;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}
.hero-headline {
  max-width: 780px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.hero-headline em {
  color: var(--forest);
  font-style: italic;
}
.hero-sub {
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  font-weight: 300;
}

/* === HERO STATS === */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  max-width: 640px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--warm-gray);
  line-height: 1.4;
  max-width: 110px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* === PROBLEM === */
.problem {
  background: var(--off-white);
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.problem-heading {
  max-width: 820px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 4rem;
  font-style: italic;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.problem-card {
  background: var(--off-white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.problem-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
}
.problem-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--warm-gray);
}
.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,132,10,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.problem-quote {
  max-width: 680px;
  margin: 4rem auto 0;
  text-align: center;
}
.problem-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.problem-quote cite {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* === SERVICES === */
.services {
  max-width: 1120px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.services-header {
  margin-bottom: 3.5rem;
}
.services-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.services-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  max-width: 560px;
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.service-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--forest);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.service-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.service-item p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--warm-gray);
}

/* === HOW === */
.how {
  background: var(--charcoal);
  color: var(--cream);
  padding: 7rem 2rem;
}
.how .how-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
}
.how .how-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  max-width: 640px;
  line-height: 1.2;
  margin-bottom: 4rem;
}
.how-steps {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: rgba(212,132,10,0.5);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}
.step-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.step-body p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(249,247,242,0.6);
}

/* === PRICING === */
.pricing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.pricing-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.pricing-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 3.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  background: white;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--forest);
  box-shadow: 0 0 0 1px var(--forest), 0 8px 32px rgba(42,92,53,0.1);
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 2rem;
}
.pricing-amount span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-gray);
}
.pricing-plus {
  font-size: 1.6rem !important;
  color: var(--warm-gray) !important;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--warm-gray);
  padding-left: 1.5rem;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
}
.pricing-note {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--warm-gray);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--forest);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}
.manifesto-ornament {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}
.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  line-height: 1.5;
  max-width: 840px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.manifesto-sub {
  font-size: 1rem;
  color: rgba(249,247,242,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* === CLOSING === */
.closing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 7rem 2rem;
  text-align: center;
}
.closing-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.tag {
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.82rem;
  color: var(--warm-gray);
  background: white;
  transition: border-color 0.2s, color 0.2s;
}
.closing-rule {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 400px;
  margin: 0 auto;
}
.rule-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.rule-text {
  font-size: 0.82rem;
  color: var(--amber);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
  background: var(--off-white);
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.footer-sub {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}
.footer-meta {
  font-size: 0.75rem;
  color: rgba(107,101,96,0.6);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .problem-grid,
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .hero { padding: 5rem 1.5rem 3.5rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .problem-grid,
  .services-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 0.5rem; }
  .step-num { font-size: 2rem; min-width: auto; }
  .nav-tagline { display: none; }
  .problem-heading br { display: none; }
}