:root {
  --bg: #f7f5f0;
  --bg-alt: #eeece7;
  --fg: #111110;
  --fg-muted: #6b6963;
  --accent: #d97706;
  --accent-dark: #b45309;
  --border: #d8d5ce;
  --card-bg: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Nav */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* Section base */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

/* Hero */
.hero {
  padding: 100px 0 96px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
}
.hero-price {
  font-weight: 600;
  color: var(--fg);
}
.hero-divider { color: var(--border); }

/* What's Included */
.whats-included {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.included-item {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
}
.included-item:first-child { padding-left: 0; }
.included-item:last-child { border-right: none; padding-left: 40px; }
.included-item:not(:first-child):not(:last-child) { padding-left: 40px; }
.included-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  margin-bottom: 16px;
  line-height: 1;
}
.included-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.included-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Trades Focus */
.trades-focus {
  padding: 96px 0;
  background: var(--fg);
  color: var(--bg);
}
.trades-focus .section-label { color: rgba(247,245,240,0.45); }
.trades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.trades-headline {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.trades-text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247,245,240,0.65);
  margin-bottom: 16px;
}
.workflows-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.4);
  margin-bottom: 20px;
}
.workflows-list {
  list-style: none;
}
.workflows-list li {
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247,245,240,0.1);
  color: rgba(247,245,240,0.8);
}
.workflows-list li:last-child { border-bottom: none; }

/* Pricing */
.pricing {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 56px;
  max-width: 700px;
}
.pricing-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.pricing-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 28px;
}
.pricing-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.detail-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.detail-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Proof */
.proof {
  padding: 96px 0;
  background: var(--bg-alt);
}
.proof-card {
  max-width: 680px;
}
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}
.proof-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-name {
  font-weight: 600;
  font-size: 15px;
}
.proof-role {
  font-size: 14px;
  color: var(--fg-muted);
}
.proof-role::before { content: '— '; }

/* Closing */
.closing {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}

/* Nav CTA */
.nav-book-btn {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-book-btn:hover { background: var(--accent-dark); }

/* CTA Button */
.cta-btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.cta-btn-primary:hover { background: var(--accent-dark); }

/* Footer */
.footer {
  padding: 48px 0;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .included-grid { grid-template-columns: 1fr; }
  .included-item { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .included-item:last-child { border-bottom: none; padding-left: 0; }
  .included-item:not(:first-child) { padding-left: 0; }
  .trades-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-details { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .whats-included, .trades-focus, .pricing, .proof, .closing { padding: 64px 0; }
}

@media (max-width: 480px) {
  .section-inner, .hero-inner, .nav-inner { padding: 0 20px; }
  .hero-headline { font-size: 32px; }
  .trades-headline { font-size: 28px; }
}