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

:root {
  --bg: #F5F0E8;
  --fg: #1A1A1A;
  --muted: #6B6560;
  --accent: #C8873A;
  --accent-dark: #A66B28;
  --green: #1A3A2A;
  --green-light: #2A5A40;
  --cream-dark: #EAE4DA;
  --white: #FFFFFF;
  --border: #D8D0C4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Product mockup */
.hero-product {
  position: relative;
}
.product-mockup {
  position: relative;
  display: inline-block;
}
.mockup-paper {
  background: var(--white);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
  width: 280px;
  position: relative;
  z-index: 1;
}
.mockup-header { margin-bottom: 1.25rem; }
.mockup-line {
  height: 10px;
  background: var(--cream-dark);
  border-radius: 3px;
  margin-bottom: 8px;
}
.mockup-title { width: 75%; height: 18px; }
.mockup-subtitle { width: 55%; height: 10px; }
.mockup-body .mockup-line { height: 8px; margin-bottom: 6px; }
.mockup-w-60 { width: 60%; }
.mockup-body .w-60 { width: 60%; }
.mockup-body .w-80 { width: 80%; }
.mockup-body .w-40 { width: 40%; }
.mockup-spacer { height: 1rem; }
.mockup-row { display: flex; gap: 8px; }
.mockup-block {
  flex: 1;
  height: 48px;
  background: var(--cream-dark);
  border-radius: 3px;
}
.mockup-price {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  z-index: 2;
}
.mockup-shadow {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: -20px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.12) 0%, transparent 70%);
  z-index: 0;
}
.hero-badge {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--green);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* Hero copy */
.hero-copy {}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 1.75rem;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--green);
  color: var(--bg);
  padding: 5rem 2rem;
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.manifesto-body {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.75;
}

/* === SECTION COMMON === */
.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* === PROCESS === */
.process { padding: 5rem 2rem; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 3.5rem; }
.process-header .section-headline { margin-top: 0.5rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid var(--border);
  padding-right: 2.5rem;
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 2.5rem; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.step-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* === EXAMPLES === */
.examples {
  background: var(--cream-dark);
  padding: 5rem 2rem;
}
.examples-inner { max-width: 1100px; margin: 0 auto; }
.examples-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 0.75rem 0 3rem;
  max-width: 560px;
}
.examples .section-headline { margin-top: 0.5rem; }
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.example-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.example-icon {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
  display: block;
}
.example-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.example-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.closing-body {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}
.footer-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}
.footer-note {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-copy { order: 1; }
  .hero-product { order: 0; }
  .product-mockup { display: flex; justify-content: center; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 2rem;
  }
  .step:not(:first-child) { padding-left: 0; }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .examples-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .stat-divider { height: 28px; margin: 0 1rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .examples-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .manifesto { padding: 3.5rem 1.5rem; }
  .process { padding: 3.5rem 1.5rem; }
  .examples { padding: 3.5rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
}