/* LeadRanch — LeadRanch Theme */

:root {
  --bg: #FAFAF5;
  --fg: #1A1A1A;
  --green: #1B4332;
  --gold: #D4A843;
  --muted: #6B6B6B;
  --border: #E0DDD4;
  --surface: #F0EDE5;
  --white: #FFFFFF;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ── HERO ───────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #F0EDE5 0%, #FAFAF5 60%);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px 80px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

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

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 8px;
}

.stat {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

/* ── SHARED SECTION STYLES ─────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 56px;
}

/* ── MANIFESTO ──────────────────────────────────── */
.manifesto {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

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

.manifesto-mark {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.manifesto-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  color: var(--fg);
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.manifesto-body:last-child { margin-bottom: 0; }

/* ── OUTCOMES ───────────────────────────────────── */
.outcomes {
  padding: 96px 48px;
  background: var(--green);
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes .section-label { color: rgba(255,255,255,0.5); }

.outcomes .section-headline {
  color: var(--white);
  margin-bottom: 64px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.outcome {
  background: var(--green);
  padding: 40px 36px;
}

.outcome-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}

.outcome-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.outcome-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── TERRITORIES ────────────────────────────────── */
.territories {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.territories-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.territory {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

.territory-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.territory-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}

.territory-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.territory-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.territory-facts li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.territory-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── CLOSING ────────────────────────────────────── */
.closing {
  padding: 96px 48px;
  background: linear-gradient(160deg, #F0EDE5 0%, #FAFAF5 100%);
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 36px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  padding: 48px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}

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

.footer-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  max-width: 280px;
  line-height: 1.5;
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .territory-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; }
}

@media (max-width: 600px) {
  .hero, .manifesto, .outcomes, .territories, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-headline { font-size: 2.4rem; }
  .section-headline { font-size: 1.7rem; }
  .closing-headline { font-size: 1.8rem; }
  .manifesto-headline { font-size: 1.6rem; }
  .hero-stats { grid-template-columns: 1fr; }
}
