:root {
  --bg: #0D0D0D;
  --surface: #151515;
  --surface-2: #1E1E1E;
  --text: #F0EBE1;
  --text-muted: #8A8078;
  --accent: #FF8C00;
  --accent-dim: rgba(255,140,0,0.12);
  --border: rgba(240,235,225,0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 60px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,235,225,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,235,225,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(255,140,0,0.04) 0%, transparent 70%);
}
.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 40px;
}
.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-capabilities span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--surface);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.manifesto-text--accent {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--font-display);
  font-style: italic;
}

/* ── Section shared ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ── Services ── */
.services {
  padding: 100px 60px;
}
.services-header {
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface-2); }
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Niches ── */
.niches {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niches-inner { max-width: 860px; }
.niches-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.niches-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
}
.niche-marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--accent);
  border-radius: 0;
  margin-top: 8px;
}
.niches-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  margin-top: 32px;
}

/* ── Process ── */
.process {
  padding: 100px 60px;
}
.process .section-headline { margin-bottom: 60px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.process-step {
  background: var(--surface);
  padding: 36px 28px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-dim);
  margin-bottom: 20px;
  font-weight: 400;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 400;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Closing ── */
.closing {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 760px; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-style: italic;
}
.closing-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Footer ── */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}
.footer-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav, .hero, .manifesto, .services, .niches, .process, .closing, .footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero { min-height: 80vh; padding-top: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.75rem; }
}