/* ═══════════════════════════════════════════════════════════════
   THE NOURISH NOOK — Premium Design System
   Palette: Cream · Chocolate Brown · Olive Green · Gold
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --cream:        #F7F2EA;
  --cream-dark:   #EDE5D4;
  --cream-deeper: #E0D5C0;
  --brown:        #3D2314;
  --brown-mid:    #6B3A22;
  --brown-light:  #A0623A;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --olive:        #4A5E3A;
  --olive-light:  #6B7F58;
  --olive-pale:   #D4DBC8;
  --white:        #FDFAF5;
  --text-dark:    #2A1A0E;
  --text-mid:     #5C3D28;
  --text-light:   #8B6347;

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

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(61,35,20,0.08);
  --shadow-md:  0 8px 32px rgba(61,35,20,0.12);
  --shadow-lg:  0 20px 60px rgba(61,35,20,0.18);
  --shadow-xl:  0 32px 80px rgba(61,35,20,0.22);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --nav-h: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── Typography Helpers ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--brown-light);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brown);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(61,35,20,0.25);
}

.btn--primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61,35,20,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}

.btn--ghost:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(247, 242, 234, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,35,20,0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.nav__logo-the {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--brown-light);
}

.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--olive);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--brown-light);
  transition: width var(--transition-fast);
}

.nav__links a:hover { color: var(--brown); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--brown) !important;
  color: var(--cream) !important;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--brown-mid) !important; transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  padding: 24px clamp(20px, 5vw, 60px);
  z-index: 999;
  transform: translateY(-110%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--cream-dark);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brown);
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover { color: var(--brown-light); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
  position: relative;
}

.hero__bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(74,94,58,0.06) 0%, transparent 50%),
    var(--cream);
  pointer-events: none;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  box-shadow: var(--shadow-sm);
}

.badge svg { width: 14px; height: 14px; }

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown-light);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.hero__title-line { display: block; }
.hero__title-line.italic { font-style: italic; color: var(--brown-light); }

.hero__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__soap-stage {
  position: relative;
  width: 420px;
  height: 480px;
}

.hero__honeycomb-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* Soap Cards */
.hero__soap {
  position: absolute;
  transition: transform 0.6s ease;
}

.hero__soap--1 {
  top: 40px; left: 30px;
  animation: floatA 6s ease-in-out infinite;
}

