:root {
  --bg: #0d0a08;
  --bg-card: #161008;
  --bg-card-hover: #1e1610;
  --fg: #f5ede0;
  --fg-muted: #a89070;
  --accent: #c8922a;
  --accent-dim: rgba(200, 146, 42, 0.15);
  --accent-glow: rgba(200, 146, 42, 0.25);
  --warm: #e8c97a;
}

* { 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;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 10, 8, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  font-weight: 300;
}

/* Braid Orb Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.braid-orb {
  position: relative;
  width: 320px;
  height: 320px;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
}

.orb-ring-1 { width: 320px; height: 320px; top: 0; left: 0; }
.orb-ring-2 { width: 260px; height: 260px; top: 30px; left: 30px; border-color: rgba(200,146,42,0.2); }
.orb-ring-3 { width: 200px; height: 200px; top: 60px; left: 60px; border-color: rgba(200,146,42,0.15); }

.orb-strand {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--warm);
}

.orb-strand-1 { width: 160px; height: 160px; top: 80px; left: 80px; animation: spin-slow 8s linear infinite; }
.orb-strand-2 { width: 130px; height: 130px; top: 95px; left: 95px; animation: spin-slow 6s linear infinite reverse; }
.orb-strand-3 { width: 100px; height: 100px; top: 110px; left: 110px; animation: spin-slow 10s linear infinite; }
.orb-strand-4 { width: 80px; height: 80px; top: 120px; left: 120px; animation: spin-slow 5s linear infinite reverse; }
.orb-strand-5 { width: 60px; height: 60px; top: 130px; left: 130px; animation: spin-slow 7s linear infinite; }
.orb-strand-6 { width: 50px; height: 50px; top: 135px; left: 135px; animation: spin-slow 4s linear infinite reverse; }
.orb-strand-7 { width: 36px; height: 36px; top: 142px; left: 142px; border-top-color: var(--warm); border-right-color: transparent; animation: spin-slow 9s linear infinite; }
.orb-strand-8 { width: 24px; height: 24px; top: 148px; left: 148px; border-top-color: var(--accent); border-right-color: var(--accent); animation: spin-slow 3s linear infinite reverse; }

.orb-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}

.orb-dot-1 { top: 75px; left: 50%; transform: translateX(-50%); }
.orb-dot-2 { bottom: 75px; left: 50%; transform: translateX(-50%); }
.orb-dot-3 { left: 75px; top: 50%; transform: translateY(-50%); }
.orb-dot-4 { right: 75px; top: 50%; transform: translateY(-50%); }
.orb-dot-5 { top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--warm); box-shadow: 0 0 20px rgba(232,201,122,0.5); }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #110e0a 100%);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
}

.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding-top: 6px;
}

.manifesto-statement p {
  font-size: 20px;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.manifesto-statement p:last-child { margin-bottom: 0; }

/* SERVICES */
.services {
  padding: 100px 48px;
  background: #110e0a;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 146, 42, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(200, 146, 42, 0.25);
}

.service-icon {
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* HOW */
.how {
  padding: 100px 48px;
  background: linear-gradient(180deg, #110e0a 0%, var(--bg) 100%);
  border-top: 1px solid rgba(200, 146, 42, 0.08);
}

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

.how-left .section-label {
  margin-bottom: 16px;
}

.how-left .section-title {
  font-size: clamp(28px, 3.5vw, 40px);
}

.how-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-stat {
  padding: 28px 0;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.4;
}

.how-divider {
  height: 1px;
  background: rgba(200, 146, 42, 0.1);
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 60px 48px 80px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid rgba(200, 146, 42, 0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .braid-orb { width: 220px; height: 220px; }
  .orb-ring-1 { width: 220px; height: 220px; }
  .orb-ring-2 { width: 180px; height: 180px; top: 20px; left: 20px; }
  .orb-ring-3 { width: 140px; height: 140px; top: 40px; left: 40px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto, .services, .how, .closing, .footer { padding-left: 24px; padding-right: 24px; }
}