:root {
  --bg: #F7F3EC;
  --bg-alt: #EDE6DA;
  --fg: #2C1810;
  --fg-muted: #6B4F3A;
  --accent: #B85C1A;
  --accent-dark: #8B4513;
  --sage: #6B7D5E;
  --sage-light: #8A9E7A;
  --border: #D4C4B0;
  --white: #FFFFFF;
  --shadow: rgba(44, 24, 16, 0.12);
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* NAV */
.nav {
  background: var(--fg);
  color: var(--bg);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(247,243,236,0.5);
  letter-spacing: 0.04em;
}

/* HERO */
.hero {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 40px 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,92,26,0.15) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--bg);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-lede {
  font-size: 17px;
  color: rgba(247,243,236,0.72);
  max-width: 440px;
  line-height: 1.65;
}
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.hero-card {
  background: var(--bg);
  color: var(--fg);
  border-radius: 16px;
  padding: 28px 32px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.hero-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-card-unit {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-muted);
}
.hero-card-meta {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
  margin-bottom: 14px;
}
.hero-card-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 14px;
}
.hero-card-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--fg-muted);
  padding: 3px 8px;
  border-radius: 4px;
}

/* PROOF */
.proof {
  background: var(--bg-alt);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
  text-align: center;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.proof-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 30px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px var(--shadow);
}
.proof-quote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.proof-attr {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.proof-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.proof-role {
  font-size: 12px;
  color: var(--fg-muted);
}

/* PILLARS */
.pillars {
  background: var(--bg);
  padding: 96px 40px;
}
.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}
.pillars-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.pillars-sub {
  font-size: 17px;
  color: var(--fg-muted);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
}
.pillar-icon {
  color: var(--accent);
  margin-bottom: 14px;
}
.pillar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROCESS */
.process {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 40px;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 56px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(247,243,236,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: rgba(247,243,236,0.6);
  line-height: 1.65;
}
.step-connector {
  width: 48px;
  height: 2px;
  background: rgba(247,243,236,0.15);
  margin: 36px 24px 0;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 28px;
}

/* PRICING */
.pricing {
  background: var(--bg-alt);
  padding: 96px 40px;
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  text-align: center;
}
.pricing-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px var(--shadow);
  position: relative;
}
.price-card-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(184,92,26,0.18);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.price-period {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-muted);
}
.price-tag {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 18px;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 96px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--fg);
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: rgba(247,243,236,0.4);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
}
.footer-note {
  font-size: 13px;
  color: rgba(247,243,236,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: flex-start; }
  .hero-card { max-width: 100%; }
  .proof-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 0; }
  .step-connector { width: 2px; height: 32px; margin: 16px 0; }
  .nav-inner { flex-direction: column; height: auto; padding: 16px 0; gap: 4px; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .hero { padding: 56px 24px 64px; }
  .pillars, .pricing, .closing, .process { padding: 64px 24px; }
  .proof { padding: 64px 24px; }
}