:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8dc;
  --fg: #1a1a18;
  --fg-muted: #6b6459;
  --accent: #2c5f4a;
  --accent-warm: #c9873a;
  --accent-glow: rgba(44, 95, 74, 0.12);
  --white: #ffffff;
  --border: rgba(26, 26, 24, 0.1);
}

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

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

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 500; line-height: 1.15; }
p { max-width: 60ch; }

/* NAV */
.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}
.nav__tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 4rem 5rem;
  min-height: 85vh;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2rem;
  line-height: 1.1;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 46ch;
}
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}
.hero__orb {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #3d8c6a, var(--accent) 60%, #1a3a2f);
  box-shadow: 0 0 80px rgba(44, 95, 74, 0.25), inset 0 0 40px rgba(255,255,255,0.05);
  margin-bottom: 1.5rem;
}
.hero__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hero__card:nth-child(2) { align-self: flex-end; transform: translateX(-20px); }
.hero__card:nth-child(3) { align-self: flex-start; }
.hero__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero__card-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.hero__card-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: calc(var(--fill) * 100%);
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  border-radius: 3px;
}
.hero__card-caption {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 4rem;
}
.philosophy__inner { max-width: 900px; margin: 0 auto; }
.philosophy__stat-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.philosophy__stat { flex: 1; text-align: center; }
.philosophy__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.philosophy__label {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.4;
  display: block;
}
.philosophy__divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 240, 232, 0.15);
  flex-shrink: 0;
}
.philosophy__quote {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.75);
  border-left: 3px solid var(--accent-warm);
  padding-left: 2rem;
  line-height: 1.5;
  max-width: 65ch;
}

/* HOW */
.how {
  padding: 6rem 4rem;
  background: var(--bg);
}
.how__header { margin-bottom: 4rem; }
.how__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.how__subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.how__step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-glow);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-text-stroke: 1px rgba(44, 95, 74, 0.2);
}
.how__step-title {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.how__step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* OUTCOMES */
.outcomes {
  background: var(--bg-alt);
  padding: 6rem 4rem;
}
.outcomes__inner { max-width: 900px; margin: 0 auto; }
.outcomes__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 3rem;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}
.outcomes__item h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin: 0.75rem 0 0.5rem;
}
.outcomes__item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.outcomes__icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
}

/* CLOSING */
.closing {
  padding: 7rem 4rem;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
}
.closing__inner { max-width: 680px; margin: 0 auto; }
.closing__line {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.3;
  max-width: 100%;
}
.closing__line--highlight {
  color: var(--accent-warm);
  font-weight: 700;
  margin: 1rem 0 2.5rem;
}
.closing__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.8);
  max-width: 55ch;
  margin: 0 auto 1rem;
}

/* NAV RIGHT */
.nav__right {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav__cta {
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.nav__cta:hover { background: #24503c; }

/* CLOSING CTA */
.closing__cta-wrap { margin-top: 2.5rem; }
.closing__cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--bg);
  color: var(--accent);
  border-radius: 10px;
  font-family: 'Karla', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.closing__cta:hover { background: rgba(245,240,232,0.15); }

/* FOOTER */
.footer {
  background: var(--fg);
  color: rgba(245, 240, 232, 0.5);
  padding: 3rem 4rem;
}
.footer__inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer__name {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bg);
}
.footer__sub { font-size: 0.8rem; color: rgba(245, 240, 232, 0.4); }
.footer__note { font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1.5rem 2rem; }
  .hero { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 3rem; min-height: auto; }
  .hero__visual { display: none; }
  .philosophy, .how, .outcomes, .closing, .footer { padding: 3.5rem 2rem; }
  .philosophy__stat-row { flex-direction: column; gap: 1.5rem; }
  .philosophy__divider { display: none; }
  .how__steps { grid-template-columns: 1fr; }
  .outcomes__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 1rem; text-align: center; }
}