/* === FONTS === */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* === COLORS === */
  --bg: #F5F0E8;
  --bg-warm: #EDE6D8;
  --fg: #1A1A18;
  --fg-muted: #6B6459;
  --accent: #2A5C3F;
  --accent-light: #3D7A56;
  --gold: #B8843A;
  --gold-light: #D4A84B;
  --border: #D4CAB8;
  --cream-dark: #E0D8C8;

  /* === SPACING === */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;

  /* === TYPE === */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 3rem;
  --text-5xl: 4.5rem;
  --text-hero: clamp(3.5rem, 8vw, 7rem);
}

/* === BASE === */
*, *::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: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.tagline {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(42, 92, 63, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-rule {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-2xl) 2.5rem;
}

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

.manifesto-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.3rem;
  opacity: 0.7;
}

.manifesto-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--bg);
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  font-weight: 300;
  max-width: 580px;
}

/* === PROCESS === */
.process {
  background: var(--bg-warm);
  padding: var(--space-2xl) 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.process-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.process-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-item {
  padding: 0 2rem;
}

.process-item:first-child {
  padding-left: 0;
}

.process-item:last-child {
  padding-right: 0;
}

.process-divider {
  width: 1px;
  height: 100%;
  min-height: 140px;
  background: var(--border);
  align-self: stretch;
}

.process-numeral {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.process-desc {
  font-size: var(--text-base);
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  background: var(--bg);
  padding: var(--space-2xl) 2.5rem;
  text-align: center;
}

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

.closing-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.closing-attr {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 4rem;
}

.closing-rule {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 3rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === FOOTER === */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: 3rem 2.5rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg);
  display: block;
  margin-bottom: 0.35rem;
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
}

.footer-meta {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.45);
  text-align: right;
  line-height: 1.7;
  font-weight: 300;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .manifesto-number {
    font-size: var(--text-xl);
  }

  .manifesto {
    padding: var(--space-xl) 1.5rem;
  }

  .process {
    padding: var(--space-xl) 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-divider {
    display: none;
  }

  .process-item {
    padding: 0;
  }

  .closing {
    padding: var(--space-xl) 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    font-size: var(--text-base);
  }

  .process-numeral {
    font-size: var(--text-4xl);
  }
}

/* === CLOSING CTA (sessions link from landing page) === */
.closing-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.closing-cta:hover {
  background: var(--accent);
  color: var(--bg);
}