:root {
  --bg: #FAFAF5;
  --bg-dark: #0E120E;
  --fg: #1A1A1A;
  --fg-light: #F4F2ED;
  --accent: #D4620A;
  --accent-light: #F5E6D3;
  --muted: #6B7066;
  --border: #D9D9CE;
  --green-deep: #1A2B1A;
  --green-mid: #2D4A2D;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(24px, 5vw, 80px);
  height: 56px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px clamp(24px, 5vw, 80px) 100px;
  overflow: hidden;
}

.hero {
  background: var(--green-deep);
  color: var(--fg-light);
}

.hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(212, 98, 10, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(45, 74, 45, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-label {
  margin-bottom: 32px;
}

.label-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 98, 10, 0.4);
  padding: 5px 12px;
  border-radius: 100px;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg-light);
}

.hero-headline em {
  font-style: italic;
  color: #F5C87A;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(244, 242, 237, 0.72);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--fg-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(244, 242, 237, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(244, 242, 237, 0.15);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ── PROBLEM ── */
.problem {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--bg);
}

.problem-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 36px;
}

.problem-conclusion {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--accent);
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

/* ── OFFERINGS ── */
.offerings {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--fg-light);
}

.offerings-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: var(--fg);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
}

.offering-card {
  padding: 48px 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  margin: -1px -1px 0 0;
}

.offering-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.offering-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.offering-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.offerings-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--green-deep);
  color: var(--fg-light);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-rule {
  height: 1px;
  background: rgba(244, 242, 237, 0.15);
  margin-bottom: 56px;
}

.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  color: #F5C87A;
}

.manifesto-body {
  font-size: 1.05rem;
  color: rgba(244, 242, 237, 0.68);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ── PRICING ── */
.pricing {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--bg);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--fg-light);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}

.pricing-card--featured {
  background: var(--green-deep);
  color: var(--fg-light);
  border-color: var(--green-mid);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-card--featured .pricing-tier { color: #F5C87A; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price-setup {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
}

.price-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-retainer {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-card--featured .pricing-retainer {
  border-bottom-color: rgba(244, 242, 237, 0.15);
  color: rgba(244, 242, 237, 0.6);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-card--featured .pricing-features li {
  color: rgba(244, 242, 237, 0.85);
}

.pricing-footnote {
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* ── CLOSING ── */
.closing {
  padding: clamp(100px, 16vw, 180px) clamp(24px, 5vw, 80px);
  background: var(--accent-light);
  text-align: center;
}

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--muted);
}

/* ── FOOTER ── */
.footer {
  padding: 28px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem;
}

.footer-divider { color: var(--border); }

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding-top: 100px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-sep { display: none; }
  .stat { padding-right: 0; }
  .offerings-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
}

@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .hero-headline { font-size: 2.6rem; }
  .closing-headline { font-size: 1.4rem; }
}