:root {
  --bg: #faf8f5;
  --bg-surface: #f2ede8;
  --fg: #0f172a;
  --fg-muted: #64748b;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --ring-1: rgba(249, 115, 22, 0.12);
  --ring-2: rgba(249, 115, 22, 0.07);
  --ring-3: rgba(249, 115, 22, 0.04);
  --border: #e2ddd6;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', 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: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--fg);
}

.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 48px 96px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.manifesto-headline em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.manifesto-stats {
  display: flex;
  gap: 40px;
}

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

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── MANIFESTO GRAPHIC ── */
.manifesto-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
}

.manifesto-graphic {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
}

.graphic-ring-1 {
  width: 240px;
  height: 240px;
  border-color: rgba(249, 115, 22, 0.25);
  animation: pulse-ring 3s ease-in-out infinite;
}

.graphic-ring-2 {
  width: 180px;
  height: 180px;
  border-color: rgba(249, 115, 22, 0.4);
  animation: pulse-ring 3s ease-in-out infinite 0.4s;
}

.graphic-ring-3 {
  width: 120px;
  height: 120px;
  border-color: rgba(249, 115, 22, 0.7);
  animation: pulse-ring 3s ease-in-out infinite 0.8s;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.graphic-center {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signal-label {
  position: absolute;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.signal-1 { bottom: 8px; right: -20px; }
.signal-2 { top: 50%; transform: translateY(-50%); left: -40px; }
.signal-3 { top: 8px; right: -20px; }

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}

/* ── SERVICES ── */
.services {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--ring-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLIENTS ── */
.clients {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.clients-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.clients-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-top: 16px;
}

.client-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  padding: 14px 20px;
  background: var(--bg-surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.client-item:hover {
  border-color: var(--accent);
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px 120px;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--fg);
}

.footer-tag {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .manifesto { padding: 56px 24px 72px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-right { display: none; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .clients { padding: 64px 24px; }
  .clients-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 64px 24px 80px; }
  .footer { padding: 20px 24px; }
  .manifesto-stats { gap: 28px; }
  .stat-num { font-size: 28px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .manifesto-stats { flex-wrap: wrap; gap: 20px; }
}