/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --cream: #faf7f2;
  --cream-mid: #f2ede3;
  --green-deep: #1a4a3a;
  --green-mid: #2d6b55;
  --green-light: #4a9077;
  --amber: #c8893c;
  --amber-light: #e8b86d;
  --charcoal: #1c1c1a;
  --muted: #6b6b63;
  --rule: #e0d9cc;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; line-height: 1.2; }
a { color: inherit; }
ul { list-style: none; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,137,60,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(74,144,119,0.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--cream);
  font-style: italic;
}

.hero-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.8);
  max-width: 420px;
}

.hero-card {
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  backdrop-filter: blur(8px);
}

.hero-stat { }

.hero-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.5;
}

/* ─── Manifesto ─────────────────────────────────────────── */
.manifesto {
  background: var(--cream-mid);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px 40px;
}

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

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.4;
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 3px solid var(--amber);
}

.manifesto-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* ─── Services ──────────────────────────────────────────── */
.services { padding: 100px 40px; }

.services-inner { max-width: 1200px; margin: 0 auto; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,74,58,0.08);
}

.service-icon {
  color: var(--green-mid);
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── Pricing ────────────────────────────────────────────── */
.pricing {
  background: var(--green-deep);
  color: var(--cream);
  padding: 100px 40px;
}

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

.pricing .section-title { color: var(--cream); }
.pricing .section-sub { color: rgba(250,247,242,0.65); }

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

.pricing-card {
  background: rgba(250,247,242,0.05);
  border: 1px solid rgba(250,247,242,0.12);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
}

.pricing-card-featured {
  background: rgba(250,247,242,0.1);
  border-color: rgba(200,137,60,0.4);
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1;
}

.pricing-per {
  font-size: 1rem;
  color: rgba(250,247,242,0.5);
  font-family: 'DM Sans', sans-serif;
}

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

.pricing-features li {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.8);
  padding-left: 20px;
  position: relative;
}

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

.pricing-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--amber);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── Process ─────────────────────────────────────────────── */
.process { padding: 100px 40px; background: var(--cream); }

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--rule);
}

.step { }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── Closing ────────────────────────────────────────────── */
.closing {
  background: var(--green-deep);
  color: var(--cream);
  padding: 100px 40px;
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.2;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250,247,242,0.75);
  margin-bottom: 20px;
}

.closing-body-emphasis {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 32px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--cream-mid);
  border-top: 1px solid var(--rule);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--green-deep);
  display: block;
  margin-bottom: 4px;
}

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

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

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 80px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps::before { display: none; }

  .services, .pricing, .process, .closing, .manifesto {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero-headline { font-size: 2.6rem; }
  .pricing-price { font-size: 2rem; }
}