:root {
  --bg: #F8F6F1;
  --bg-warm: #F2EDE6;
  --surface: #FFFFFF;
  --fg: #1C1C1E;
  --fg-muted: #6B6B6B;
  --fg-subtle: #9B9B9B;
  --accent: #B87333;
  --accent-dark: #8B5A2B;
  --navy: #1A2744;
  --navy-mid: #2D3F5E;
  --border: #E5E0D8;
  --border-light: #F0ECE7;
}

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

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

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

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  padding: 140px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  margin-top: 0.35rem;
  line-height: 1.3;
  max-width: 80px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Hero Visual Card */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}
.card-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 100%;
  opacity: 0.06;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 1.5rem;
}
.pattern-line {
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.card-label {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  position: relative;
}
.card-sublabel {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}

.hero-bottom-rule {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 2rem;
  height: 1px;
  background: var(--border);
}

/* PAINPOINTS */
.painpoints {
  padding: 100px 0;
  background: var(--bg-warm);
}
.painpoints-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 4rem;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pain-item {
  background: var(--surface);
  padding: 2.5rem;
}
.pain-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pain-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.pain-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--bg);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(184, 115, 51, 0.08);
}
.service-card.featured {
  border-color: var(--accent);
  background: var(--navy);
  color: #fff;
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured .service-bullets li { color: rgba(255,255,255,0.6); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--bg-warm);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.service-card.featured .service-icon {
  background: rgba(255,255,255,0.08);
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-bullets li {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 1rem;
  position: relative;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* APPROACH */
.approach {
  padding: 100px 0;
  background: var(--bg-warm);
}
.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}
.approach-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.approach-differentiators {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.diff { display: flex; flex-direction: column; gap: 0.25rem; }
.diff-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}
.diff-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.approach-accent {
  position: sticky;
  top: 80px;
}
.accent-block {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  color: #fff;
}
.accent-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.accent-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}

/* MARKET */
.market {
  padding: 100px 0;
  background: var(--navy);
  color: #fff;
}
.market-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.market-header { margin-bottom: 3rem; }
.market-header .section-label { color: var(--accent); }
.market-header .section-headline { color: #fff; max-width: 600px; }

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.big-number {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
}
.big-context {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 340px;
}
.market-facts { display: flex; flex-direction: column; gap: 2rem; }
.fact { display: flex; gap: 1rem; align-items: baseline; }
.fact-metric {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  min-width: 80px;
}
.fact-text { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.market-outro p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 680px;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-info { text-align: right; }
.footer-service-lines {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-sep { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-legal { font-size: 0.75rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; }
  .approach-accent { position: static; }
  .market-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-info { text-align: left; }
  .nav-links { gap: 1.5rem; }
  .big-number { font-size: 3.5rem; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 0 60px; }
  .painpoints, .services, .approach, .market, .closing { padding: 70px 0; }
  .nav-links a { font-size: 0.8rem; }
  .hero-stats { flex-wrap: wrap; }
}