/* =========================================
   WorkshopBox — Landing Page Theme
   ========================================= */

:root {
  --bg: #F8F5F0;
  --fg: #2D2A26;
  --accent: #C1440E;
  --accent-light: #E8D5C4;
  --muted: #7A6F63;
  --surface: #EDE8E1;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
   MANIFESTO SECTION
   ========================================= */

.manifesto {
  background: var(--accent);
  color: var(--white);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.manifesto::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 36px;
  letter-spacing: -1px;
}

.manifesto-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.manifesto-body p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 16px;
}

.manifesto-body p:last-child {
  margin-bottom: 0;
}

.manifesto-pillars {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 48px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 24px 0;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 0 24px;
}

.pillar:first-child {
  padding-left: 0;
}

.pillar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.pillar-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
}

.manifesto-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.stat-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
}

/* =========================================
   FORMAT SECTION
   ========================================= */

.format {
  padding: 100px 24px;
  background: var(--bg);
}

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

.format-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.format-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 60px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--surface);
}

.format-card {
  background: var(--bg);
  padding: 48px 40px;
}

.format-icon {
  margin-bottom: 20px;
}

.format-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.format-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* =========================================
   EXAMPLES SECTION
   ========================================= */

.examples {
  padding: 100px 24px;
  background: var(--fg);
  color: var(--white);
}

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

.examples-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.example-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
  border-radius: 4px;
  transition: border-color 0.2s;
}

.example-card:hover {
  border-color: rgba(193,68,14,0.5);
}

.example-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.example-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 12px;
}

.example-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.example-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.example-duration {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.example-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
}

/* =========================================
   FACILITATOR SECTION
   ========================================= */

.facilitator {
  padding: 100px 24px;
  background: var(--surface);
}

.facilitator-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  align-items: center;
}

.facilitator-image {
  display: flex;
  justify-content: center;
}

.facilitator-initial {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}

.facilitator-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.facilitator-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 8px;
}

.facilitator-role {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
}

.facilitator-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}

.fstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.fstat-label {
  font-size: 12px;
  color: var(--muted);
}

.facilitator-bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================
   PROCESS SECTION
   ========================================= */

.process {
  padding: 100px 24px;
  background: var(--bg);
}

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

.process-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.process-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 64px;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--surface);
}

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

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* =========================================
   CLOSING SECTION
   ========================================= */

.closing {
  padding: 100px 24px 120px;
  background: var(--bg);
  text-align: center;
}

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

.closing-deco {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.closing-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  padding: 32px 24px;
  background: var(--fg);
  color: rgba(255,255,255,0.5);
}

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

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
}

.footer-links {
  font-size: 12px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  .manifesto {
    padding: 60px 20px 80px;
  }

  .manifesto-pillars {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .pillar {
    padding: 0;
    width: 100%;
  }

  .pillar-divider {
    display: none;
  }

  .manifesto-stat {
    flex-direction: column;
    gap: 4px;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .examples-grid {
    grid-template-columns: 1fr;
  }

  .facilitator-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .facilitator-image {
    order: -1;
  }

  .facilitator-stats {
    justify-content: center;
  }

  .step {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 32px 0;
  }

  .step-num {
    font-size: 36px;
  }

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

@media (max-width: 480px) {
  .manifesto-headline {
    font-size: 40px;
  }

  .facilitator-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .fstat {
    align-items: center;
  }
}