:root {
  --green-deep: #1a3c2a;
  --green-mid: #2d5a3d;
  --green-light: #3d7a52;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --bg: #f8f5f0;
  --bg-alt: #f0ebe2;
  --text: #1a1a18;
  --text-muted: #5a5a52;
  --white: #ffffff;
  --border: #e0dbd2;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}
.stat {
  padding: 20px 32px;
  background: var(--white);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
}
.hero-diagram {
  background: var(--green-deep);
  border-radius: 8px;
  padding: 40px;
  max-width: 640px;
}
.diagram-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.diagram-box {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 24px;
}
.box-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.box-holds {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.box-llc .box-label { color: #ffffff; }
.box-llc .box-holds { color: rgba(255,255,255,0.6); }
.diagram-arrow {
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
}
.diagram-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* SECTION COMMON */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 48px;
}

/* STRUCTURE */
.structure {
  background: var(--white);
  padding: 80px 40px;
}
.structure > .section-label,
.structure > .section-title {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.structure-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.struct-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.struct-card:hover {
  border-color: var(--green-light);
}
.struct-icon {
  color: var(--green-mid);
  margin-bottom: 16px;
}
.struct-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.struct-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* HOW IT WORKS */
.howitworks {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--green-deep);
  opacity: 0.15;
  line-height: 1;
  min-width: 60px;
  padding-top: 4px;
}
.step-content {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  flex: 1;
}
.step:last-child .step-content {
  border-bottom: none;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.65;
}
.step-connector {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin-left: 29px;
}

/* PRINCIPLES */
.principles {
  background: var(--green-deep);
  padding: 80px 40px;
}
.principles-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.principles-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}
.principles-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.4;
}
.principles-body {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

/* CLOSING */
.closing {
  background: var(--bg-alt);
  padding: 80px 40px;
  text-align: center;
}
.closing-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 20px;
  line-height: 1.15;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--green-deep);
  padding: 40px;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 48px 24px 40px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .structure { padding: 48px 24px; }
  .structure-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 48px 24px; }
  .diagram-row { flex-direction: column; gap: 12px; }
  .diagram-arrow { transform: rotate(90deg); }
  .nav { padding: 0 24px; }
  .principles, .closing { padding: 60px 24px; }
  .step { gap: 16px; }
  .step-num { font-size: 36px; min-width: 40px; }
}