/* === Variables === */
:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --accent: #E76F51;
  --accent-dark: #C45A3A;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  line-height: 1.1;
  font-weight: 900;
}

/* === Nav === */
.nav {
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-logo strong { font-weight: 900; }
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--green);
  color: white;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--green-light); }

/* === Hero === */
.hero {
  padding: 5rem 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--green);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero-credential {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
}
.credential-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === Orb === */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.hero-orb {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 67, 50, 0.2);
}
.orb-ring-1 { width: 220px; height: 220px; }
.orb-ring-2 { width: 160px; height: 160px; border-color: rgba(231, 111, 81, 0.4); }
.orb-ring-3 { width: 100px; height: 100px; border-color: var(--green); }
.orb-core {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-label {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

/* === Philosophy === */
.philosophy {
  background: var(--green);
  padding: 5rem 2.5rem;
}
.philosophy-inner { max-width: 800px; margin: 0 auto; }
.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.philosophy-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: white;
  line-height: 1.4;
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}
.philosophy-body {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
}
.philosophy-body em { font-style: italic; color: white; }

/* === Method === */
.method { padding: 5rem 2.5rem; background: var(--bg); }
.method-inner { max-width: 1100px; margin: 0 auto; }
.method-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}
.method-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}
.step-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === Outcomes === */
.outcomes { padding: 5rem 2.5rem; background: var(--bg-alt); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3.5rem;
}
.outcome {}
.outcome-icon { margin-bottom: 0.75rem; }
.outcome-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.outcome-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === Closing === */
.closing { padding: 6rem 2.5rem; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-block {
  border-top: 1px solid rgba(27, 67, 50, 0.15);
  padding-top: 3rem;
}
.closing-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--green);
  line-height: 1.6;
  font-weight: 400;
}

/* === Footer === */
.footer { padding: 3rem 2.5rem; border-top: 1px solid rgba(27, 67, 50, 0.1); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green);
}
.footer-logo strong { font-weight: 900; }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-copy { font-size: 0.75rem; color: rgba(107,107,107,0.6); }

/* === CTA Button === */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
  margin-top: 2rem;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* === Closing CTA === */
.closing-cta { text-align: center; }

/* === Responsive === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .hero-orb { width: 160px; height: 160px; }
  .orb-ring-1 { width: 160px; height: 160px; }
  .orb-ring-2 { width: 115px; height: 115px; }
  .orb-ring-3 { width: 72px; height: 72px; }
  .orb-core { width: 52px; height: 52px; }
  .method-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .philosophy, .method, .outcomes, .closing { padding: 3.5rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
}