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

:root {
  --bg: #06090F;
  --surface: #0C1220;
  --surface-2: #111A2E;
  --fg: #F0EDE6;
  --fg-muted: #8A8F9E;
  --accent: #C8922A;
  --accent-dim: rgba(200,146,42,0.12);
  --border: rgba(240,237,230,0.07);
  --navy: #0B1220;
}

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(6,9,15,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.logo-text strong { color: var(--fg); font-weight: 600; }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,146,42,0.08);
}
.geo-circle-1 { width: 600px; height: 600px; top: -100px; right: -150px; }
.geo-circle-2 { width: 400px; height: 400px; top: 50px; right: 0px; border-color: rgba(200,146,42,0.04); }
.geo-circle-3 { width: 200px; height: 200px; bottom: 100px; left: -50px; border-color: rgba(200,146,42,0.06); }

.geo-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,0.05), transparent);
  height: 1px;
}
.geo-line-1 { width: 60%; top: 40%; left: 20%; }
.geo-line-2 { width: 40%; top: 65%; left: 5%; transform: rotate(-15deg); }

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  max-width: 860px;
  z-index: 1;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-accent { color: var(--accent); font-style: italic; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--fg); }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* MANIFESTO */
.manifesto {
  padding: 7rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 2rem;
  position: relative;
}
.manifesto-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -2rem; left: -1rem;
  font-family: 'Playfair Display', serif;
}
.manifesto-body { color: var(--fg-muted); font-size: 1rem; font-weight: 300; line-height: 1.8; }

/* SERVICES */
.services { padding: 7rem 4rem; }
.services-header { margin-bottom: 4rem; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-3px); }

.service-icon { color: var(--accent); margin-bottom: 1.5rem; }
.service-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-desc { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

/* OUTCOMES */
.outcomes {
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.outcomes-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}
.outcomes-body { color: var(--fg-muted); font-weight: 300; line-height: 1.7; margin-bottom: 3rem; }
.outcomes-list { display: flex; flex-direction: column; gap: 2rem; }
.outcome { display: flex; gap: 1.25rem; }
.outcome-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 0.5rem; }
.outcome strong { font-size: 0.95rem; display: block; margin-bottom: 0.4rem; }
.outcome p { color: var(--fg-muted); font-size: 0.875rem; font-weight: 300; line-height: 1.6; }

.outcomes-right { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 3.5rem; }
.outcome-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 10px;
}
.accent-card { border-color: rgba(200,146,42,0.2); background: linear-gradient(135deg, var(--surface-2), rgba(200,146,42,0.05)); }
.outcome-card-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.outcome-card-stat { font-size: 1rem; font-weight: 400; line-height: 1.5; }

/* CLOSING */
.closing {
  padding: 10rem 4rem 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,146,42,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; }
.closing-badge { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 2rem; }
.closing-headline { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 7rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.closing-sub { color: var(--fg-muted); font-size: 1.1rem; font-weight: 300; line-height: 1.8; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-copy { color: var(--fg-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links span { color: var(--fg-muted); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .manifesto, .services, .outcomes, .closing { padding: 4rem 1.5rem; }
  .outcomes { grid-template-columns: 1fr; gap: 3rem; }
  .outcomes-right { padding-top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .closing-headline { font-size: 3rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .manifesto-quote::before { display: none; }
}