/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ---- SPLASH SCREEN ---- */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--soil-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  overflow: hidden;
}

.splash-particles { position: absolute; inset: 0; pointer-events: none; }

.splash-particle {
  position: absolute;
  background: var(--spring);
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise var(--dur, 3s) ease-out var(--delay, 0s) infinite;
}

.splash-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(76, 175, 80, 0.3);
  animation: pulse-ring 3s ease-out infinite;
}

.splash-ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.splash-ring-2 { width: 320px; height: 320px; animation-delay: 0.5s; }
.splash-ring-3 { width: 460px; height: 460px; animation-delay: 1s; }

.splash-logo {
  width: 550px;
  height: 550px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite, fadeIn 0.6s ease;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(76, 175, 80, 0.5));
  margin-top: 5rem !important;     /* ← ADD THIS — pushes logo down */
  margin-bottom: -4rem !important;
}

.splash-text {
  display: flex;
  gap: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}

.splash-text span {
  display: inline-block;
  opacity: 0;
  animation: fadeUp 0.4s ease forwards;
}

.splash-text span:nth-child(1) { animation-delay: 0.4s; }
.splash-text span:nth-child(2) { animation-delay: 0.5s; }
.splash-text span:nth-child(3) { animation-delay: 0.6s; }
.splash-text span:nth-child(4) { animation-delay: 0.7s; }
.splash-text .sp { width: 1rem; }
.splash-text span:nth-child(6) { animation-delay: 0.85s; color: var(--spring); }
.splash-text span:nth-child(7) { animation-delay: 0.95s; color: var(--spring); }
.splash-text span:nth-child(8) { animation-delay: 1.05s; color: var(--spring); }
.splash-text span:nth-child(9) { animation-delay: 1.15s; color: var(--spring); }
.splash-text span:nth-child(10) { animation-delay: 1.25s; color: var(--spring); }
.splash-text span:nth-child(11) { animation-delay: 1.35s; color: var(--spring); }

.splash-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.6s forwards;
  position: relative;
  z-index: 2;
}

.splash-exit {
  animation: fadeIn 0.8s ease reverse forwards !important;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--soil-dark) 0%, #0f2010 50%, #162818 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7rem 6vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--leaf) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
  opacity: 0.15;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--water) 0%, transparent 70%);
  top: 50%; left: -100px;
  opacity: 0.1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76,175,80,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,175,80,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-particle {
  position: absolute;
  bottom: -20px;
  animation: particle-rise 6s ease-out infinite;
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.35);
  color: var(--spring);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--spring);
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-typed-wrap {
  color: var(--spring);
  display: inline-block;
  min-width: 280px;
}

.cursor {
  color: var(--spring);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-logo-ring {
  position: relative;
  width: 720px;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.r1 {
  width: 100%; height: 100%;
  border-color: rgba(76, 175, 80, 0.2);
  animation: spin-slow 30s linear infinite;
  background: radial-gradient(circle, rgba(76,175,80,0.05) 0%, transparent 60%);
}

.r2 {
  width: 75%; height: 75%;
  border-color: rgba(76, 175, 80, 0.3);
  animation: spin-slow 20s linear infinite reverse;
  border-style: dashed;
}

.r3 {
  width: 52%; height: 52%;
  border-color: rgba(118, 196, 66, 0.4);
  animation: spin-slow 12s linear infinite;
}

.hero-logo-img {
  width: 500px;
  height: 500px;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 50px rgba(76, 175, 80, 0.6));
  position: relative;
  z-index: 2;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-dot {
  width: 6px; height: 6px;
  background: var(--spring);
  border-radius: 50%;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ---- STATS BAR ---- */
.stats-bar {
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.stat-item {
  padding: 2rem 1rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--leaf);
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.1);
}

/* ---- INTRO SECTION ---- */
.intro-section { background: var(--offwhite); }

.intro-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.intro-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--spring));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.info-card:hover::before { transform: scaleX(1); }

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--soil-dark);
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.info-link {
  color: var(--leaf);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.3s;
}

.info-link:hover { color: var(--spring); }

/* ---- PRODUCTS PREVIEW ---- */
.products-preview { position: relative; overflow: hidden; }

.product-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  min-height: 220px;
}

.product-bag-img {
  height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.6)) brightness(1.05);
  mix-blend-mode: lighten;
  transition: transform 0.4s ease;
}

.product-card:hover .product-bag-img {
  transform: scale(1.05) translateY(-4px);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-card-accent {
  background: rgba(76, 175, 80, 0.12);
  border-color: rgba(76, 175, 80, 0.3);
}

.product-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--soil-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.product-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--spring);
  margin-bottom: 1.5rem;
}

.product-price span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-specs li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.spec-dot {
  width: 6px; height: 6px;
  background: var(--spring);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-section { background: var(--cream); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-chevron {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--leaf);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-bottom: 1.3rem;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
}

.cta-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE HOME
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding-top: 9rem;
    text-align: center;
  }
  .hero-visual { margin-top: 3rem; }
  .hero-logo-ring { width: 420px; height: 420px; }
  .hero-logo-img { width: 280px; height: 280px; }
  .hero-ctas { justify-content: center; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stats-inner {
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  .stat-divider { display: none; }
  .stat-item {
    flex: 1 1 45%;
    padding: 1.2rem 0.5rem;
  }
  .stat-num {
    font-size: 1.4rem;
    word-break: break-word;
    white-space: normal;
    overflow: visible;
  }
  .stat-label { font-size: 0.72rem; }
  .products-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .splash-logo { width: 240px; height: 240px; margin-top: 2rem; margin-bottom: -0.5rem; }
  .splash-text { font-size: 2rem; }
}

@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .stat-item { flex: 1 1 100%; }
  .stat-num { font-size: 1.6rem; }
}
