/* ============================================================
   Home Page — Specific Styles
   ============================================================ */

/* Hero */
.home-hero {
  padding-top: calc(var(--nav-height) + var(--space-24));
  padding-bottom: var(--space-24);
  background: var(--color-navy);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(45,83,119,0.6) 0%, transparent 65%);
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue), var(--color-teal));
}
.home-hero__content { position: relative; z-index: 1; max-width: 800px; }
.home-hero h1 {
  font-size: var(--text-5xl);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  line-height: var(--leading-tight);
}
.home-hero .lead {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}
.home-hero__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.70);
  max-width: 64ch;
  margin-bottom: var(--space-10);
  line-height: var(--leading-relaxed);
}

@media (max-width: 1024px) {
  .home-hero h1 { font-size: var(--text-4xl); }
}
@media (max-width: 768px) {
  .home-hero { padding-top: calc(var(--nav-height) + var(--space-16)); padding-bottom: var(--space-16); }
  .home-hero h1 { font-size: var(--text-3xl); }
  .home-hero .lead { font-size: var(--text-lg); }
}
@media (max-width: 480px) {
  .home-hero h1 { font-size: var(--text-2xl); }
}

/* Beliefs / Pillars */
.beliefs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
@media (max-width: 768px) {
  .beliefs__grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* Services on home */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

/* About strip */
.about-strip {
  background: var(--color-bg);
  padding-block: var(--space-20);
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-12);
  align-items: center;
}
.about-strip__photo {
  width: 240px;
  height: 360px;
  border-radius: var(--radius-lg);
  background: var(--color-lt-taupe);
  overflow: hidden;
}
.about-strip__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-strip__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
@media (max-width: 768px) {
  .about-strip__inner { grid-template-columns: 1fr; }
  .about-strip__photo { width: 180px; height: 270px; }
}

/* Book Tease */
.book-tease__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-10);
  align-items: center;
}
.book-tease__cover img {
  width: 100%;
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(32,48,82,0.2));
}
@media (max-width: 768px) {
  .book-tease__inner { grid-template-columns: 1fr; text-align: center; gap: var(--space-6); }
  .book-tease__cover img { max-width: 140px; }
}

/* Lead Magnet Tease */
.lead-magnet-tease {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-teal);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.lead-magnet-tease__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
}
