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

:root {
  --cream: #f5f0e8;
  --forest: #1a3a2a;
  --forest-mid: #254d3a;
  --amber: #d4a853;
  --amber-light: #e8c47a;
  --text: #1a1a18;
  --text-muted: #5a5a52;
  --border: rgba(26,58,42,0.12);
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1160px;
  --radius: 12px;
  --radius-sm: 6px;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }

/* === HERO === */
.hero {
  padding: calc(80px + 80px) 0 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(26,58,42,0.04) 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--forest);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
  flex-shrink: 0;
}

/* Hero geometric visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-block {
  position: relative;
  width: 360px;
  height: 360px;
}
.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(26,58,42,0.12);
}
.geo-circle--1 {
  width: 360px; height: 360px;
  top: 0; left: 0;
  border-color: rgba(26,58,42,0.1);
}
.geo-circle--2 {
  width: 240px; height: 240px;
  top: 60px; left: 60px;
  border-color: rgba(212,168,83,0.25);
}
.geo-circle--3 {
  width: 120px; height: 120px;
  top: 120px; left: 120px;
  background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(26,58,42,0.1));
  border: 2px solid rgba(212,168,83,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-circle--3::after {
  content: '';
  width: 40px; height: 40px;
  background: var(--amber);
  border-radius: 50%;
}
.geo-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
}
.geo-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,168,83,0.5), transparent);
  transform-origin: left center;
}
.geo-line:nth-child(1) { transform: rotate(0deg); }
.geo-line:nth-child(2) { transform: rotate(45deg); }
.geo-line:nth-child(3) { transform: rotate(90deg); }
.geo-line:nth-child(4) { transform: rotate(135deg); }
.geo-line:nth-child(5) { transform: rotate(180deg); }
.geo-label {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
  background: var(--cream);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.geo-label--tl { top: 30px; left: 10px; }
.geo-label--tr { top: 30px; right: 10px; color: var(--amber); }
.geo-label--bl { bottom: 30px; left: 10px; }
.geo-label--br { bottom: 30px; right: 10px; }

/* === MANIFESTO === */
.manifesto {
  padding: var(--section-pad) 0;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}
.manifesto-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: start;
}
.quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--amber);
  display: block;
  margin-bottom: 24px;
  opacity: 0.6;
}
blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body strong { color: var(--amber-light); font-weight: 600; }
.aside-card {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.aside-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}
.aside-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.aside-row:last-child { border-bottom: none; }
.aside-key {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
}
.aside-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
}
.aside-row--highlight .aside-val { color: var(--amber); }

/* === PROOF === */
.proof {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.proof-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.proof-header {
  margin-bottom: 64px;
}
.proof-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.15;
}
.proof-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.proof-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,58,42,0.1);
}
.proof-card-icon {
  margin-bottom: 24px;
}
.proof-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.proof-card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.proof-card-metrics {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.proof-metric {
  display: flex;
  flex-direction: column;
}
.metric-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
}
.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* === NICHES / PROCESS === */
.niches {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(26,58,42,0.04) 100%);
}
.niches-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.niches-header {
  margin-bottom: 72px;
}
.niches-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.niches-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
}
.niches-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
}
.step {
  flex: 1;
  padding: 0 32px 0 0;
}
.step:first-child { padding-left: 0; }
.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.step-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 24px;
  flex-shrink: 0;
}
.niches-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--forest);
  border-radius: var(--radius);
  padding: 24px 32px;
}
.banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.banner-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 600;
  white-space: nowrap;
}
.banner-value {
  font-size: 0.95rem;
  color: var(--cream);
}
.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* === CLOSING === */
.closing {
  padding: var(--section-pad) 0;
  background: var(--forest);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.closing-headline em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-body--accent { color: rgba(245,240,232,0.9); }
.closing-rule {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
}
.rule-line {
  flex: 1;
  height: 1px;
  background: rgba(245,240,232,0.15);
}
.rule-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245,240,232,0.35);
  font-weight: 600;
  white-space: nowrap;
}

/* === FOOTER === */
.footer {
  padding: 48px 0;
  background: #0f2318;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.4);
  max-width: 280px;
  line-height: 1.5;
}
.footer-meta {
  text-align: right;
}
.footer-meta p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.3);
}
.footer-copy { margin-top: 4px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .aside-card { position: static; }
  .proof-grid { grid-template-columns: 1fr; }
  .niches-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .step { padding: 0; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .nav-links { display: none; }
  .niches-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
}