/* ════════════════════════════════════════════
   HOME PAGE — Logo-Centered Premium Design
   ════════════════════════════════════════════ */

/* ── Nav Logo ── */
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--color-gold); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(197,165,90,0.15); transition: box-shadow 0.3s;
}
.nav-logo-mark:hover { box-shadow: 0 0 0 5px rgba(197,165,90,0.28); }
.nav-logo-img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-fallback {
  width: 100%; height: 100%; background: var(--color-gold);
  color: var(--color-black); font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--color-white); letter-spacing: -0.02em; transition: color 0.3s;
}
.nav-logo-text em { font-style: italic; color: var(--color-gold); }
.navbar.scrolled .nav-logo-text { color: var(--color-white); }

/* ════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ════════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright), var(--color-sage));
  z-index: 9999; transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(197,165,90,0.5);
}

/* ════════════════════════════════════════════
   GRADIENT TEXT
   ════════════════════════════════════════════ */
.gradient-text {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 40%, #f0d080 60%, var(--color-gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
  font-style: italic;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Hero headline word-by-word stagger */
.hero-headline { position: relative; }

/* ════════════════════════════════════════════
   HERO — Logo Centered
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 120% 40% at 50% 110%, #1a2d0f 0%, #243d16 25%, transparent 55%),
    radial-gradient(ellipse 80% 25% at 20% 105%, #1e3010 0%, transparent 45%),
    radial-gradient(ellipse 80% 25% at 80% 105%, #162a0c 0%, transparent 45%),
    radial-gradient(circle 60px at 60% 88%, rgba(180,200,120,0.18) 0%, transparent 70%),
    radial-gradient(circle 40px at 35% 92%, rgba(160,185,100,0.12) 0%, transparent 70%),
    linear-gradient(175deg, #3a4e2e 0%, #465a34 20%, #4d6439 45%, #526640 65%, #3d5230 85%, #2c3d22 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: var(--nav-height);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 50% 30%, rgba(197,165,90,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 25%, rgba(255,255,240,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 88% 30%, rgba(197,165,90,0.07) 0%, transparent 55%);
  pointer-events: none; z-index: 1;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, #fafaf5, transparent);
  pointer-events: none; z-index: 4;
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(248,240,220,0.6);
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  15%  { opacity: 0.5; }
  85%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(0.4); opacity: 0; }
}

/* Botanical leaves */
.hero-leaf {
  position: absolute; top: 0; bottom: 0; width: 220px;
  pointer-events: none; z-index: 2; opacity: 0.85;
}
.hero-leaf svg { width: 100%; height: 100%; }
.hero-leaf-left  { left: 0; }
.hero-leaf-right { right: 0; transform: scaleX(-1); }

/* Sparkles — more spread for centered layout */
.hero-sparkle {
  position: absolute; color: rgba(197,165,90,0.6); pointer-events: none; z-index: 2;
  animation: sparklePulse 3s ease-in-out infinite;
}
.hero-sparkle-1 { top: 18%; right: 12%;  font-size: 1.3rem; animation-delay: 0s; }
.hero-sparkle-2 { top: 55%; right: 8%;   font-size: 0.85rem; animation-delay: 1.1s; }
.hero-sparkle-3 { top: 30%; left: 10%;   font-size: 0.6rem;  animation-delay: 2s; }
.hero-sparkle-4 { top: 65%; left: 6%;    font-size: 1rem;    animation-delay: 0.5s; }
.hero-sparkle-5 { top: 22%; left: 15%;   font-size: 0.7rem;  animation-delay: 1.6s; }
@keyframes sparklePulse { 0%,100%{opacity:0.35;transform:scale(1) rotate(0deg);}50%{opacity:0.9;transform:scale(1.4) rotate(15deg);} }

/* Hero Inner — Centered column layout */
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  max-width: var(--max-width); width: 100%;
  padding: 2rem var(--space-xl) 4rem;
}

