/* ─────────────────────────────────────────────
   Home Page — scoped under .home-page
   Works alongside css/home.css (body has both
   .home and .home-page classes)
   ───────────────────────────────────────────── */

/* ─── About Hero ─── */
.home-page .about-hero {
  padding-top: 120px;
  padding-bottom: 100px;
}

.home-page .about-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-page .about-hero__content { max-width: 600px; }

.home-page .about-hero__content .label { margin-bottom: 20px; }

.home-page .about-hero__heading {
  font-family: 'Lora', serif;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1C1C1E;
  margin-bottom: 28px;
}

.home-page .about-hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #6B7280;
  margin-bottom: 40px;
  max-width: 520px;
}

.home-page .about-hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home-page .about-hero__ctas .hero__secondary {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1C1C1E;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #1C1C1E;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.home-page .about-hero__ctas .hero__secondary:hover {
  color: #2D6A4F;
  border-color: #2D6A4F;
}

.home-page .about-hero__image-wrapper {
  display: flex;
  justify-content: flex-end;
}

.home-page .about-hero__image {
  width: 100%;
  max-width: 480px;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}

/* ─── Timeline ─── */
.home-page .timeline {
  padding: 120px 0;
  background: #FFFFFF;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.home-page .timeline__label { margin-bottom: 16px; }

.home-page .timeline__heading {
  margin-bottom: 80px;
  max-width: 640px;
}

.home-page .timeline__list {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.home-page .timeline__list::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: #E5E7EB;
}

.home-page .timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding-bottom: 56px;
  position: relative;
}

.home-page .timeline-item:last-child { padding-bottom: 0; }

.home-page .timeline-item__year {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2D6A4F;
  /* color: var(--primary-darker); */
  letter-spacing: -0.01em;
  line-height: 1.3;
  padding-top: 2px;
  position: relative;
  text-align: right;
  padding-right: 24px;
  white-space: nowrap;
}

.home-page .timeline-item__year::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: #2D6A4F;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 1px #2D6A4F;
}

.home-page .timeline-item__title {
  font-family: 'Lora', serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1C1C1E;
  margin-bottom: 12px;
}

.home-page .timeline-item__text {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.75;
}

/* ─── Pillars (Unconventional Life) ─── */
.home-page .pillars {
  padding: 140px 0;
}

.home-page .pillars__intro {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
}

.home-page .pillars__intro .label { margin-bottom: 16px; }

.home-page .pillars__intro .section-heading {
  margin-bottom: 24px;
}

.home-page .pillars__sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #6B7280;
}

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

.home-page .pillar {
  padding: 40px 32px;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.home-page .pillar:hover {
  border-color: #2D6A4F;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 28, 30, 0.06);
}

.home-page .pillar__number {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2D6A4F;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.home-page .pillar__title {
  font-family: 'Lora', serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1C1C1E;
  margin-bottom: 16px;
}

.home-page .pillar__text {
  color: #6B7280;
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ─── Impact ─── */
.home-page .impact {
  padding: 120px 0;
  background: #FFFFFF;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.home-page .impact__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-page .impact__content .label { margin-bottom: 16px; }

.home-page .impact__content .section-heading {
  margin-bottom: 28px;
}

.home-page .impact__text {
  color: #6B7280;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 540px;
}

.home-page .impact__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid #F0F0F0;
}

.home-page .impact__stats--stacked {
  grid-template-columns: 1fr;
  gap: 32px;
}

.home-page .impact-stat__number {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1C1C1E;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.home-page .impact-stat__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D6A4F;
  margin-bottom: 12px;
}

.home-page .impact-stat__text {
  color: #6B7280;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.home-page .impact__image {
  width: 100%;
  max-width: 460px;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  margin-left: auto;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .home-page .pillars__grid { grid-template-columns: 1fr; gap: 20px; }
  .home-page .impact__stats { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .home-page .about-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .home-page .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .home-page .about-hero__image-wrapper {
    justify-content: center;
  }
  .home-page .about-hero__image {
    max-width: 100%;
    height: 440px;
  }

  .home-page .timeline { padding: 80px 0; }
  .home-page .timeline__heading { margin-bottom: 56px; }
  .home-page .timeline__list::before {
    left: 8px;
  }
  .home-page .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 40px;
    padding-bottom: 40px;
  }
  .home-page .timeline-item__year {
    text-align: left;
    padding-right: 0;
    font-size: 0.875rem;
  }
  .home-page .timeline-item__year::after {
    left: -37px;
    right: auto;
    top: 6px;
  }

  .home-page .pillars { padding: 80px 0; }
  .home-page .pillars__intro { margin-bottom: 48px; }

  .home-page .impact { padding: 80px 0; }
  .home-page .impact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .home-page .impact__image {
    height: 380px;
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .home-page .about-hero__heading { font-size: 2rem; }
  .home-page .about-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .home-page .impact-stat__number { font-size: 2rem; }
}
