:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --fg: #e8e4df;
  --fg-muted: #8a8580;
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
  --max-w: 1100px;
  --space-xl: clamp(80px, 10vw, 140px);
  --space-lg: clamp(48px, 6vw, 80px);
  --space-md: clamp(24px, 3vw, 40px);
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

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

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--space-xl) clamp(24px, 5vw, 80px);
  overflow: hidden;
}

.hero-inner { max-width: var(--max-w); position: relative; z-index: 2; }

.hero-badge {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  display: inline-block;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* ============ MANIFESTO ============ */
.manifesto {
  padding: var(--space-xl) clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.manifesto-inner { max-width: 720px; }

.manifesto-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

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

/* ============ FEATURES ============ */
.features {
  padding: var(--space-xl) clamp(24px, 5vw, 80px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: var(--max-w);
}

.feature-card {
  background: var(--bg-elevated);
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.feature-number {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  margin-bottom: 1rem;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============ PROCESS ============ */
.process {
  padding: var(--space-xl) clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.process-inner { max-width: var(--max-w); }

.process-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.process-step { position: relative; padding-top: 2rem; }

.step-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.process-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============ CLOSING ============ */
.closing {
  padding: var(--space-xl) clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

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

.closing-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.6;
  color: var(--fg);
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

.closing-brand {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.4;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: var(--space-md) clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
}

.footer-mark {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

.footer-year {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .hero-accent {
    width: 250px;
    height: 250px;
    top: 20%;
    right: -10%;
  }
}

@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .manifesto-text { font-size: 1.2rem; }
}