/* ── Logo Showcase ── */
.hero-logo-showcase {
  position: relative;
  width: 220px; height: 220px;
  margin-bottom: 2rem;
  animation: fadeScaleIn 1s ease both;
}
@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

.hero-logo-main {
  width: 100%; height: 100%; object-fit: contain;
  position: relative; z-index: 3;
  filter: drop-shadow(0 8px 32px rgba(197,165,90,0.4));
  animation: logoFloat 6s ease-in-out infinite;
  border-radius: 50%;
  background: white;
}
.hero-logo-showcase {
  will-change: transform;
  transition: transform 0.1s ease-out;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Glow behind logo */
.logo-glow {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197,165,90,0.35) 0%, rgba(197,165,90,0.12) 40%, transparent 70%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Pulse ring */
.logo-pulse-ring {
  position: absolute; inset: -20px; border-radius: 50%;
  border: 2px solid rgba(197,165,90,0.3);
  z-index: 2;
  animation: pulseRing 3s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

/* Orbit ring */
.logo-orbit-ring {
  position: absolute; inset: -30px; border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(197,165,90,0.5);
  border-right-color: rgba(197,165,90,0.2);
  z-index: 2;
  animation: orbitSpin 8s linear infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* ── Brand Name ── */
.hero-brand-name {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.brand-line-top {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--color-gold-light);
  letter-spacing: 6px; text-transform: uppercase;
}
.brand-line-bottom {
  font-family: var(--font-heading); font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400; color: rgba(255,255,255,0.7);
  letter-spacing: 4px; text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Rating badge */
.hero-rating {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 0.5rem 1.2rem;
  animation: fadeSlideUp 0.8s 0.5s ease both;
}
.rating-star  { color: var(--color-gold); font-size: 1rem; }
.rating-score { color: var(--color-gold); font-weight: 700; font-size: 1rem; }
.rating-count { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* Hero Text */
.hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff; line-height: 1.2; margin-bottom: 1rem; font-weight: 700;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}
.hero-inner h1 em { font-style: italic; color: var(--color-gold-light); }
.hero-inner h1 em.gradient-text {
  color: unset;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.78); line-height: 1.85;
  max-width: 520px; margin: 0 auto 2rem;
  animation: fadeSlideUp 0.8s 0.7s ease both;
}
.hero-sub strong { color: rgba(255,255,255,0.95); }

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeSlideUp 0.8s 0.8s ease both;
}

/* Buttons */
.btn-gold-lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.2rem; border-radius: 12px; font-weight: 700; font-size: 0.98rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-bright));
  color: #1a1a1a; box-shadow: 0 4px 20px rgba(197,165,90,0.4);
  transition: all 0.3s ease; letter-spacing: 0.2px;
}
.btn-gold-lg:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(197,165,90,0.55); }
.btn-arrow { transition: transform 0.2s; }
.btn-gold-lg:hover .btn-arrow { transform: translateX(4px); }
.btn-ghost-lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.2rem; border-radius: 12px; font-weight: 600; font-size: 0.98rem;
  border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
}
.btn-ghost-lg:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

@keyframes fadeSlideUp { from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);} }

/* Scroll mouse */
.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5;
  pointer-events: none;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px; background: rgba(255,255,255,0.7);
  border-radius: 2px; animation: wheelScroll 1.8s ease-in-out infinite;
}
@keyframes wheelScroll { 0%{opacity:1;transform:translateY(0);}80%{opacity:0;transform:translateY(10px);}100%{opacity:0;transform:translateY(0);} }

/* ════════════════════════════════════════════
   PRODUCT LINEUP — Full Collection
   ════════════════════════════════════════════ */
