:root {
  --bg: #0F0F0F;
  --bg-2: #1A1A1A;
  --bg-3: #252525;
  --fg: #F5F0E8;
  --fg-muted: #9A9590;
  --accent: #E8A838;
  --accent-dim: #C48A20;
  --border: rgba(245, 240, 232, 0.1);
}

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

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

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.nav__tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 96px 48px 80px;
  max-width: 960px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero__lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 640px;
}
.hero__stat {
  background: var(--bg-2);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Manifesto */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.manifesto__inner {
  max-width: 760px;
}
.manifesto__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto__quote {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 32px;
}
.manifesto__body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  padding-left: 28px;
  font-weight: 300;
}

/* Services */
.services {
  padding: 96px 48px;
}
.services__header {
  margin-bottom: 56px;
}
.services__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.services__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card--featured {
  background: var(--bg-3);
  border: 1px solid var(--accent-dim);
  border-radius: 0;
}
.service-card__tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-card__price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--fg);
}
.service-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card__features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}
.service-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Niches */
.niches {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}
.niches__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.niches__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  max-width: 640px;
  line-height: 1.3;
  margin-bottom: 56px;
  color: var(--fg);
}
.niches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.niche {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.niche__icon {
  color: var(--accent);
  margin-bottom: 4px;
}
.niche__name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.niche__desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Process */
.process {
  padding: 96px 48px;
}
.process__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.process__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  max-width: 560px;
  margin-bottom: 56px;
  color: var(--fg);
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step__number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}
.step__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 10px;
}
.step__body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 96px 48px;
  color: #0F0F0F;
}
.closing__inner { max-width: 800px; }
.closing__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.6);
  margin-bottom: 20px;
  font-weight: 600;
}
.closing__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0F0F0F;
  margin-bottom: 28px;
}
.closing__body {
  font-size: 1.05rem;
  color: rgba(15,15,15,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 400;
}
.closing__status {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.5);
}

/* Footer */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}
.footer__meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-top: 16px;
}

/* Nav right */
.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__link {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav__link--portfolio {
  color: var(--accent);
  border-color: var(--accent-dim);
}
.nav__link--portfolio:hover {
  background: var(--accent);
  color: #0F0F0F;
  border-color: var(--accent);
}

/* Portfolio hero */
.portfolio__hero {
  padding: 72px 48px 56px;
  border-bottom: 1px solid var(--border);
}
.portfolio__hero-inner {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.portfolio__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.portfolio__headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--fg);
}
.portfolio__lede {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}
.portfolio__hero-phone {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(232, 168, 56, 0.15);
  border: 1px solid rgba(232, 168, 56, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero__stats { grid-template-columns: 1fr; }
  .services { padding: 64px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .niches { padding: 64px 24px; }
  .niches__grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 64px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .closing { padding: 64px 24px; }
  .manifesto { padding: 64px 24px; }
  .footer { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .niches__grid { grid-template-columns: 1fr; }
  .hero__headline { font-size: 2.4rem; }
}