:root {
  --bg: #0f0f12;
  --fg: #f5f2ee;
  --accent: #c8a97e;
  --muted: #8a8279;
  --rose: #b8a99a;
  --dark: #070709;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(245,242,238,0.08);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 8rem 4rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--rose);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.dot {
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

/* Manifesto */
.manifesto {
  background: var(--dark);
  padding: 8rem 4rem;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--fg);
}
.manifesto-body {
  font-size: 0.95rem;
  color: var(--rose);
  line-height: 1.9;
  max-width: 580px;
}

/* Pillars */
.pillars {
  padding: 8rem 4rem;
}
.pillars-header {
  margin-bottom: 4rem;
}
.pillars-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pillars-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar {
  background: var(--dark);
  padding: 3rem 2.5rem;
  position: relative;
}
.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(200,169,126,0.15);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.pillar-desc {
  font-size: 0.85rem;
  color: var(--rose);
  line-height: 1.75;
}

/* Aura section */
.aura {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.aura-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
.aura-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,169,126,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.aura-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,169,126,0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 200px; height: 200px; }
.ring-2 { width: 300px; height: 300px; border-color: rgba(200,169,126,0.07); }
.ring-3 { width: 400px; height: 400px; border-color: rgba(200,169,126,0.04); }
.aura-core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.aura-initials {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.aura-role {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.aura-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.aura-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.aura-desc {
  font-size: 0.9rem;
  color: var(--rose);
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 440px;
}
.aura-stats {
  display: flex;
  gap: 3rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--fg);
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Closing */
.closing {
  padding: 8rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(245,242,238,0.06);
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(245,242,238,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 1.5rem 2rem; }
  .nav-links { display: none; }
  .hero { padding: 5rem 2rem 4rem; }
  .manifesto { padding: 5rem 2rem; }
  .pillars { padding: 5rem 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .aura { padding: 5rem 2rem; grid-template-columns: 1fr; gap: 3rem; }
  .aura-visual { height: 280px; }
  .closing { padding: 5rem 2rem; }
  .footer { padding: 2rem; flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .aura-stats { gap: 1.5rem; }
}