.product-lineup {
  background: linear-gradient(160deg, #f7f3eb 0%, #eee9dd 30%, #e8e0cf 60%, #f0ebe0 100%);
  position: relative;
  padding-bottom: var(--space-4xl);
}
.product-lineup::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 40%, rgba(92,107,79,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 60%, rgba(197,165,90,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Category Divider */
.lineup-category {
  display: flex; align-items: center; gap: 1.25rem;
  margin: var(--space-2xl) 0 var(--space-xl);
}
.lineup-category-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,165,90,0.35), transparent);
}
.lineup-category-label {
  font-family: var(--font-heading); font-size: 0.82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: var(--color-sage-dark);
  white-space: nowrap;
}

/* 3-Column Product Grid */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Individual Product Card */
.lineup-card {
  position: relative;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
}
.lineup-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 0 0 1px rgba(197,165,90,0.2);
}

/* Badge */
.lineup-card-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; padding: 0.35rem 0.85rem; border-radius: 50px;
}
.lineup-badge-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-bright));
  color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(197,165,90,0.35);
}
.lineup-badge-sage {
  background: linear-gradient(135deg, #4a5e3a, #5c6b4f);
  color: #fff;
  box-shadow: 0 2px 10px rgba(74,94,58,0.3);
}
.lineup-badge-dark {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: var(--color-gold-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* Product Image Area */
.lineup-card-image {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1.5rem 1rem;
  min-height: 180px;
  background: linear-gradient(180deg, rgba(248,245,238,0.5) 0%, rgba(255,255,255,0) 100%);
}
.lineup-card-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197,165,90,0.15) 0%, transparent 70%);
  transition: all 0.5s ease;
}
.lineup-card:hover .lineup-card-glow {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(197,165,90,0.25) 0%, transparent 70%);
}
.lineup-card-image img {
  position: relative; z-index: 2;
  max-height: 160px; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.lineup-card:hover .lineup-card-image img {
  transform: scale(1.08) translateY(-6px);
}

/* Card Content */
.lineup-card-content {
  padding: 0 1.5rem 1.5rem;
}
.lineup-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 700; font-style: italic;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

/* Duration Bar */
.lineup-duration {
  position: relative;
  background: rgba(0,0,0,0.06);
  border-radius: 50px;
  height: 26px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.lineup-duration-bar {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: var(--duration-width, 50%);
  background: linear-gradient(90deg, var(--color-sage-dark), #7a8b6f);
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lineup-duration-text {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  height: 100%; font-size: 0.75rem; font-weight: 500;
  color: var(--color-charcoal);
  mix-blend-mode: normal;
}
.lineup-duration-text strong {
  color: var(--color-charcoal); margin-left: 0.25em;
}

/* Features List */
.lineup-features {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.lineup-features li {
  position: relative; padding-left: 1.2rem;
  font-size: 0.8rem; color: var(--color-gray-700); line-height: 1.4;
}
.lineup-features li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--color-sage-dark); font-weight: 700; font-size: 0.8rem;
}

/* Card Button */
.lineup-btn {
  width: 100%; justify-content: center;
  font-size: 0.8rem; padding: 0.75rem 1rem;
}

/* Inner shimmer on hover */
.lineup-card::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-20deg); transition: left 0.7s ease; pointer-events: none;
  z-index: 3;
}
.lineup-card:hover::before { left: 120%; }

/* ── Scalp Treatment Feature Card ── */
.lineup-feature-card {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-3xl); align-items: center;
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 50%, #1e1e1e 100%);
  border-radius: 28px; overflow: hidden;
  padding: var(--space-3xl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  position: relative;
  margin-top: var(--space-xl);
}
.lineup-feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(197,165,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.lineup-feature-image {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.lineup-feature-image img {
  max-height: 340px; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(197,165,90,0.25));
  transition: transform 0.6s ease;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}
.lineup-feature-card:hover .lineup-feature-image img {
  transform: scale(1.06) rotate(-2deg);
}
.lineup-feature-content {
  position: relative; z-index: 1; color: #fff;
}
.lineup-feature-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  color: #fff; margin-bottom: var(--space-md);
}
.lineup-feature-lead {
  font-size: 1rem; line-height: 1.85;
  color: rgba(255,255,255,0.8); margin-bottom: var(--space-xl);
}
.lineup-feature-lead strong { color: var(--color-gold-light); }

/* Highlight pills */
.lineup-feature-highlights {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.lineup-highlight {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
}
.lineup-highlight:hover {
  background: rgba(197,165,90,0.15);
  border-color: rgba(197,165,90,0.3);
  color: var(--color-gold-light);
}
.lineup-highlight-icon { font-size: 1rem; }

/* Tagline */
.lineup-tagline {
  text-align: center; margin-top: var(--space-3xl);
}
.lineup-tagline > p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic; color: var(--color-charcoal);
  margin-bottom: var(--space-lg);
  opacity: 0.8;
}
.lineup-badges-row {
  display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
}

/* Badge pills (shared across sections) */
.spotlight-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 1rem; border-radius: 50px;
  background: linear-gradient(135deg, #edf0e9, #d8dfd3);
  font-size: 0.82rem; font-weight: 600; color: #3a4a30;
  transition: transform 0.2s;
}
.spotlight-badge:hover { transform: translateY(-2px); }

/* ── Product Lineup Responsive ── */
@media (max-width: 950px) {
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lineup-grid { grid-template-columns: 1fr; }
  .lineup-card-image { min-height: 140px; padding: 1.5rem 1rem 0.5rem; }
  .lineup-card-image img { max-height: 120px; }
  .lineup-card-content { padding: 0 1.5rem 1.25rem; }
  .lineup-card-content h3 { font-size: 1.25rem; }
}


/* ════════════════════════════════════════════
   LIFESTYLE GALLERY
   ════════════════════════════════════════════ */
.lifestyle-section {
  padding: var(--space-3xl) 0;
  background: var(--color-cream);
}
.lifestyle-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.lifestyle-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.lifestyle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lifestyle-photo:hover img {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .lifestyle-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .lifestyle-photo:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }
}

