:root {
  --bg: #FAF7F0;
  --bg-dark: #1a1a2e;
  --fg: #1a1a2e;
  --fg-light: #f5f0e8;
  --accent: #FF6B35;
  --accent-dark: #e5521f;
  --muted: #6b6b7b;
  --border: rgba(26,26,46,0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Syne', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250,247,240,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}
.nav__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 48px 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero__bg-shape {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(255,107,53,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__container { max-width: 880px; }
.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__tags span {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* STATS */
.stats {
  background: var(--bg-dark);
  padding: 64px 48px;
}
.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.stats__item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px 32px;
}
.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stats__label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.stats__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 48px;
  background: var(--bg);
}
.manifesto__container { max-width: 760px; margin: 0 auto; }
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
  padding-left: 32px;
  border-left: 4px solid var(--accent);
}
.manifesto__body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}
.manifesto__body em { font-style: italic; color: var(--fg); }
.manifesto__body strong { font-weight: 700; color: var(--fg); }

/* SERVICES */
.services {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.services__header { max-width: 1200px; margin: 0 auto 64px; }
.services__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.services__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--bg-dark);
  padding: 48px 40px;
  position: relative;
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card__icon {
  color: var(--accent);
  margin-bottom: 28px;
}
.service-card__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-light);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

/* DIFFERENCE */
.difference {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.difference__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.difference__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.difference__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.difference__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.difference__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  align-items: center;
}
.diff-row:first-child { border-top: 1px solid var(--border); }
.diff-row__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.diff-row__val {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.diff-row__val--bad { color: #c0392b; opacity: 0.7; }
.diff-row__val--good { color: #27ae60; }

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--accent);
  text-align: center;
}
.closing__container { max-width: 700px; margin: 0 auto; }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing__sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.closing__cta {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  padding: 64px 48px;
  text-align: center;
}
.footer__inner { max-width: 400px; margin: 0 auto; }
.footer__brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.footer__dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}
.footer__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.footer__legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 72px 24px 60px; min-height: auto; }
  .hero__headline { font-size: 48px; }
  .hero__sub { font-size: 17px; }
  .stats { padding: 48px 24px; }
  .stats__inner { gap: 0; }
  .stats__divider { display: none; }
  .stats__item { min-width: 100%; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .manifesto { padding: 72px 24px; }
  .services { padding: 72px 24px; }
  .services__grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 36px 28px; }
  .difference { padding: 72px 24px; }
  .difference__container { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 40px; }
  .nav__tag { display: none; }
}