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

:root {
  --bg: #0f0f14;
  --bg-2: #16161e;
  --fg: #f0ede6;
  --fg-muted: #9a958a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.nav-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

/* HERO */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 900px; }
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline .hero-line-1,
.hero-headline .hero-line-2 {
  display: block;
  opacity: 0.55;
}
.hero-headline .hero-line-3 {
  display: block;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.hero-stat { padding-right: 48px; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.hero-stat-desc {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 140px;
}
.hero-stat-div {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 760px; }
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.manifesto-text em { color: var(--accent); font-style: normal; }
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* SERVICES */
.services {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.services-header { margin-bottom: 64px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  max-width: 560px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 40px 36px;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PROOF */
.proof {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 900px; }
.proof-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--fg);
  margin: 16px 0 56px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.proof-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.proof-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.proof-note {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* PROCESS */
.process {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 760px; }
.process-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--fg);
  margin: 16px 0 64px;
}
.process-steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
}
.step-content { flex: 1; padding-top: 4px; }
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* NICHES */
.niches {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.niches-inner { max-width: 960px; }
.niches-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--fg);
  margin: 16px 0 56px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.niche-card {
  background: var(--bg);
  padding: 44px 40px;
}
.niche-emoji { color: var(--accent); margin-bottom: 20px; }
.niche-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.niche-stat {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.niche-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 760px; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tag {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}
.footer-legal {
  margin-left: auto;
  font-size: 11px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-stat-row { flex-direction: column; gap: 28px; }
  .hero-stat-div { display: none; }
  .hero-stat { padding-right: 0; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof { padding: 64px 24px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item { border-bottom: 1px solid var(--border); }
  .process { padding: 64px 24px; }
  .step { gap: 20px; }
  .step-num { width: 48px; font-size: 36px; }
  .manifesto { padding: 64px 24px; }
  .niches { padding: 64px 24px; }
  .niches-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-wrap: wrap; }
  .footer-legal { margin-left: 0; }
}