/* ════════════════════════════════════════════
   BRAND STRIP
   ════════════════════════════════════════════ */
.brand-strip { background: var(--color-cream); padding: var(--space-3xl) 0; border-bottom: 1px solid var(--color-gray-200); }
.brand-strip-inner { display: flex; align-items: center; justify-content: center; }
.brand-stats { display: flex; gap: var(--space-4xl); flex-wrap: wrap; justify-content: center; }
.brand-stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--color-sage-dark); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--color-gray-500); margin-top: 0.3rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ════════════════════════════════════════════
   PROBLEM / SOLUTION
   ════════════════════════════════════════════ */
.ps-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-4xl); align-items: center; }
.ps-image { position: relative; }
.ps-image img { width: 100%; max-width: 400px; border-radius: var(--radius-xl); box-shadow: 0 16px 48px rgba(0,0,0,0.10); }
.ps-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-bright));
  color: #1a1a1a; font-weight: 700; font-size: 0.82rem;
  padding: 0.5rem 1.1rem; border-radius: 50px; box-shadow: 0 4px 14px rgba(197,165,90,0.35);
}
.ps-content h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: var(--space-md); }
.ps-content h2 em { color: var(--color-sage-dark); }
.ps-lead { font-size: 1.05rem; line-height: 1.9; margin-bottom: var(--space-lg); }
.ps-checks { display: flex; flex-direction: column; gap: 0.75rem; }
.ps-check { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.97rem; color: var(--color-charcoal); }
.check-icon { color: var(--color-sage-dark); font-size: 0.75rem; flex-shrink: 0; margin-top: 4px; }

