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

:root {
  --bg: #faf9f6;
  --bg-alt: #f0ede6;
  --ink: #0c0c0c;
  --ink-light: #5a5a5a;
  --accent: #b8872a;
  --accent-light: #d4a94e;
  --navy: #141a2e;
  --stone: #8c8579;
  --border: #e2ddd6;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

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

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

/* Navigation */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--ink);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Hero */
.hero {
  padding: 6rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.hero-sub {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.7;
}

/* Markets */
.markets {
  background: var(--navy);
  padding: 5rem 2rem;
}
.markets-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.market { padding: 0 3rem; }
.market:first-child { padding-left: 0; }
.market:last-child { padding-right: 0; }
.market-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.market-name {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.market-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.market-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.market-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  font-weight: 400;
}
.market-list li:last-child { border-bottom: none; }
.market-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 0 1rem;
}

/* Process */
.process {
  padding: 6rem 2rem;
  background: var(--bg);
}
.process-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 0 2rem;
  border-left: 1px solid var(--border);
}
.step:first-child { padding-left: 0; border-left: none; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.65;
  font-weight: 300;
}

/* Approach */
.approach {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.approach-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.approach-body {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}
.approach-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.stat:last-child { border-bottom: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 6rem 2rem;
  background: var(--navy);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* Footer */
.footer {
  background: var(--ink);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
}
.footer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  text-align: right;
}
.footer-legal {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .markets-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .market { padding: 0; }
  .market-divider { display: none; }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .step { border-left: none; padding: 0; }
  .approach-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-note { text-align: left; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .markets { padding: 4rem 1.25rem; }
  .process { padding: 4rem 1.25rem; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .approach { padding: 4rem 1.25rem; }
  .closing { padding: 4rem 1.25rem; }
  .stat-value { font-size: 2.5rem; }
}