:root {
  --bg: #0f0f0f;
  --bg-alt: #161616;
  --surface: #1e1e1e;
  --accent: #e8a020;
  --accent-dim: rgba(232, 160, 32, 0.12);
  --text: #f5f0e8;
  --text-muted: rgba(245, 240, 232, 0.55);
  --text-dim: rgba(245, 240, 232, 0.35);
  --border: rgba(245, 240, 232, 0.1);
}

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

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* HERO */
.hero {
  padding: 100px 64px 80px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* STATS */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 36px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.stat {
  flex: 1;
  padding: 0 40px;
}

.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }

.stat-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* SERVICES */
.services {
  padding: 96px 64px;
}

.section-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 48px;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--surface);
  padding: 40px;
}

.service-icon {
  margin-bottom: 20px;
}

.service-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 80px 64px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 40px 0 0;
}

.step-connector {
  width: 48px;
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
  margin-top: 20px;
  flex-shrink: 0;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 96px 64px;
}

.closing-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin-bottom: 56px;
  font-style: italic;
}

.closing-details {
  display: flex;
  gap: 64px;
}

.closing-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.detail-value {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 64px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.footer-descriptor {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 28px; }
  .nav-tagline { display: none; }

  .hero { padding: 64px 28px 56px; }
  .hero-headline { font-size: 2.5rem; }
  .hero-lede { font-size: 1rem; }

  .stats-row { flex-direction: column; gap: 24px; padding: 28px 28px; }
  .stat { padding: 0; }
  .stat-divider { width: 48px; height: 1px; }

  .services { padding: 64px 28px; }
  .services-grid { grid-template-columns: 1fr; }

  .process { padding: 64px 28px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .step { padding: 0; }

  .closing { padding: 64px 28px; }
  .closing-quote { font-size: 1.4rem; margin-bottom: 40px; }
  .closing-details { flex-direction: column; gap: 28px; }

  .footer { padding: 28px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 375px) {
  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 2rem; }
  .services { padding: 48px 20px; }
  .process { padding: 48px 20px; }
  .closing { padding: 48px 20px; }
  .footer { padding: 20px; }
}