/* Typography */
:root {
  --bg: #F8F5EF;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #C84B05;
  --accent-light: #FFF3E8;
  --card-bg: #FFFFFF;
  --border: #E8E4DC;
  --step-number: #C84B05;
}

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

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

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.1;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 64px;
  align-items: center;
}

.hero-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.line-small {
  font-size: 0.5em;
  font-weight: 300;
  color: var(--fg-muted);
  font-style: italic;
}

.line-large {
  color: var(--fg);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Visual stack */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.visual-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 280px;
}

.stack-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(28,25,23,0.06);
}

.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.card-stat {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.card-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* Problem */
.problem {
  background: var(--fg);
  color: #F8F5EF;
  padding: 80px 48px;
}

.problem .section-label { color: #C84B05; }

.problem-headline {
  font-size: clamp(28px, 4vw, 48px);
  color: #F8F5EF;
  max-width: 640px;
  margin-bottom: 56px;
}

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

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 15px;
  color: #A8A29E;
  line-height: 1.65;
}

/* How */
.how {
  padding: 80px 48px;
}

.how-headline {
  font-size: clamp(24px, 3vw, 40px);
  max-width: 560px;
  margin-bottom: 56px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Services */
.services {
  background: var(--card-bg);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-headline {
  font-size: clamp(24px, 3vw, 40px);
  max-width: 480px;
  margin-bottom: 48px;
}

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

.service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.service-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Pricing */
.pricing {
  padding: 80px 48px;
}

.pricing-headline {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--fg);
  color: #F8F5EF;
  border-radius: 16px;
  padding: 48px;
  max-width: 560px;
}

.tier-name {
  font-size: 14px;
  color: #A8A29E;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.tier-price {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  color: #F8F5EF;
  line-height: 1;
  margin-bottom: 8px;
}

.tier-period {
  font-size: 20px;
  color: #A8A29E;
}

.tier-tag {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 32px;
}

.tier-divider {
  height: 1px;
  background: #333;
  margin-bottom: 32px;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.tier-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #D6D3D1;
}

.tier-feature svg {
  color: var(--accent);
  flex-shrink: 0;
}

.tier-note {
  font-size: 13px;
  color: #78716C;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 80px 48px;
}

.closing-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.closing-headline {
  font-size: clamp(24px, 3.5vw, 44px);
  color: #FFFFFF;
  max-width: 700px;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}

.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Footer */
.footer {
  background: var(--fg);
  padding: 48px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: #F8F5EF;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: #78716C;
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: #57534E;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; }
  .hero-visual { justify-content: flex-start; }
  .visual-stack { width: 100%; }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .how { padding: 64px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-card { padding: 32px 24px; }
  .closing { padding: 64px 24px; }
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .tier-price { font-size: 48px; }
  .stat-number { font-size: 44px; }
}