/* === Variables === */
:root {
  --bg: #FAF8F3;
  --bg-alt: #F2EDE3;
  --text: #1A1A1A;
  --text-muted: #6B6560;
  --green: #2A4A2A;
  --green-light: #3D6B3D;
  --amber: #B5852A;
  --amber-light: #D4A843;
  --border: rgba(42, 74, 42, 0.15);
  --border-strong: rgba(42, 74, 42, 0.3);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* === Nav === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--green);
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-strong);
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover {
  background: var(--green);
  color: #fff;
}

/* === Hero === */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 100px 64px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--amber);
}

.eyebrow-text {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-headline {
  font-size: clamp(56px, 7vw, 88px);
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.hero-divider {
  color: var(--border-strong);
  font-size: 20px;
}

.hero-ornament {
  width: 280px;
  opacity: 0.85;
}

.hero-ornament svg {
  width: 100%;
  height: auto;
}

/* === Pain === */
.pain {
  background: var(--bg-alt);
  padding: 100px 64px;
  border-bottom: 1px solid var(--border);
}

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

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.pain-headline {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 60px;
  color: var(--text);
  max-width: 560px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  margin-bottom: 64px;
}

.pain-item {}

.pain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--bg);
  border-radius: 8px;
  margin-bottom: 16px;
}

.pain-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.pain-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.pain-quote {
  border-left: 3px solid var(--amber);
  padding-left: 28px;
}

.pain-quote blockquote {
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: var(--text);
  margin-bottom: 10px;
}

.quote-attribution {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === Features === */
.features {
  padding: 100px 64px;
  border-bottom: 1px solid var(--border);
}

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

.features-headline {
  font-size: clamp(32px, 3.5vw, 46px);
  margin-bottom: 60px;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border-strong);
  line-height: 1;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--amber);
}

/* === Process === */
.process {
  background: var(--green);
  padding: 100px 64px;
  color: var(--bg);
}

.process-inner { max-width: 900px; margin: 0 auto; }

.process .section-label { color: var(--amber-light); }

.process-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--bg);
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
}

.step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(250,248,243,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step-body h3 {
  font-size: 22px;
  color: var(--bg);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 14px;
  color: rgba(250,248,243,0.7);
  line-height: 1.65;
}

.step-arrow {
  color: rgba(250,248,243,0.4);
  padding: 0 24px;
  flex-shrink: 0;
}

/* === Manifesto === */
.manifesto {
  padding: 120px 64px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner { max-width: 860px; margin: 0 auto; }

.manifesto-quote {
  font-size: clamp(32px, 4vw, 52px);
  font-style: italic;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.2;
}

.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 640px;
}

/* === Footer === */
.footer {
  padding: 64px;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

/* === Responsive === */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .hero { grid-template-columns: 1fr; padding: 60px 28px 50px; }
  .hero-ornament { display: none; }
  .pain { padding: 60px 28px; }
  .pain-grid { grid-template-columns: 1fr; gap: 32px; }
  .features { padding: 60px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 28px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-arrow { transform: rotate(90deg); }
  .manifesto { padding: 60px 28px; }
  .footer { padding: 40px 28px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-copy { text-align: left; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-meta { flex-wrap: wrap; gap: 12px; }
  .hero-divider { display: none; }
  .feature-card { padding: 28px; }
}