:root {
  --bg: #f5f0eb;
  --bg-dark: #1a1a1a;
  --fg: #1a1a1a;
  --fg-light: #f5f0eb;
  --accent: #c4826d;
  --muted: #8a8077;
  --border: #d4cdc5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 2rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--muted);
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 2rem;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

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

.manifesto-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.5;
  color: var(--fg);
}

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

/* === SECTION LABEL === */
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

/* === PILLARS === */
.pillars {
  padding: 6rem 2rem 8rem;
  background: var(--bg-dark);
  color: var(--fg-light);
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pillars .section-label {
  color: var(--accent);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.pillar-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a09a92;
}

/* === PROCESS === */
.process {
  padding: 8rem 2rem;
  background: var(--bg);
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.step-marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* === POSITIONING === */
.positioning {
  padding: 6rem 2rem 8rem;
  background: #ebe5dd;
}

.positioning-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.positioning-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.positioning-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.position-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.position-card:last-child {
  border-bottom: none;
}

.position-price,
.position-market,
.position-movement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.position-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 10rem 2rem;
  background: var(--bg-dark);
  color: var(--fg-light);
  text-align: center;
}

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

.closing-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.4;
  margin-bottom: 3rem;
}

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

.closing-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-dark);
  color: var(--muted);
  border-top: 1px solid #2a2a2a;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--fg-light);
  margin-bottom: 0.25rem;
}

.footer-copy {
  font-size: 0.75rem;
}

.footer-right {
  text-align: right;
}

.footer-note {
  font-size: 0.75rem;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .positioning-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-right {
    text-align: left;
  }

  .process-step {
    gap: 1.5rem;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  .manifesto {
    padding: 5rem 1.5rem;
  }

  .pillars {
    padding: 4rem 1.5rem 5rem;
  }

  .process {
    padding: 5rem 1.5rem;
  }

  .positioning {
    padding: 4rem 1.5rem 5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }
}