/* ============================================
   LUSHPOUT — Luxury Lip Care
   Palette: Rose Gold, Deep Plum, Blush Cream
   Fonts: Cormorant Garamond + Plus Jakarta Sans
   ============================================ */

:root {
  --rose:       #C9748A;
  --rose-light: #F2C4CE;
  --plum:       #7D2E4A;
  --plum-dark:  #4A1828;
  --cream:      #FDF6F0;
  --cream-dark: #F5EAE0;
  --gold:       #C9A87C;
  --gold-light: #E8D5B7;
  --text-dark:  #2C1A22;
  --text-mid:   #6B4455;
  --text-light: #A07080;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --radius-xl:  60px;

  --shadow-soft: 0 8px 40px rgba(125, 46, 74, 0.12);
  --shadow-card: 0 4px 24px rgba(125, 46, 74, 0.10);
  --shadow-hover: 0 16px 48px rgba(125, 46, 74, 0.22);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- BACKGROUND ORBS ---- */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rose-light), var(--rose));
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  bottom: 20%; left: -150px;
  animation-delay: -4s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--rose-light), var(--plum));
  top: 50%; right: 10%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--rose-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--rose-light); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(125, 46, 74, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(125, 46, 74, 0.4); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--rose);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--rose-light);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.light-btn {
  background: var(--white);
  color: var(--plum);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.light-btn::before { background: var(--cream); }
.light-btn:hover { color: var(--plum); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(125, 46, 74, 0.08);
  padding: 0.85rem 5%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}
.logo-icon {
  color: var(--rose);
  font-size: 1rem;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--plum);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--rose); }

/* ---- HERO ---- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 5% 5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--rose-light);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 480px;
  height: 520px;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%, 100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
  33% { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
  66% { border-radius: 45% 55% 60% 40% / 40% 60% 55% 45%; }
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: 24px; right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--plum-dark);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-card);
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-tag {
  position: absolute;
  bottom: 24px; left: -20px;
  background: rgba(253, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  color: var(--plum);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--rose-light);
  animation: floatBadge 3s ease-in-out infinite;
  animation-delay: -1.5s;
}

/* Floating Pills */
.floating-pill {
  position: absolute;
  background: rgba(253, 246, 240, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rose-light);
  color: var(--plum);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  animation: floatPill 4s ease-in-out infinite;
}
.pill-1 { top: 10%; left: -60px; animation-delay: 0s; }
.pill-2 { top: 50%; right: -50px; animation-delay: -1.5s; }
.pill-3 { bottom: 15%; left: -40px; animation-delay: -3s; }
@keyframes floatPill {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---- MARQUEE ---- */
.marquee-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-light);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- ABOUT ---- */
.about {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.about-img-stack {
  position: relative;
  height: 560px;
}
.about-img-main {
  width: 85%;
  height: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--cream);
}
.about-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.about-body {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--rose);
  transition: var(--transition);
}
.value-item:hover {
  background: var(--rose-light);
  transform: translateX(4px);
}
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.2rem;
}
.value-item p { font-size: 0.85rem; color: var(--text-mid); margin: 0; }

/* ---- PRODUCTS ---- */
.products {
  position: relative;
  z-index: 1;
  padding: 6rem 5%;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.products-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.products-sub {
  color: var(--text-mid);
  margin-top: 1rem;
  font-size: 1rem;
}

/* Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 0.65rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  border: 1.5px solid var(--rose-light);
  background: transparent;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(125, 46, 74, 0.25);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(125, 46, 74, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-add {
  padding: 0.75rem 1.75rem;
  background: var(--white);
  color: var(--plum);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: var(--transition);
  transform: translateY(10px);
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--rose-light); }

.product-badge-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--plum-dark);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.new-tag {
  background: linear-gradient(135deg, var(--rose), var(--plum)) !important;
  color: var(--white) !important;
}

.product-info { padding: 1.5rem; }
.product-shades {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.shade {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform var(--transition);
}
.shade:hover { transform: scale(1.3); }

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.product-info p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plum);
}
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; }

/* ---- INGREDIENTS ---- */
.ingredients {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 60%, #A0405E 100%);
  padding: 8rem 5%;
  overflow: hidden;
}
.ingredients::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.ingredients-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ingredients-body {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 1.25rem 0 2rem;
  font-size: 1rem;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ingredient-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.ingredient-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: rgba(242, 196, 206, 0.4);
}
.ing-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.ingredient-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.ingredient-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-track {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.featured-testi {
  background: linear-gradient(135deg, var(--plum-dark), var(--plum));
  border-color: transparent;
  padding: 2.5rem;
  transform: translateY(-16px);
}
.featured-testi:hover { transform: translateY(-22px); }
.featured-testi .testi-stars { color: var(--gold-light); }
.featured-testi .testi-quote { color: rgba(255,255,255,0.9); }
.featured-testi .testi-author strong { color: var(--white); }
.featured-testi .testi-author span { color: rgba(255,255,255,0.6); }

.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--rose-light);
}
.testi-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---- CONTACT / NEWSLETTER ---- */
.contact {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--cream-dark), var(--rose-light));
  padding: 8rem 5%;
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-sub {
  color: var(--text-mid);
  margin: 1rem 0 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.email-input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid var(--rose-light);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
}
.email-input:focus { border-color: var(--rose); }
.email-input::placeholder { color: var(--text-light); }
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover {
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ---- FOOTER ---- */
.footer {
  position: relative;
  z-index: 1;
  background: var(--plum-dark);
  color: rgba(255,255,255,0.8);
  padding: 5rem 5% 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--rose-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--rose-light); }

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-hover);
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrap { width: 360px; height: 380px; }
  .pill-1, .pill-2, .pill-3 { display: none; }
  .hero-scroll-hint { display: none; }

  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-stack { height: 400px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .ingredients-inner { grid-template-columns: 1fr; gap: 3rem; }

  .testimonials-track { grid-template-columns: 1fr; }
  .featured-testi { transform: none; }
  .featured-testi:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 6rem 5% 4rem; gap: 2rem; }
  .hero-img-wrap { width: 280px; height: 300px; }

  .products-grid { grid-template-columns: 1fr; max-width: 400px; }

  .ingredients-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }
  .email-input { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 1.8rem; }
  .footer-links { grid-template-columns: 1fr; }
}