/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF7F2;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #C8500A;
  --accent-light: #F5E6DD;
  --warm-dark: #292524;
  --border: #E7E2DA;
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 60px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,80,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--warm-dark);
  line-height: 1.05;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 440px;
  font-weight: 300;
  line-height: 1.65;
}

/* === VOICES VISUAL === */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.voices-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  animation: pulse-ring 4s ease-in-out infinite;
}

.ring-1 { width: 180px; height: 180px; animation-delay: 0s; }
.ring-2 { width: 240px; height: 240px; animation-delay: 0.6s; border-color: rgba(200,80,10,0.2); }
.ring-3 { width: 300px; height: 300px; animation-delay: 1.2s; border-color: rgba(200,80,10,0.1); }

@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}

.voice-core {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(200,80,10,0.3);
}

.voice-core-label {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.voice-bubble {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--fg-muted);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
}

.vb-1 { top: 20px; left: -10px; animation: float 3s ease-in-out infinite; }
.vb-2 { top: 80px; right: -10px; animation: float 3s ease-in-out infinite 0.5s; }
.vb-3 { bottom: 80px; left: -10px; animation: float 3s ease-in-out infinite 1s; }
.vb-4 { bottom: 20px; right: -10px; animation: float 3s ease-in-out infinite 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* === MANIFESTO === */
.manifesto {
  background: var(--warm-dark);
  color: var(--bg);
  padding: 100px 80px;
}

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

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
}

.manifesto-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 28px;
  line-height: 1.2;
}

.manifesto-body {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.65);
  max-width: 620px;
  line-height: 1.75;
  font-weight: 300;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 48px 0;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(250,247,242,0.5);
  font-weight: 400;
}

/* === SECTION COMMON === */
.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--warm-dark);
  max-width: 580px;
  line-height: 1.15;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 100px 80px;
  background: var(--bg);
}

.howitworks-header {
  margin-bottom: 72px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.step { display: flex; flex-direction: column; gap: 16px; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--accent);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--warm-dark);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
}

.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === THE COLLECTIVE === */
.thecollective {
  padding: 100px 80px;
  background: var(--accent-light);
}

.collective-header { margin-bottom: 64px; }

.collective-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.collective-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.collective-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.collective-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-dark);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
}

.collective-body {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 120px 80px;
  background: var(--warm-dark);
  text-align: center;
}

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

.closing-headline {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 28px;
  line-height: 1.1;
}

.closing-body {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.6);
  margin-bottom: 32px;
  line-height: 1.75;
  font-weight: 300;
}

.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
}

/* === FOOTER === */
.footer {
  padding: 48px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-dark);
}

.footer-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  flex: 1;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px 40px;
    min-height: auto;
    text-align: left;
  }

  .hero-right { order: -1; }
  .voices-visual { width: 200px; height: 200px; }
  .ring-1 { width: 120px; height: 120px; }
  .ring-2 { width: 160px; height: 160px; }
  .ring-3 { width: 200px; height: 200px; }
  .voice-core { width: 60px; height: 60px; }
  .voice-core-label { font-size: 1.5rem; }

  .manifesto { padding: 72px 32px; }
  .howitworks { padding: 72px 32px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .thecollective { padding: 72px 32px; }
  .collective-grid { grid-template-columns: 1fr; }
  .closing { padding: 72px 32px; }
  .footer { padding: 40px 32px; }
  .footer-inner { flex-wrap: wrap; gap: 16px; }
}