/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7DC;
  --forest: #1B4332;
  --forest-light: #2D5A47;
  --copper: #B87333;
  --copper-light: #D4915A;
  --ink: #1A1A1A;
  --ink-mid: #4A4A4A;
  --ink-light: #7A7A7A;
  --white: #FFFFFF;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;
  --gap: clamp(24px, 4vw, 48px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--copper); color: var(--white); }

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(120px, 15vw, 180px) clamp(24px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape-1 {
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(ellipse at center, rgba(184,115,51,0.12) 0%, transparent 70%);
  right: -10%;
  top: 10%;
}
.hero-shape-2 {
  width: clamp(200px, 30vw, 500px);
  height: clamp(200px, 30vw, 500px);
  background: radial-gradient(ellipse at center, rgba(27,67,50,0.08) 0%, transparent 70%);
  left: -5%;
  bottom: 20%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.hero-headline {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--forest);
  margin-bottom: 32px;
  max-width: 14ch;
  position: relative;
  z-index: 1;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--ink-mid);
  max-width: 50ch;
  line-height: 1.7;
  font-weight: 300;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--cream-dark);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.manifesto-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  margin-bottom: 24px;
}
.manifesto-title-alt { color: var(--forest); }
.manifesto-body {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
}
.manifesto-divider {
  height: 1px;
  background: rgba(26,26,26,0.1);
  margin: 56px 0;
}

/* === HOW IT WORKS === */
.how {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}
.how-header {
  max-width: var(--container);
  margin: 0 auto 64px;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest);
}

.steps {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(26,26,26,0.08);
}
.step {
  background: var(--cream);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--copper-light);
  opacity: 0.5;
  line-height: 1;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
}
.step-desc {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.6;
  font-weight: 300;
}

/* === THE AGENT === */
.agent {
  background: var(--forest);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}
.agent-inner {
  max-width: 860px;
  margin: 0 auto;
}
.agent-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  border: 1px solid var(--copper-light);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
  opacity: 0.8;
}
.agent-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 28px;
}
.agent-body {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 56px;
}
.agent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.agent-stat {}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === CLOSING === */
.closing {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.closing-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.closing-shape {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(184,115,51,0.1) 0%, transparent 70%);
}
.closing-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest);
  margin-bottom: 24px;
  max-width: 18ch;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--ink-mid);
  max-width: 44ch;
  line-height: 1.8;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  background: var(--ink);
  padding: 56px clamp(24px, 6vw, 80px);
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.4);
  margin-bottom: 32px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .agent-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .agent-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero { padding-top: 120px; }
  .landing-optin-form { flex-direction: column; }
  .landing-optin-btn { width: 100%; }
}

/* ---- Landing Page Email Opt-in ---- */
.landing-optin {
  background: var(--forest);
  padding: 80px 24px;
}
.landing-optin-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.landing-optin-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.landing-optin-title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.25;
}
.landing-optin-sub {
  color: rgba(245,240,232,0.7);
  font-size: 15px;
  margin-bottom: 24px;
}
.landing-optin-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 12px;
}
.landing-optin-input {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--cream);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.landing-optin-input::placeholder { color: rgba(245,240,232,0.5); }
.landing-optin-input:focus { border-color: var(--copper-light); }
.landing-optin-btn {
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.landing-optin-btn:hover { opacity: 0.88; }
.landing-optin-note {
  font-size: 12px;
  color: rgba(245,240,232,0.5);
}