/* Typography */
:root {
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --bg: #F9F6F0;
  --bg-warm: #F2EDE4;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #D4622A;
  --accent-dark: #A84C1C;
  --sand: #E7E0D5;
  --sand-dark: #C9BFB0;
  --ink: #292524;
}

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

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;
}

/* Navigation */
.site-nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
}
.nav-inner {
  max-width: 1120px;
  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(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.nav-tagline {
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 400;
}

/* Section Labels */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 40px;
}

/* Hero */
.hero {
  padding: 80px 0 72px;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
}
.hero-image-wrap {
  position: relative;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--bg);
  border: 1px solid var(--sand-dark);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* How it Works */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-warm);
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.step-card {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--sand);
  border-radius: 4px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.step-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.escrow-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FDF6F0;
  border: 1px solid #F0C9B0;
  border-radius: 4px;
  padding: 20px 24px;
}
.escrow-callout p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.escrow-callout svg { flex-shrink: 0; margin-top: 2px; }

/* Trust Pillars */
.trust-pillars {
  padding: 80px 0;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.trust-description {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.trust-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.trust-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pillar {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
}
.pillar:first-child { border-top: 1px solid var(--sand); }
.pillar-icon {
  width: 40px;
  height: 40px;
  background: #FDF6F0;
  border: 1px solid #F0C9B0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.pillar p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Categories */
.categories {
  padding: 80px 0;
  background: var(--bg-warm);
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--bg);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover {
  border-color: var(--sand-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.cat-icon {
  margin-bottom: 16px;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.cat-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
}
.cat-more {
  background: var(--ink);
  border-color: var(--ink);
}
.cat-more h3, .cat-more p { color: var(--sand); }
.cat-more p { opacity: 0.7; }

/* Manifesto */
.manifesto {
  background: var(--ink);
  padding: 96px 0;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.manifesto-pattern {
  width: 64px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 40px;
  border-radius: 2px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: #F9F6F0;
  margin-bottom: 32px;
}
.manifesto-context p {
  font-size: 16px;
  color: #A8A29E;
  line-height: 1.7;
  margin-bottom: 16px;
}
.manifesto-context p:last-child { margin-bottom: 0; }

/* Closing */
.closing-section {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 20px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.closing-footer {
  border-top: 1px solid var(--sand);
  padding-top: 32px;
}
.closing-footer p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--sand);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 12px;
  color: var(--sand-dark);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-pillars { grid-template-columns: 1fr; gap: 48px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px; }
  .how-it-works { padding: 48px 20px; }
  .trust-pillars { padding: 48px 20px; }
  .categories { padding: 48px 20px; }
  .manifesto { padding: 64px 20px; }
  .closing-section { padding: 64px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .nav-tagline { display: none; }
}