/* ============================================================
   Homepage Styles
   ============================================================ */

/* ---------------- Hero Carousel ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 56vw, 560px);
}
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide-bg svg { width: 100%; height: 100%; }
.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 7vw;
  max-width: 620px;
}
.slide-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.slide h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 16px;
}
.slide p { font-size: 16px; color: var(--ink-soft); margin-bottom: 26px; max-width: 460px; }
.slide .btn-lg { padding: 15px 34px; }

.hero-nav {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: all 0.2s var(--ease);
}
.hero-dot.active { background: var(--green-deep); width: 28px; border-radius: 5px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.hero-arrow:hover { background: #fff; box-shadow: var(--shadow-sm); }
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }
.hero-arrow svg { width: 22px; height: 22px; }

/* ---------------- Bundles banner strip ---------------- */
.bundle-strip {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: #fff;
  text-align: center;
  padding: 30px 16px;
}
.bundle-strip h2 { color: #fff; font-size: clamp(20px, 2.6vw, 28px); }
.bundle-strip p { opacity: 0.92; margin-top: 6px; font-size: 14px; }

/* ---------------- Marquee Stats ---------------- */
.marquee {
  background: var(--cream);
  overflow: hidden;
  padding: 22px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: scrollMarq 26s linear infinite;
  padding-left: 56px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollMarq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
}
.marq-item svg { width: 30px; height: 30px; color: var(--green); }
.marq-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ---------------- Team / Brand section ---------------- */
.brand-story {
  text-align: center;
  padding: 60px 0;
}
.brand-story .eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: 10px;
}
.brand-story h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 14px; }
.brand-story p { max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: 15px; }
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.feature {
  text-align: center;
  padding: 26px 18px;
  background: var(--cream);
  border-radius: var(--radius);
}
.feature svg { width: 40px; height: 40px; color: var(--green-deep); margin: 0 auto 12px; }
.feature h4 { font-size: 15px; margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--ink-soft); }

/* ---------------- Featured promo split ---------------- */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: #fff;
}
.promo-card .promo-bg { position: absolute; inset: 0; z-index: 0; }
.promo-card .promo-bg svg { width: 100%; height: 100%; }
.promo-card .promo-content { position: relative; z-index: 2; }
.promo-card h3 { font-family: Georgia, serif; font-size: 26px; margin-bottom: 6px; }
.promo-card p { font-size: 14px; opacity: 0.95; margin-bottom: 14px; }
.promo-card .btn-light { padding: 11px 22px; font-size: 12px; }

@media (max-width: 860px) {
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .promo-split { grid-template-columns: 1fr; }
  .hero-arrow { display: none; }
}
@media (max-width: 480px) {
  .feature-row { grid-template-columns: 1fr; }
  .slide-content { padding: 0 6vw; }
}
