/* ── HERO ── */
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 5vw;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,213,181,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text { max-width: 520px; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text h1 em { font-style: italic; color: var(--sage); }
.hero-text p { color: var(--text-mid); font-size: 17px; max-width: 440px; margin-bottom: 32px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob {
  width: 420px; height: 420px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--sage) 100%);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  animation: blobmorph 8s ease-in-out infinite;
  opacity: 0.25;
}

@keyframes blobmorph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  50% { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
}

.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(61,122,94,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(26,60,46,0.08);
  bottom: 30px; left: 0;
  animation: floatup 4s ease-in-out infinite;
}

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

.hero-card-icon { font-size: 28px; }
.hero-card-text { display: flex; flex-direction: column; }
.hero-card-text strong { font-size: 14px; color: var(--forest); }
.hero-card-text span { font-size: 12px; color: var(--text-light); }

/* ── PILLARS ── */
.pillars { background: var(--warm-white); }
.pillars h2 { margin-bottom: 32px; }

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

.pillar-card {
  padding: 32px 28px;
  text-decoration: none;
  display: block;
}

.pillar-icon { font-size: 32px; margin-bottom: 16px; }
.pillar-card h3 { margin-bottom: 10px; font-size: 22px; }
.pillar-card p { color: var(--text-mid); font-size: 15px; margin-bottom: 16px; }
.pillar-link { color: var(--sage); font-size: 14px; font-weight: 500; }

/* ── BOOK TEASER ── */
.book-teaser {
  background: var(--forest);
  color: #fff;
}

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

.book-cover-mini {
  display: flex;
  flex-shrink: 0;
}

.bcm-spine {
  width: 20px;
  background: var(--sage);
  border-radius: 4px 0 0 4px;
}

.bcm-face {
  width: 160px;
  height: 220px;
  background: linear-gradient(160deg, #2d6b52, var(--forest));
  border: 1px solid rgba(168,213,181,0.3);
  border-left: none;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 12px;
  box-shadow: 8px 8px 32px rgba(0,0,0,0.4);
}

.bcm-face span { font-size: 36px; }
.bcm-face p { color: var(--mint); font-size: 13px; text-align: center; line-height: 1.5; font-family: 'Playfair Display', serif; }

.book-teaser-text .section-label { color: var(--mint); }
.book-teaser-text h2 { color: #fff; margin-bottom: 14px; }
.book-teaser-text p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 16px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }
.testimonials h2 { margin-bottom: 32px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card { padding: 28px; }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testi-card p { color: var(--text-mid); font-size: 15px; margin-bottom: 16px; font-style: italic; }
.testi-author { font-size: 13px; color: var(--text-light); }
.testi-author strong { color: var(--forest); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
  .hero-visual { display: none; }
  .pillars-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .book-teaser-inner { grid-template-columns: 1fr; text-align: center; }
  .book-cover-mini { justify-content: center; }
}
@media (max-width: 600px) {
  .pillars-grid, .testi-grid { grid-template-columns: 1fr; }
}
