/* === BASE === */
:root {
  --bg: #FAFAF5;
  --bg-alt: #F0EFE8;
  --fg: #1A1A1A;
  --fg-muted: #6B6B5A;
  --accent: #C9A84C;
  --accent-dark: #B8860B;
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --border: rgba(26, 26, 26, 0.1);
}

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

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

h1, h2, h3, h4 {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 18px;
}

/* === HERO === */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--forest);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bridge-svg {
  width: 100%;
  max-width: 320px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  flex: 1;
  padding: 0 20px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Bitter', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* === SECTION UTILITIES === */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--forest);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* === FEATURES === */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  background: var(--bg-alt);
}
.features-header {
  max-width: 560px;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.feature-card--accent {
  background: var(--forest);
  border-color: var(--forest);
}
.feature-card--accent .feature-title,
.feature-card--accent .feature-desc {
  color: white;
}
.feature-card--accent .feature-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-title {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-alt);
  color: var(--fg-muted);
  padding: 5px 10px;
  border-radius: 20px;
}

/* === PROCESS === */
.process {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.process-header {
  margin-bottom: 56px;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 20px;
}
.step:first-child { padding-left: 0; }
.step-num {
  font-family: 'Bitter', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--forest);
  opacity: 0.15;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-size: 19px;
  color: var(--forest);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--forest) 0,
    var(--forest) 6px,
    transparent 6px,
    transparent 10px
  );
  opacity: 0.25;
  align-self: flex-start;
  margin-top: 28px;
}

/* === TESTIMONIAL === */
.testimonial {
  background: var(--forest);
  padding: 80px 40px;
}
.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: 'Bitter', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: white;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.attr-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--forest);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.attr-info {
  text-align: left;
}
.attr-info strong {
  display: block;
  color: white;
  font-size: 15px;
  font-family: 'Bitter', serif;
}
.attr-info span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-top: 2px;
}

/* === CLOSING === */
.closing {
  background: var(--bg-alt);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--forest);
  margin-bottom: 24px;
  line-height: 1.25;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--forest);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-legal {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-graphic { order: -1; }
  .bridge-svg { max-width: 240px; margin: 0 auto; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 24px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .testimonial { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .nav-inner { padding: 16px 24px; }
}