.hero__soap--2 {
  bottom: 60px; right: 20px;
  animation: floatB 7s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(-1deg); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.soap-card {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.soap-card__inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.soap-card__inner--white {
  background: radial-gradient(ellipse at 35% 30%, #FDFAF5 0%, #E8DFD0 50%, #D4C5A9 100%);
}

.soap-card__inner--tan {
  background: radial-gradient(ellipse at 35% 30%, #E8C99A 0%, #C9A06A 50%, #A07040 100%);
}

.soap-hex-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32'%3E%3Cpath d='M14 2l12 7v14l-12 7L2 23V9z' fill='none' stroke='rgba(61,35,20,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 28px 32px;
}

.soap-card__label {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.05em;
  background: rgba(247,242,234,0.85);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* Floating Elements */
.hero__floating-elem {
  position: absolute;
  font-size: 1.8rem;
  animation: floatRandom 5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.hero__floating-elem--1 { top: 20%; right: 10%; animation-delay: 0s; }
.hero__floating-elem--2 { top: 60%; left: 5%; animation-delay: 1.5s; }
.hero__floating-elem--3 { bottom: 20%; left: 30%; animation-delay: 0.8s; }
.hero__floating-elem--4 { top: 10%; left: 40%; animation-delay: 2.2s; }

@keyframes floatRandom {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-10px) scale(1.05); }
  66% { transform: translateY(5px) scale(0.97); }
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brown-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ════════════════════════════════════════════
   MARQUEE STRIP
════════════════════════════════════════════ */
.marquee-strip {
  background: var(--brown);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about__body {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-deeper);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 4px;
}

/* About Visual */
.about__img-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
  margin: 0 auto;
}

.about__img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-deeper) 50%, #D4C5A9 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about__img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='46'%3E%3Cpath d='M20 3l17 10v20L20 43 3 33V13z' fill='none' stroke='rgba(61,35,20,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 40px 46px;
}

.about__decorative-soap {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.deco-soap {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.deco-soap--a {
  width: 80px; height: 80px;
  background: radial-gradient(ellipse at 35% 30%, #FDFAF5 0%, #D4C5A9 100%);
  transform: rotate(-8deg);
}

.deco-soap--b {
  width: 100px; height: 100px;
  background: radial-gradient(ellipse at 35% 30%, #E8C99A 0%, #A07040 100%);
}

.deco-soap--c {
  width: 70px; height: 70px;
  background: radial-gradient(ellipse at 35% 30%, #D4DBC8 0%, #6B7F58 100%);
  transform: rotate(6deg);
}

.about__quote {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about__quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 8px;
}

.about__quote p em { font-style: italic; color: var(--brown-light); }

.about__quote span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.about__img-border {
  position: absolute;
  inset: -8px;
  border: 1.5px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 8px);
  opacity: 0.4;
  pointer-events: none;
}

/* ════════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════════ */
.products {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-deeper);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card--featured {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.product-card--featured:hover {
  transform: translateY(-20px);
}

.product-card__visual {
  position: relative;
  padding: 40px 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.product-card--featured .product-card__visual {
  background: rgba(255,255,255,0.05);
}

.product-card__soap-wrap {
  position: relative;
  z-index: 1;
}

.product-soap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--transition);
}

.product-card:hover .product-soap {
  transform: scale(1.05) rotate(3deg);
}

.product-soap--glow {
  background: radial-gradient(ellipse at 35% 30%, #FDFAF5 0%, #E8DFD0 50%, #C9A06A 100%);
}

.product-soap--nourish {
  background: radial-gradient(ellipse at 35% 30%, #FFF8E7 0%, #F0D090 50%, #C9A84C 100%);
}

.product-soap--ubtan {
  background: radial-gradient(ellipse at 35% 30%, #F5E6C8 0%, #D4A574 50%, #8B5E3C 100%);
}

.product-soap__hex {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='23'%3E%3Cpath d='M10 1.5l8.5 5v10L10 21.5 1.5 16.5v-10z' fill='none' stroke='rgba(61,35,20,0.1)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 20px 23px;
}

.product-soap__shine {
  position: absolute;
  top: 15%; left: 20%;
  width: 30%; height: 30%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.6) 0%, transparent 70%);
  border-radius: 50%;
}

.product-card__tag {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--brown);
}

.product-card__tag--new { background: var(--olive); color: var(--white); }
.product-card__tag--classic { background: var(--cream-deeper); color: var(--brown); }

.product-card--featured .product-card__tag {
  background: var(--gold);
  color: var(--brown);
}

.product-card__ingredients-peek {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  font-size: 1.1rem;
}

.product-card__info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
}

.product-card--featured .product-card__name { color: var(--gold-light); }

.product-card__type {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
}

.product-card--featured .product-card__type { color: rgba(255,255,255,0.5); }

.product-card__tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 4px;
}

.product-card--featured .product-card__tagline { color: var(--olive-pale); }

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.product-card--featured .product-card__desc { color: rgba(255,255,255,0.65); }

.product-card__benefits {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.product-card__benefits span {
  padding: 4px 10px;
  background: var(--cream-dark);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--olive);
}

.product-card--featured .product-card__benefits span {
  background: rgba(255,255,255,0.12);
  color: var(--olive-pale);
}

.product-card--featured .btn--primary {
  background: var(--gold);
  color: var(--brown);
}

.product-card--featured .btn--primary:hover {
  background: var(--gold-light);
}

/* ════════════════════════════════════════════
   INGREDIENTS
════════════════════════════════════════════ */
.ingredients {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.ingredients__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 50%, rgba(74,94,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 30%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.ingredient-card {
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--olive));
  transition: height var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.ingredient-card:hover::before { height: 100%; }

.ingredient-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.ingredient-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}

.ingredient-card__benefit {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ingredient-card__bar {
  height: 3px;
  background: var(--cream-deeper);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.ingredient-card__fill {
  height: 100%;
  width: var(--fill);
  background: linear-gradient(to right, var(--olive), var(--gold));
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease 0.3s;
}

.ingredient-card.visible .ingredient-card__fill {
  transform: scaleX(1);
}

/* ════════════════════════════════════════════
   VALUES
════════════════════════════════════════════ */
.values {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-deeper);
  background: var(--cream);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.value-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--olive);
  transition: color var(--transition);
}

.value-card:hover .value-card__icon { color: var(--brown-light); }

.value-card__icon svg { width: 100%; height: 100%; }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   FREE FROM BANNER
════════════════════════════════════════════ */
.free-from-banner {
  background: var(--olive);
  padding: 20px clamp(20px, 5vw, 60px);
}

.free-from-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.free-from-banner__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.free-from-banner__items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.free-from-banner__items span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-pale);
}

.free-from-banner__items .sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials {
  padding: clamp(80px, 10vw, 140px) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-deeper);
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brown);
}

.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(74,94,58,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
}

.contact__title em { font-style: italic; color: var(--brown-light); }

.contact__subtitle {
  color: var(--text-mid);
  margin-bottom: 48px;
  font-size: 1rem;
}

.contact__form-wrap { position: relative; }

.contact__form {
  background: var(--cream);
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  text-align: left;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--cream-deeper);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown-light);
  box-shadow: 0 0 0 3px rgba(160,98,58,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

/* Success State */
.contact__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 40px;
  background: var(--cream);
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact__success.show { display: flex; }

.contact__success-icon { font-size: 3rem; }

.contact__success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brown);
}

.contact__success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* Social Links */
.contact__social {
  margin-top: 40px;
}

.contact__social p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.contact__social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-link svg { width: 16px; height: 16px; }

.social-link--whatsapp {
  background: #25D366;
  color: white;
}

.social-link--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.social-link--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-link--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,39,67,0.35);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--brown);
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer__logo-the {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.footer__logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.footer__logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--olive-pale);
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer__credit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
}

.footer__links h4,
.footer__products h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links ul,
.footer__products ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__products a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.footer__links a:hover,
.footer__products a:hover { color: var(--cream); }

.footer__contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer__badges span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--olive-pale);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--featured { transform: none; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 20px);
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero__badges { justify-content: center; }
  .hero__desc { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__soap-stage { width: 300px; height: 340px; }
  .soap-card { width: 150px; height: 150px; }
  .hero__scroll-hint { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .about__stats { gap: 24px; }

  .products__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .values__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .form-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .free-from-banner__inner { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.8rem; }
  .hero__soap-stage { width: 260px; height: 300px; }
  .soap-card { width: 120px; height: 120px; }
  .hero__floating-elem { font-size: 1.4rem; }
  .contact__form { padding: 24px 20px; }
}

/* ── Stagger delays for reveal ── */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }