/* ── HOME PAGE ── */

/* HERO */
.hero {
  min-height: 100vh; background: var(--forest);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding-top: 68px;
  position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(58,125,85,.18) 0%, transparent 70%),
    repeating-linear-gradient(60deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 0, transparent 40px);
}
.hero-left {
  padding: 5rem 5% 5rem 8%;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(191,138,46,.15); border: 1px solid rgba(191,138,46,.25);
  color: var(--amber-light); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp .5s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 700;
  color: var(--white); line-height: 1.05; margin-bottom: 1.25rem;
  animation: fadeUp .6s .1s ease both;
}
.hero-title em { font-style: italic; color: var(--amber-light); }
.hero-body {
  font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.8;
  max-width: 460px; margin-bottom: 2.5rem;
  animation: fadeUp .6s .2s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
.hero-proof {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
  animation: fadeUp .6s .4s ease both;
}
.hero-proof-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--amber-light); line-height: 1;
}
.hero-proof-label { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 4px; }

.hero-right {
  padding: 4rem 8% 4rem 3%;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative; z-index: 2;
  animation: fadeIn 1s .4s ease both;
}
.hero-product-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 1.75rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  transition: background .25s, transform .25s;
  cursor: default;
}
.hero-product-card:hover { background: rgba(255,255,255,.1); transform: translateX(5px); }
.hero-product-emoji {
  width: 64px; height: 64px; border-radius: 12px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; flex-shrink: 0;
}
.hero-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--white);
}
.hero-product-desc { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: 3px; }
.hero-product-pill {
  margin-top: 8px; display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}
.pill-pig { background: rgba(191,138,46,.18); color: var(--amber-light); }
.pill-fish { background: rgba(58,125,85,.2); color: var(--sage); }

/* WHY US */
.why-section {
  padding: 5.5rem 8%;
  background: var(--white);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 1rem; }
.why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.why-pillar {
  background: var(--ivory); border-radius: var(--r);
  padding: 1.4rem; border-bottom: 3px solid transparent;
  transition: border-color .25s, transform .25s;
}
.why-pillar:hover { border-color: var(--amber); transform: translateY(-3px); }
.why-pillar-icon { font-size: 1.6rem; margin-bottom: .6rem; }
.why-pillar-title { font-weight: 700; font-size: .9rem; color: var(--forest); margin-bottom: 4px; }
.why-pillar-text { font-size: .8rem; color: var(--muted); line-height: 1.55; }

.why-visual {
  position: relative; height: 460px;
}
.why-vis-main {
  width: 75%; height: 88%; position: absolute; top: 0; right: 0;
  background: linear-gradient(145deg, var(--forest-mid), var(--forest));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem; overflow: hidden;
}
.why-vis-main::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 0, transparent 18px);
}
.why-vis-accent {
  position: absolute; bottom: 0; left: 0;
  width: 52%; height: 50%;
  background: var(--amber-pale); border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.why-vis-accent-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--forest);
}
.why-vis-accent-label { font-size: .78rem; color: var(--muted); text-align: center; }

/* PRODUCTS PREVIEW */
.products-preview { padding: 5.5rem 8%; background: var(--ivory-dark); }
.products-preview-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.preview-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.preview-card-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; position: relative;
}
.pt-pig1 { background: linear-gradient(135deg, #fef3e2, #fde3b5); }
.pt-pig2 { background: linear-gradient(135deg, #fce8e8, #f8c8c8); }
.pt-fish1 { background: linear-gradient(135deg, #e2f0f8, #b8d8ef); }
.preview-card-body { padding: 1.35rem; }
.preview-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--forest); margin-bottom: .4rem;
}
.preview-card-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.preview-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 1rem; font-size: .82rem; font-weight: 600;
  color: var(--amber); text-decoration: none; transition: gap .2s;
}
.preview-card-link:hover { gap: 8px; }

/* TESTIMONIALS */
.testimonials { padding: 5.5rem 8%; background: var(--forest); }
.testimonials .section-heading { color: var(--white); }
.testimonials .section-kicker { color: var(--amber-light); }
.testimonials .section-sub { color: rgba(255,255,255,.5); }

.testimonial-carousel-wrap {
  position: relative; overflow: hidden;
  margin-top: 2.5rem;
}
.testimonial-track {
  display: flex; gap: 1.25rem;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 2rem;
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
}
.testimonial-stars { color: var(--amber-light); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.75; font-style: italic; }
.testimonial-author { margin-top: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-name { font-size: .85rem; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: .75rem; color: rgba(255,255,255,.4); }

.testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.testimonial-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.testimonial-btn:hover { background: rgba(255,255,255,.18); }
.testimonial-dots { display: flex; gap: .5rem; }
.testimonial-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: background .3s, width .3s;
  border: none;
}
.testimonial-dot.active { background: var(--amber-light); width: 20px; border-radius: 4px; }

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 100%; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonial-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
}


/* CTA STRIP */
.cta-strip {
  padding: 4.5rem 8%;
  background: var(--amber-pale);
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.cta-strip-text .section-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); }

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-left { padding: 3.5rem 5%; }
  .hero-proof { gap: 1.5rem; }
  .why-pillars { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-strip { text-align: center; justify-content: center; }
}
