/* RootStory — Earthy, editorial, grounded */
:root {
  --green-deep: #1a3d2b;
  --green-mid: #2d5a40;
  --green-light: #3e7a57;
  --amber: #d4943a;
  --amber-light: #e8b86d;
  --cream: #f5ede0;
  --cream-dark: #ece3d4;
  --charcoal: #2c2c2c;
  --warm-grey: #6b6159;
  --white: #ffffff;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* HERO */
.hero {
  background: var(--cream);
  padding: 80px 0 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  padding: 40px 0;
}
.hero-label {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(26,61,43,0.08);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--green-deep);
  margin-bottom: 24px;
  font-optical-sizing: auto;
}
.hero-content .lede {
  font-size: 20px;
  color: var(--warm-grey);
  max-width: 480px;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 24px;
}
.hero-cta a {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-mid);
  text-decoration: none;
  border-bottom: 2px solid rgba(45,90,64,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta a:hover {
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.hero-visual {
  position: relative;
}
.hero-field-block {
  background: var(--green-deep);
  border-radius: 24px;
  padding: 56px 48px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-field-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(61,122,87,0.5) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 80%, rgba(212,148,58,0.15) 0%, transparent 60%);
  border-radius: 24px;
}
.field-texture {
  position: relative;
  z-index: 1;
}
.field-tagline {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  font-style: italic;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.hero-stat {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
}
.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber-light);
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-bottom-bar {
  background: var(--green-deep);
  margin-top: 60px;
  padding: 18px 40px;
}
.bar-text {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* SECTION SHARED */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-tag {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
section h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--green-deep);
  margin-bottom: 40px;
  max-width: 640px;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 0;
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {
  padding-top: 24px;
}
.step-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}
.step h3 {
  font-size: 26px;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.step p {
  font-size: 17px;
  color: var(--warm-grey);
  line-height: 1.65;
}

/* WHY NOW */
.whynow {
  padding: 100px 0;
  background: var(--cream);
}
.whynow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.whynow-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
}
.whynow-text p {
  font-size: 17px;
  color: var(--warm-grey);
  margin-bottom: 20px;
  line-height: 1.7;
}
.whynow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tag {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-deep);
  background: rgba(26,61,43,0.08);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(26,61,43,0.15);
}
.whynow-aside {
  background: var(--green-deep);
  border-radius: 20px;
  padding: 48px;
  margin-top: 40px;
}
blockquote {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}
cite {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

/* PRICING */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--cream-dark);
  position: relative;
}
.pricing-card.featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-desc {
  color: var(--white);
}
.pricing-card.featured .price-desc {
  color: rgba(255,255,255,0.7);
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.85);
}
.card-badge {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,148,58,0.15);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.currency {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--green-deep);
}
.amount {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}
.period {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: var(--warm-grey);
  margin-left: 6px;
}
.price-desc {
  font-size: 15px;
  color: var(--warm-grey);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26,61,43,0.1);
}
.pricing-features {
  list-style: none;
}
.pricing-features li {
  font-size: 16px;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,61,43,0.06);
  line-height: 1.4;
}
.pricing-note {
  margin-top: 32px;
  font-size: 15px;
  color: var(--warm-grey);
  font-style: italic;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 0;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.manifesto h2 {
  max-width: 100%;
}
.manifesto p {
  font-size: 19px;
  color: var(--warm-grey);
  margin-bottom: 24px;
  line-height: 1.75;
}
.manifesto-rule {
  width: 60px;
  height: 3px;
  background: var(--amber);
  margin: 48px 0 32px;
}
.manifesto-close {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--green-deep) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* FOOTER */
.site-footer {
  background: var(--green-deep);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tagline {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-meta {
  display: flex;
  gap: 24px;
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { padding: 0; }
  .hero-visual { order: -1; }
  .hero-field-block { min-height: 280px; }
  .field-tagline { font-size: 28px; }
  .hero-stat-row { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .whynow-inner { grid-template-columns: 1fr; gap: 40px; }
  .whynow-aside { margin-top: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { order: -1; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  h2 { font-size: 32px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero-inner { padding: 0 24px; }
  .section-inner { padding: 0 24px; }
  .hero { padding: 60px 0 0; }
  .hero-field-block { padding: 40px 32px; }
  .hero-bottom-bar { padding: 14px 24px; }
  .manifesto-inner { padding: 0 24px; }
  .manifesto p { font-size: 17px; }
  .whynow-aside { padding: 36px; }
  blockquote { font-size: 18px; }
}