:root {
  --bg: #0C1B33;
  --bg-alt: #091525;
  --fg: #F5F0E6;
  --fg-muted: rgba(245,240,230,0.55);
  --accent: #C9A227;
  --accent-dim: rgba(201,162,39,0.12);
  --border: rgba(201,162,39,0.15);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--accent);
  border-opacity: 0.4;
}
.hero-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 500px;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.compass-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(201,162,39,0.15));
  animation: compassRotate 60s linear infinite;
}
@keyframes compassRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* MANIFESTO */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
}
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  font-style: italic;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
  margin-bottom: 2rem;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  padding-left: 2rem;
}
.manifesto-body em { color: var(--fg); font-style: italic; }

/* PROCESS */
.process { padding: 7rem 2rem; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1rem;
}
.process-item {
  padding: 3rem 2.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  position: relative;
}
.process-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  opacity: 0.4;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.process-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.9rem;
}
.process-item p { font-size: 0.92rem; color: var(--fg-muted); }

/* OUTCOMES */
.outcomes { padding: 7rem 2rem; background: var(--bg-alt); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.outcome-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s;
}
.outcome-card:hover { border-color: rgba(201,162,39,0.4); }
.outcome-icon { margin-bottom: 1.5rem; }
.outcome-icon svg { width: 40px; height: 40px; }
.outcome-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.outcome-card p { font-size: 0.9rem; color: var(--fg-muted); }

/* CLOSING */
.closing {
  padding: 9rem 2rem;
  text-align: center;
  background: var(--bg);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.closing-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-sub { font-size: 0.75rem; color: var(--fg-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-meta p { font-size: 0.8rem; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .process-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .manifesto, .process, .outcomes { padding: 5rem 1.5rem; }
  .closing { padding: 6rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.7rem; }
  .closing h2 { font-size: 1.4rem; }
  .closing-tagline { font-size: 1.3rem; }
}