/* ════════════════════════════════════════════
   BENEFITS
   ════════════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.benefit-card {
  padding: var(--space-2xl) var(--space-lg); border-radius: var(--radius-xl);
  background: #fff; border: 1px solid var(--color-gray-200);
  text-align: center; transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}
.benefit-card:hover { transform: translateY(-5px); border-color: rgba(92,107,79,0.25); box-shadow: 0 12px 36px rgba(92,107,79,0.1); }
.benefit-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, #edf0e9, #d8dfd3);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.benefit-card:hover .benefit-icon-wrap { transform: scale(1.08) rotate(-3deg); }
.benefit-icon { font-size: 1.4rem; }
.benefit-card h4 { margin-bottom: 0.5rem; font-size: 1.02rem; color: var(--color-charcoal); }
.benefit-card p { font-size: 0.88rem; margin: 0; line-height: 1.7; }

/* ════════════════════════════════════════════
   TESTIMONIAL
   ════════════════════════════════════════════ */
.testimonial-section {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, #3d4f34, #4a5e3a, #5c6b4f);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.testimonial-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(248,240,220,0.06) 0%, transparent 70%);
}

/* Carousel container */
.testimonial-carousel { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; min-height: 280px; }
.testimonial-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.testimonial-logo {
  width: 68px; height: 68px; border-radius: 50%; overflow: hidden;
  background: #fff; margin: 0 auto var(--space-xl);
  border: 3px solid rgba(197,165,90,0.6);
  box-shadow: 0 0 24px rgba(197,165,90,0.25);
  display: flex; align-items: center; justify-content: center;
}
.testimonial-logo img { width: 100%; height: 100%; object-fit: cover; }

/* Slides */
.testimonial-slide {
  opacity: 0; transform: translateY(15px) scale(0.97);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute; width: 100%; pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1; transform: translateY(0) scale(1);
  position: relative; pointer-events: auto;
}

.testimonial-quote {
  font-family: var(--font-heading); font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-style: italic; line-height: 1.75; color: rgba(255,255,255,0.92); margin-bottom: var(--space-xl);
}
.testimonial-author { font-style: normal; font-size: 0.9rem; color: var(--color-gold-light); margin-bottom: 0.5rem; }
.testimonial-stars { color: var(--color-gold-light); font-size: 1rem; letter-spacing: 3px; }

/* Dots */
.testimonial-dots {
  display: flex; justify-content: center; gap: 0.6rem; margin-top: 2rem;
}
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  transition: all 0.35s ease; padding: 0;
}
.testimonial-dot:hover { background: rgba(255,255,255,0.5); transform: scale(1.2); }
.testimonial-dot.active {
  background: var(--color-gold); width: 28px; border-radius: 5px;
  box-shadow: 0 0 10px rgba(197,165,90,0.4);
}

/* ════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════ */
.cta-banner {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--color-cream), var(--color-cream-warm));
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(92,107,79,0.05) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner-inner h2 { margin-bottom: var(--space-md); }
.cta-banner-inner p { font-size: 1.05rem; margin-bottom: var(--space-2xl); }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner-actions .btn-ghost-lg { border-color: rgba(0,0,0,0.18); color: var(--color-charcoal); }
.cta-banner-actions .btn-ghost-lg:hover { border-color: var(--color-sage); background: rgba(122,139,111,0.08); }

/* ════════════════════════════════════════════
   BENTO GRID — Asymmetric Benefits Layout
   ════════════════════════════════════════════ */
.bento-section { background: var(--color-cream); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
}

/* Card sizes */
.bento-card { position: relative; border-radius: 20px; padding: 2rem; overflow: hidden; transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1); cursor: default; }
.bento-card-wide { grid-column: span 2; }
.bento-card-tall { grid-row: span 2; }

