:root {
  --bg: #faf7f2;
  --bg-alt: #f2ede6;
  --fg: #1a1a1a;
  --fg-muted: #5a5a5a;
  --accent: #c95a3a;
  --accent-light: #e8d5ce;
  --border: #d9cfc4;
  --white: #ffffff;
}

*, *::before, *::after { 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;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.navbar-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 72px;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 480px;
}
.hero-accent-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  margin-top: 56px;
}
.accent-stat { display: flex; flex-direction: column; gap: 6px; }
.accent-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.accent-label { font-size: 14px; color: var(--fg-muted); line-height: 1.4; }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--fg);
  color: var(--white);
  padding: 80px 48px;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  line-height: 1.5;
  color: #f0ece6;
  border: none;
}

/* ── PRINCIPLES ── */
.principles { padding: 80px 48px; }
.principles-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 56px;
}
.principles-header { margin-bottom: 0; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.principle-card { display: flex; flex-direction: column; }
.principle-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 20px;
}
.principle-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.principle-body { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* ── SERVICES ── */
.services {
  background: var(--bg-alt);
  padding: 80px 48px;
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.service-item { display: flex; flex-direction: column; }
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-body { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ── PRICING ── */
.pricing { padding: 80px 48px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
}
.pricing-card--featured {
  background: var(--fg);
  color: var(--white);
  border: none;
  position: relative;
}
.pricing-card--featured .pricing-tagline { color: #b8b0a6; }
.pricing-card--featured .pricing-features li { color: #e0dbd5; }
.pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card--featured .pricing-amount { color: var(--white); }
.pricing-period {
  font-size: 18px;
  font-weight: 400;
  vertical-align: baseline;
}
.pricing-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-card--featured .pricing-features li::before { background: #d4856a; }

/* ── CLOSING ── */
.closing {
  background: var(--accent);
  color: var(--white);
  padding: 96px 48px;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-mark {
  width: 40px;
  height: 3px;
  background: var(--white);
  opacity: 0.5;
  margin-bottom: 32px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ── FOOTER ── */
.footer {
  background: var(--fg);
  color: var(--white);
  padding: 48px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: #888; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-accent-block { margin-top: 0; flex-direction: row; gap: 24px; }
  .accent-stat { min-width: 140px; }
  .accent-number { font-size: 32px; }
  .principles-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .navbar { padding: 20px 24px; }
  .hero, .manifesto, .principles, .services, .pricing, .closing { padding: 56px 24px; }
}
@media (max-width: 600px) {
  .hero-accent-block { flex-direction: column; }
  .pricing-card--featured { margin: 0; }
}