:root {
  --bg: #faf8f5;
  --bg-alt: #f0ebe3;
  --fg: #1a1714;
  --fg-muted: #6b6259;
  --accent: #c4501a;
  --accent-warm: #e8834a;
  --accent-sand: #e9ddd0;
  --ink: #2c2420;
}

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

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

/* Header */
.site-header {
  padding: 20px 40px;
  border-bottom: 1px solid var(--accent-sand);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.meta-divider { color: var(--accent-sand); }

.hero-accent-block {
  background: var(--accent);
  border-radius: 12px;
  padding: 36px 32px;
  align-self: start;
  margin-top: 8px;
}
.accent-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 16px;
}
.accent-attr {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* How */
.how {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.how-header { max-width: 1100px; margin: 0 auto 56px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-sand);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* What */
.what { padding: 80px 40px; }
.what-content { max-width: 1100px; margin: 0 auto; }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 60px;
  margin-top: 48px;
}
.what-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.what-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.what-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.what-item-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Pricing */
.pricing {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.pricing-header { max-width: 1100px; margin: 0 auto 48px; }
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--accent-sand);
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  position: relative;
}
.pricing-card-inner { padding: 32px 28px; }
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.plan-price {
  margin-bottom: 10px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ink);
}
.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-left: 2px;
}
.plan-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-features li {
  font-size: 0.85rem;
  color: var(--fg);
  padding-left: 16px;
  position: relative;
}
.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Closing */
.closing {
  background: var(--ink);
  padding: 80px 40px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--accent-sand);
  padding: 32px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 40px; }
  .hero-accent-block { margin-top: 0; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .what-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .site-header, .how, .what, .pricing, .closing, .site-footer { padding-left: 24px; padding-right: 24px; }
  .section-heading { max-width: 100%; }
}