/* Card themes */
.bento-card--glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
}
.bento-card--sage {
  background: linear-gradient(145deg, #4a5e3a 0%, #5c6b4f 40%, #6a7d5a 100%);
  color: #fff;
}
.bento-card.bento-card--sage h4 { color: #ffffff !important; text-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.bento-card.bento-card--sage p { color: rgba(255,255,255,0.97) !important; }
.bento-card--sage .bento-icon-wrap { background: rgba(255,255,255,0.18); }
.bento-card--dark {
  background: linear-gradient(145deg, #1a1a1a 0%, #2c2c2c 60%, #3a3a3a 100%);
  color: #fff;
}
.bento-card.bento-card--dark h4 { color: #ffffff !important; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.bento-card.bento-card--dark p { color: rgba(255,255,255,0.95) !important; }
.bento-card--dark .bento-icon-wrap { background: rgba(197,165,90,0.2); }
.bento-card--gold {
  background: linear-gradient(145deg, #f5ecd5 0%, #ede0c0 50%, #e8d5a0 100%);
  border: 1px solid rgba(197,165,90,0.25);
}

/* Hover — lift + glow */
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(197,165,90,0.12);
}
.bento-card--sage:hover { box-shadow: 0 20px 60px rgba(74,94,58,0.3); }
.bento-card--dark:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

/* Gradient border animation on hover */
.bento-card--glass::before {
  content: ''; position: absolute; inset: -2px; border-radius: 22px; z-index: -1;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 60%, var(--color-gold) 80%, var(--color-sage) 90%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.bento-card--glass:hover::before { opacity: 1; animation: rotateBorder 3s linear infinite; }
@keyframes rotateBorder { to { --border-angle: 360deg; } }
@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

/* Icon */
.bento-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, #edf0e9, #d8dfd3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bento-card:hover .bento-icon-wrap { transform: scale(1.12) rotate(-6deg); }
.bento-icon { font-size: 1.5rem; }

.bento-card h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.65rem; color: var(--color-black); }
.bento-card p { font-size: 0.9rem; line-height: 1.7; margin: 0; color: var(--color-gray-700); }

/* Image card (wide hero) */
.bento-image-card { display: flex; align-items: center; gap: 2.5rem; min-height: 220px; }
.bento-image-card .bento-image-wrap {
  flex-shrink: 0; width: 200px; height: 200px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.bento-image-card .bento-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bento-card:hover .bento-image-wrap img { transform: scale(1.1); }

/* Tall card extra styling */
.bento-card-tall { display: flex; flex-direction: column; justify-content: center; }
.bento-tall-stat {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700;
  color: var(--color-gold); line-height: 1; margin: 1rem 0;
}

/* Inner shimmer effect */
.bento-card--glass::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none;
}
.bento-card--glass:hover::after { left: 120%; }

/* ════════════════════════════════════════════
   BRAND STATS — Animated Counter
   ════════════════════════════════════════════ */
.stat-number {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
  color: var(--color-sage-dark); line-height: 1;
  transition: transform 0.3s ease;
}
.brand-stat:hover .stat-number { transform: scale(1.1); }
.brand-stat:hover .stat-label { color: var(--color-sage-dark); }

/* ════════════════════════════════════════════
   TRUST SIGNALS
   ════════════════════════════════════════════ */
.trust-signals {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1e1e1e 100%);
  overflow: hidden; position: relative;
}
.trust-signals::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(197,165,90,0.06) 0%, transparent 70%);
}

.trust-badges {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  position: relative; z-index: 1; margin-bottom: 2rem;
}
.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  transition: all 0.35s ease; cursor: default;
}
.trust-badge:hover { transform: translateY(-4px); }
.trust-badge-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(197,165,90,0.12); border: 1.5px solid rgba(197,165,90,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold); transition: all 0.35s ease;
}
.trust-badge-icon svg {
  width: 22px; height: 22px;
  stroke: var(--color-gold); transition: all 0.35s ease;
}
.trust-badge:hover .trust-badge-icon {
  background: rgba(197,165,90,0.22); border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(197,165,90,0.25);
  transform: scale(1.08);
}
.trust-badge:hover .trust-badge-icon svg {
  stroke: var(--color-gold-light);
}
.trust-badge-label {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.trust-badge:hover .trust-badge-label { color: var(--color-gold-light); }

/* Marquee */
.trust-marquee {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
}
.trust-marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.trust-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.45);
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-gold); opacity: 0.5;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   BUTTON SHIMMER
   ════════════════════════════════════════════ */
