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

:root {
  --bg: #F7F3EE;
  --bg-alt: #EEE9E1;
  --fg: #1A1A18;
  --fg-muted: #6B6860;
  --accent: #C8572A;
  --accent-light: #E8C4B0;
  --forest: #1E3D2F;
  --forest-light: #2E5A42;
  --white: #FFFFFF;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ===== HEADER ===== */
.site-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--bg-alt);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200, 87, 42, 0.15);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 5rem 2rem;
  background: var(--bg);
}

.manifesto-inner { max-width: 800px; margin: 0 auto; }

.manifesto-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--forest);
  margin-bottom: 2.5rem;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ===== PROCESS ===== */
.process {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

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

.process-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.process-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.process-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.card-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== NICHES ===== */
.niches {
  padding: 5rem 2rem;
  background: var(--bg);
}

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

.niches-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.niches-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.niche-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  position: relative;
  transition: box-shadow 0.3s;
}

.niche-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }

.niche-card.niche-featured {
  border-color: var(--accent);
  border-width: 2px;
}

.niche-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.niche-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.niche-meta {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.niche-download-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 1rem;
}

.niche-download-btn:hover {
  background: #b04a22;
  transform: translateY(-1px);
}

/* ===== CLOSING ===== */
.closing {
  padding: 6rem 2rem;
  background: var(--forest);
  color: var(--white);
}

.closing-inner { max-width: 900px; margin: 0 auto; }

.closing-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 3rem;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--bg-alt);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  
  .hero { padding: 3.5rem 1.5rem 3rem; }
  
  .hero-stats { gap: 1.5rem; }
  
  .niches-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .manifesto-quote { padding-left: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .stat-num { font-size: 1.5rem; }
  .closing-statement { font-size: 1.5rem; }
}