/* ============================================================
   PAGES/HOME.CSS - Hero, stats, pillars, vulture band
   ============================================================ */

/* ---- Hero ---- */
.hero {
  padding: 54px 0 70px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}

.hero-grid > div {
  flex: 1 1 420px;
}

.hero h1 {
  font-size: 52px;
  margin: 14px 0 18px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #191919;
}

.hero-lede {
  font-size: 19px;
  max-width: 46ch;
  color: #2a2a2a;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.press-line {
  margin-top: 34px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: #2a2a2a;
}

.press-line strong {
  color: #191919;
}

/* ---- Hero carousel ---- */
.carousel {
  position: relative;
  height: 520px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 18, 18, 0.1);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  opacity: 0;
  transition: opacity 0.7s ease;
  color: #fff;
}

.slide.active {
  opacity: 1;
}

.slide-kicker {
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}

.slide-headline {
  font-family: "Fraunces", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.slide-sub {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.9;
}

.slide-1 { 
   background-image: linear-gradient(160deg, rgba(18, 18, 18, 0.75) 0%, rgba(22, 75, 9, 0.253) 75%) ,url("../../assets/images/hero-1.png");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
}
.slide-2 {
    background-image: linear-gradient(160deg, rgba(18, 18, 18, 0.75) 0%, rgba(33, 75, 9, 0.267) 75%) ,url("../../assets/images/hero-2.png");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
  }
.slide-3 { 
    background-image: linear-gradient(160deg, rgba(18, 18, 18, 0.75) 0%, rgba(9, 75, 14, 0.219) 75%) ,url("../../assets/images/Slide03.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.slide-4 { 
  background-image:url("../../assets/images/slide01.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.slide-5 { 
  background-image:url("../../assets/images/slide-04.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-monogram {
  position: absolute;
  top: 30px;
  left: 36px;
  right: 36px;
  bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 110px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.02em;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 7px;
  z-index: 5;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
  transition:
    width 0.2s,
    border-radius 0.2s;
}

.carousel-dots button.active {
  background: #fff;
  width: 22px;
  border-radius: 5px;
}

/* ---- Stats band ---- */
.stats-band {
  padding: 36px 0;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}

.stats-grid > div {
  flex: 1 1 220px;
}

.stat-num {
  font-family: "Fraunces", serif;
  font-size: 38px;
  font-weight: 700;
  color: #77bd43;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 4px;
}

/* ---- Pillars ---- */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.pillar-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(18, 18, 18, 0.08);
  border-top: 4px solid #77bd43;
}

.pillar-card .pillar-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: #77bd43;
}

.pillar-card h3 {
  font-size: 19px;
  color: #191919;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 15px;
  color: #2a2a2a;
  margin-bottom: 14px;
}

.pillar-card a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #77bd43;
}

.pillar-card a:hover {
  text-decoration: underline;
}

/* ---- Vulture dark band (home teaser) ---- */
.vulture-band {
  background: #191919;
  color: #f5fff0;
  padding: 70px 0 56px;
}

.vulture-band .eyebrow {
  color: #e8c9c2;
}

.vulture-band h2 {
  color: #fff;
  font-size: 32px;
  margin-top: 8px;
}

.vulture-band .section-intro {
  color: #cfcfcf;
}

.vulture-band .section-head {
  margin-bottom: 38px;
}

/* ---- Responsive ---- */
@media (max-width: 680px) {
  .hero h1 {
    font-size: 34px;
  }

  .slide-monogram {
    font-size: 64px;
  }

  .carousel {
    height: 380px;
  }
}