.btn-gold-lg {
  position: relative; overflow: hidden;
}
.btn-gold-lg::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-20deg); transition: none; pointer-events: none;
  animation: shimmerSweep 3.5s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%, 100% { left: -100%; }
  50% { left: 120%; }
}

/* ════════════════════════════════════════════
   FOOTER TRUST BADGES
   ════════════════════════════════════════════ */
.footer-trust {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  padding: 1.5rem 0; margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-trust-item:hover { color: var(--color-gold-light); }
.footer-trust-icon { font-size: 1rem; color: var(--color-gold); opacity: 0.7; }

/* ════════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-charcoal); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-black); transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.back-to-top-ring {
  position: absolute; inset: 0;
  transform: rotate(-90deg);
}
.ring-progress { transition: stroke-dashoffset 0.15s linear; }
.back-to-top-arrow {
  color: var(--color-gold); font-size: 1.1rem; font-weight: 700;
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════════
   SMOOTH SECTION DIVIDERS
   ════════════════════════════════════════════ */
.product-lineup::after {
  content: ''; display: block; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-200), transparent);
  margin: 0 auto; max-width: 60%;
}

/* Footer logo */
.footer-logo-wrap { margin-bottom: var(--space-md); }
.footer-logo-img { width: 72px; height: 72px; object-fit: contain; opacity: 0.85; filter: brightness(0) invert(1); }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-logo-showcase { width: 180px; height: 180px; }
  .brand-line-top { letter-spacing: 4px; }
  .hero-leaf { display: none; }
  .brand-stats { gap: var(--space-2xl); }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-image { display: flex; justify-content: center; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }

  /* Bento Grid — 2 columns */
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card-tall { grid-row: span 1; }
  .bento-image-card { flex-direction: column; gap: 1.5rem; min-height: auto; }
  .bento-image-card .bento-image-wrap { width: 160px; height: 160px; }
  .bento-tall-stat { font-size: 2.5rem; }

  /* Trust badges */
  .trust-badges { gap: 1.5rem; }
  .trust-badge-icon { width: 44px; height: 44px; font-size: 1.2rem; }
}
@media (max-width: 600px) {
  .hero-logo-showcase { width: 150px; height: 150px; }
  .hero-inner h1 { font-size: 1.8rem; }
  .brand-line-top { font-size: 1.3rem; letter-spacing: 3px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
  .brand-stats { gap: var(--space-xl); }

  /* Bento Grid — 1 column */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card-wide { grid-column: span 1; }
  .bento-image-card .bento-image-wrap { width: 140px; height: 140px; }
  .bento-card { padding: 1.5rem; }
  .bento-tall-stat { font-size: 2rem; }

  /* Trust */
  .trust-badges { gap: 1rem; }
  .trust-badge-label { font-size: 0.65rem; letter-spacing: 1px; }
  .footer-trust { gap: 1rem; }
}


/* ════════════════════════════════════════════
   LIFESTYLE GALLERY
   ════════════════════════════════════════════ */
.lifestyle-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, #f5f0e8 50%, var(--color-cream) 100%);
  padding: var(--space-4xl) 0;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.lifestyle-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  height: 480px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}

.lifestyle-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.lifestyle-card-tall {
  /* Same height as others in equal layout */
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.lifestyle-card:hover img {
  transform: scale(1.08);
}

.lifestyle-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lifestyle-card:hover .lifestyle-overlay {
  opacity: 1;
}

.lifestyle-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-card {
    height: 350px;
  }
  .lifestyle-overlay {
    opacity: 1;
  }
}
