/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FDFAF4;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --stone-100: #F5F0E8;
  --stone-300: #D6CCC0;
  --stone-500: #8C7B6B;
  --stone-700: #4A3F35;
  --stone-900: #1A1512;
  --white: #FFFFFF;
  --shadow: 0 1px 3px rgba(26,21,18,0.08), 0 4px 16px rgba(26,21,18,0.06);
  --shadow-md: 0 4px 24px rgba(26,21,18,0.12);
  --radius: 4px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--cream);
  color: var(--stone-900);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 88vh;
  padding: 80px 80px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(27,67,50,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero-lede {
  font-size: 18px;
  color: var(--stone-500);
  max-width: 460px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  position: relative;
}

.hero-image-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--green-deep) 0%, var(--green-mid) 50%, var(--green-light) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 41px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 41px
  );
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 32px;
  background: var(--white);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.hero-badge svg { color: var(--green-mid); }

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--stone-100);
  padding: 100px 80px;
}

.section-header { margin-bottom: 64px; }

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--green-deep);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--stone-500);
  max-width: 480px;
  font-weight: 300;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--green-light);
  opacity: 0.5;
  margin-bottom: 20px;
  line-height: 1;
}

.step-title {
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--stone-500);
  line-height: 1.65;
}

/* ── FEATURES ── */
.features {
  background: var(--green-deep);
  padding: 100px 80px;
}

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

.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.features-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 56px;
  line-height: 1.1;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-item {}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}

.feature-title {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-body {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── AREAS ── */
.areas {
  background: var(--cream);
  padding: 100px 80px;
  border-top: 1px solid var(--stone-100);
}

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.areas-title {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--green-deep);
  margin-bottom: 20px;
}

.areas-body {
  font-size: 16px;
  color: var(--stone-500);
  line-height: 1.7;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.area-tag {
  background: var(--stone-100);
  color: var(--stone-700);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--stone-300);
  transition: background 0.2s, color 0.2s;
}

.area-tag:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

/* ── CLOSING ── */
.closing {
  background: var(--stone-100);
  padding: 100px 80px;
  text-align: center;
}

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

.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--green-deep);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  color: var(--stone-500);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-deep);
  padding: 48px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 360px;
  text-align: right;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 32px 48px;
    min-height: auto;
  }

  .hero-right { display: none; }

  .how-it-works, .features, .areas, .closing { padding: 72px 32px; }

  .steps-grid, .features-grid { grid-template-columns: 1fr; }

  .areas-inner { grid-template-columns: 1fr; gap: 48px; }

  .site-footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 48px 32px;
  }

  .footer-note { text-align: center; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px 40px; }
  .how-it-works, .features, .areas, .closing { padding: 56px 20px; }
  .step-card { padding: 28px 24px; }
  .site-footer { padding: 40px 20px; }
}