:root {
  --bg: #faf7f2;
  --bg-warm: #f5ede3;
  --bg-accent: #e8ddd0;
  --fg: #2d2a26;
  --fg-muted: #6b645b;
  --fg-light: #9a9189;
  --accent: #c4896e;
  --accent-deep: #a16b52;
  --accent-soft: #e6c4b3;
  --sage: #8fa68f;
  --sage-light: #c5d6c5;
  --lavender: #b8a9c9;
  --lavender-light: #e0d6eb;
  --radius: 16px;
  --radius-sm: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  font-weight: 500;
  line-height: 1.25;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 50%, var(--lavender-light) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--sage-light);
  top: -150px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-soft);
  bottom: -80px;
  left: -60px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--lavender-light);
  top: 50%;
  left: 55%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* === PILLARS === */
.pillars {
  padding: 100px 0;
  background: var(--bg);
}

.pillars h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--fg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* === JOURNAL === */
.journal {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.journal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.journal-mockup {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(45, 42, 38, 0.08), 0 4px 12px rgba(45, 42, 38, 0.04);
  transform: rotate(-2deg);
}

.journal-page .journal-date {
  font-size: 0.8rem;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.journal-prompt {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-deep);
  margin-bottom: 28px;
  line-height: 1.6;
}

.journal-lines span {
  display: block;
  height: 1px;
  background: var(--bg-accent);
  margin-bottom: 28px;
}

.journal-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.journal-text p {
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.journal-features {
  list-style: none;
  padding: 0;
}

.journal-features li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.journal-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}

/* === COMMUNITY === */
.community {
  padding: 100px 0;
  background: var(--bg);
}

.community-inner {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--sage-light) 100%);
  border-radius: 24px;
  padding: 72px 60px;
}

.community-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.community-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.community-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value {
  padding-top: 20px;
  border-top: 2px solid rgba(45, 42, 38, 0.1);
}

.value-mark {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-light);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.value p {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 120px 0;
  background: linear-gradient(175deg, var(--bg-warm) 0%, var(--bg) 100%);
  text-align: center;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

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

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

.footer-brand {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-light);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 80px;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
  }

  .shape-2 {
    width: 180px;
    height: 180px;
  }

  .shape-3 {
    width: 120px;
    height: 120px;
  }

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

  .journal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journal-mockup {
    transform: rotate(0deg);
  }

  .community-inner {
    padding: 48px 28px;
  }

  .community-values {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pillars, .journal, .community {
    padding: 72px 0;
  }

  .closing {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 60px;
  }

  .pillar-card {
    padding: 28px 24px;
  }

  .journal-mockup {
    padding: 28px;
  }
}