*, *::before, *::after { box-sizing: border-box; }
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
body { position: relative; }

/* =========================================================
   SkinLure — Natural Radiance. Timeless Beauty.
   ========================================================= */

:root {
  --pink:        #F9E4EC;
  --pink-soft:   #FDF1F5;
  --pink-deep:   #F5C9D8;
  --rose-gold:   #C9956C;
  --rose-gold-2: #B07A52;
  --gold:        #D4AF37;
  --gold-soft:   #E8C76A;
  --white:       #FFFFFF;
  --cream:       #FBF7F3;
  --ink:         #2C1810;
  --ink-soft:    #5A4A3F;
  --line:        rgba(44, 24, 16, 0.08);
  --shadow-sm:   0 2px 12px rgba(44, 24, 16, 0.05);
  --shadow:      0 12px 40px rgba(176, 122, 82, 0.10);
  --shadow-lg:   0 24px 60px rgba(176, 122, 82, 0.18);
  --radius:      18px;
  --radius-lg:   28px;
  --maxw:        1200px;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: min(100% - 2.5rem, var(--maxw));
  max-width: 100%;
  margin-inline: auto;
}

section, header, footer, .marquee {
  max-width: 100%;
  overflow-x: hidden;
}

.eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head p { font-size: 1.05rem; }

/* ========================================================= NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
}
.logo span {
  font-style: italic;
  font-weight: 600;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  animation: logoGlowSmall 3.2s ease-in-out infinite;
  will-change: filter;
}
.nav__links {
  display: flex;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  transition: right .3s var(--ease);
}
.nav__links a:hover { color: var(--rose-gold-2); }
.nav__links a:hover::after { right: 0; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  padding: 6px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
  gap: 0.25rem;
}
.nav__mobile a {
  padding: 0.85rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.nav__mobile.is-open { display: flex; }

/* ========================================================= LANGUAGE TOGGLE */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(44, 24, 16, 0.05);
  border: 1px solid rgba(44, 24, 16, 0.15);
  color: var(--ink);
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.lang-toggle:hover {
  background: rgba(44, 24, 16, 0.09);
  border-color: var(--rose-gold);
  color: var(--rose-gold-2);
}
.lang-toggle svg { display: block; opacity: 0.7; }
.nav__links .lang-toggle { margin-left: 0.5rem; }
.lang-toggle--mobile {
  width: 100%;
  justify-content: center;
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
}

/* ========================================================= BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(201, 149, 108, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 149, 108, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(44, 24, 16, 0.18);
}
.btn--ghost:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold-2);
}
.btn--gold {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--large {
  padding: 1.15rem 2.4rem;
  font-size: 1rem;
}

/* ========================================================= HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(201, 149, 108, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--pink-soft) 0%, var(--pink) 60%, var(--pink-deep) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4) 0%, transparent 25%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  text-align: center;
  max-width: 880px;
}
.hero__logo {
  width: clamp(220px, 40vw, 420px);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  animation: logoGlowHero 3.6s ease-in-out infinite;
  will-change: filter, transform;
  position: relative;
  z-index: 2;
}
.hero__logo::after { content: ''; }
.hero__logo-wrap {
  position: relative;
  display: inline-block;
}
.hero__caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 auto 1.4rem;
  max-width: 18ch;
}

@keyframes logoGlowHero {
  0%, 100% {
    filter:
      drop-shadow(0 6px 18px rgba(212, 175, 55, 0.35))
      drop-shadow(0 0 12px rgba(232, 199, 106, 0.25))
      drop-shadow(0 0 0 rgba(232, 199, 106, 0));
    transform: scale(1);
  }
  50% {
    filter:
      drop-shadow(0 8px 28px rgba(212, 175, 55, 0.55))
      drop-shadow(0 0 28px rgba(232, 199, 106, 0.65))
      drop-shadow(0 0 60px rgba(232, 199, 106, 0.45));
    transform: scale(1.02);
  }
}

@keyframes logoGlowSmall {
  0%, 100% {
    filter:
      drop-shadow(0 0 4px rgba(212, 175, 55, 0.25))
      drop-shadow(0 0 8px rgba(232, 199, 106, 0.15));
  }
  50% {
    filter:
      drop-shadow(0 0 8px rgba(212, 175, 55, 0.55))
      drop-shadow(0 0 18px rgba(232, 199, 106, 0.5));
  }
}

@keyframes logoShimmer {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  25% { opacity: 1; }
  60% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
  100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}
.hero__title {
  margin-bottom: 1.5rem;
  background: linear-gradient(
    100deg,
    #2C1810 0%,
    #2C1810 35%,
    #6B4423 44%,
    #C9956C 48%,
    #F5E1A4 50%,
    #C9956C 52%,
    #6B4423 56%,
    #2C1810 65%,
    #2C1810 100%
  );
  background-size: 320% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: titleShine 6.5s ease-in-out infinite;
  will-change: background-position;
}

@keyframes titleShine {
  0%   { background-position: 110% 50%; }
  55%  { background-position: -30% 50%; }
  100% { background-position: -30% 50%; }
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(
    90deg,
    #B07A52 0%,
    #C9956C 18%,
    #E8C76A 38%,
    #F5E1A4 50%,
    #E8C76A 62%,
    #D4AF37 82%,
    #B07A52 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerGold 5.5s ease-in-out infinite;
  will-change: background-position;
}

@keyframes shimmerGold {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero .eyebrow {
  background: linear-gradient(
    90deg,
    #B07A52 0%,
    #C9956C 25%,
    #E8C76A 50%,
    #C9956C 75%,
    #B07A52 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerGold 6s ease-in-out infinite;
  will-change: background-position;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--ink-soft);
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  font-weight: 600;
}
.hero__lifestyle {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 760px;
  margin-inline: auto;
}
.hero__lifestyle-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 149, 108, 0.15);
}
.hero__lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero__lifestyle-card:hover img { transform: scale(1.04); }
.hero__lifestyle-card--1 { transform: translateY(12px) rotate(-1.5deg); }
.hero__lifestyle-card--2 { transform: translateY(-12px) rotate(1.5deg); }

/* ========================================================= MARQUEE */
.marquee {
  background: linear-gradient(90deg, var(--ink) 0%, #3d2418 50%, var(--ink) 100%);
  color: var(--gold-soft);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.marquee__track span { padding-right: 1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================================================= SHOP */
.shop { padding: 7rem 0; background: var(--cream); }

.grid { display: grid; gap: 2rem; }
.grid--products {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  border: 1px solid rgba(201, 149, 108, 0.08);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product__media {
  position: relative;
  background:
    radial-gradient(circle at center, var(--white) 0%, var(--pink-soft) 100%);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  overflow: hidden;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 24px rgba(176, 122, 82, 0.12));
}
.product:hover .product__media img { transform: scale(1.05); }
.product__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  z-index: 2;
}
.product__tag--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
}
.product__body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.product__sub {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.product__desc {
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  flex: 1;
}
.product__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product__benefits li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
}
.product__benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.9rem;
}
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}
.product__foot .btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.product__media-link { display: block; }
.product__name-link { display: block; color: inherit; }
.product__name-link:hover h3 { color: var(--rose-gold-2); }
.product__learn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.product__learn:hover { gap: 0.7rem; color: var(--gold); }

/* ========================================================= STORY */
.story {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story__copy .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.benefits li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.benefits__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: var(--rose-gold-2);
  font-size: 1.3rem;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}
.benefits h4 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.benefits p  { margin: 0; font-size: 0.92rem; }

.story__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  justify-self: end;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(44, 24, 16, 0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
.story__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose-gold-2);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ========================================================= INGREDIENTS */
.ingredients {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--white) 100%);
}
.grid--ingredients {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.ingredient {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
  width: 100%;
  font: inherit;
  color: inherit;
}
.ingredient:hover {
  border-color: var(--rose-gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ingredient__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ingredient__sym {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
  box-shadow: 0 6px 18px rgba(201, 149, 108, 0.3);
}
.ingredient__head h3 {
  flex: 1;
  margin: 0;
  font-size: 1.15rem;
}
.ingredient__toggle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--rose-gold);
  transition: transform .3s var(--ease);
  font-weight: 300;
}
.ingredient[aria-expanded="true"] .ingredient__toggle { transform: rotate(45deg); }
.ingredient__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease), padding-top .3s var(--ease);
  padding-top: 0;
}
.ingredient__body > * {
  overflow: hidden;
  margin: 0;
}
.ingredient[aria-expanded="true"] .ingredient__body {
  grid-template-rows: 1fr;
  padding-top: 1rem;
}
.ingredient__body p { font-size: 0.94rem; }

/* ========================================================= HOW */
.how {
  padding: 7rem 0;
  background: var(--cream);
}
.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  flex: 1;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 149, 108, 0.1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p  { font-size: 0.95rem; margin: 0; }
.step__arrow {
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--rose-gold);
  font-family: 'Playfair Display', serif;
  font-weight: 300;
}

/* ========================================================= TESTIMONIALS */
.testimonials {
  padding: 7rem 0;
  background: var(--white);
}
.grid--testimonials {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  margin: 0;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--white) 100%);
  border: 1px solid rgba(201, 149, 108, 0.18);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--rose-gold);
  line-height: 1;
  opacity: 0.6;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial blockquote {
  margin: 0 0 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial figcaption strong {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--ink);
}
.testimonial figcaption span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  font-weight: 600;
}

/* ========================================================= RESULTS */
.results {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-soft) 100%);
}
.grid--results {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.result {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  isolation: isolate;
}
.result:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.result:hover img { transform: scale(1.05); }
.result::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44, 24, 16, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.result figcaption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.result figcaption strong {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.result figcaption span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
@media (max-width: 820px) {
  .grid--results { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ========================================================= AMAZON */
.amazon {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, var(--pink) 0%, var(--pink-deep) 100%);
  text-align: center;
}
.amazon__inner { max-width: 720px; margin: 0 auto; }
.amazon p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ========================================================= FOOTER */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2.5rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.logo--footer { font-size: 2rem; }
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer__nav a {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.footer__nav a:hover { opacity: 1; color: var(--gold-soft); }
.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(251, 247, 243, 0.6);
  letter-spacing: 0.06em;
}

/* ========================================================= CALLOUT */
.callout {
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-soft) 100%);
  position: relative;
}
.callout__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 760px;
  display: grid;
  gap: 1rem;
}
.callout__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.callout__list li p { margin: 0; color: var(--ink); }
.callout__list li strong { color: var(--ink); font-weight: 700; }
.callout__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1px;
}
.callout__close {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.55;
}
.callout__close em {
  font-style: italic;
  color: var(--rose-gold-2);
  font-weight: 600;
}
.callout__cta { text-align: center; }

/* ========================================================= PRODUCT STEP LABEL */
.product__step {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  background: var(--pink-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin: 0 0 0.75rem;
}

/* ========================================================= COMPARE */
.compare {
  padding: 6rem 0;
  background: var(--white);
}
.compare__table {
  max-width: 960px;
  margin: 0 auto 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare__row:last-child { border-bottom: 0; }
.compare__cell {
  padding: 1.1rem 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.compare__cell--label {
  align-items: flex-start;
  text-align: left;
  color: var(--ink);
  font-weight: 600;
  background: var(--cream);
}
.compare__row--head .compare__cell {
  padding: 1.25rem 1rem;
  background: var(--cream);
  font-weight: 700;
}
.compare__row--head .compare__cell strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
}
.compare__row--head .compare__cell span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 0.15rem;
  letter-spacing: 0.04em;
}
.compare__cell--us {
  background: linear-gradient(180deg, rgba(201, 149, 108, 0.08), rgba(201, 149, 108, 0.02));
  color: var(--rose-gold-2);
  font-weight: 700;
  font-size: 1.2rem;
}
.compare__row--head .compare__cell--us {
  background: linear-gradient(180deg, var(--rose-gold) 0%, var(--rose-gold-2) 100%);
  color: var(--white);
}
.compare__row--head .compare__cell--us strong,
.compare__row--head .compare__cell--us span {
  color: var(--white);
}
.compare__cell--no { color: #BDB1A8; font-size: 1.1rem; }
.compare__note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ========================================================= BUNDLE */
.bundle {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--cream) 100%);
}
.bundle__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.bundle__copy .lead {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.bundle__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.75rem;
}
.bundle__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.bundle__list li strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}
.bundle__list li span {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.bundle__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-2) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.bundle__cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.bundle__ships {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.bundle__visual { position: relative; }
.bundle__hero {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.bundle__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--rose-gold-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

/* ========================================================= GUARANTEE */
.guarantee {
  padding: 6rem 0;
  background: var(--white);
}
.guarantee__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-soft) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.guarantee__badge {
  display: grid;
  place-items: center;
}
.guarantee__seal {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--rose-gold) 60%, var(--rose-gold-2));
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  position: relative;
  box-shadow: 0 14px 40px rgba(176, 122, 82, 0.35), inset 0 0 0 4px rgba(255, 255, 255, 0.3), inset 0 0 0 6px rgba(176, 122, 82, 0.6);
  transform: rotate(-6deg);
}
.guarantee__seal::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.55);
}
.guarantee__seal-top,
.guarantee__seal-mid,
.guarantee__seal-bot {
  display: block;
  line-height: 1;
}
.guarantee__seal-top {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.5rem;
}
.guarantee__seal-mid {
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.45rem;
}
.guarantee__seal-bot {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}
.guarantee__copy h2 { margin-bottom: 1rem; }
.guarantee__copy p { font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ========================================================= FAQ */
.faq {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq__item[open] {
  box-shadow: var(--shadow);
  border-color: rgba(201, 149, 108, 0.3);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--rose-gold);
  line-height: 1;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary { color: var(--rose-gold-2); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body {
  padding: 0 1.5rem 1.5rem;
}
.faq__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================================= AMAZON ASSURANCE */
.amazon__assurance {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================================= REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================= MEDIA */
@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .story__visual { justify-self: center; max-width: 380px; }
  .step__arrow { transform: rotate(90deg); }
  .bundle__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bundle__visual { max-width: 460px; margin: 0 auto; }
  .guarantee__inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; text-align: center; }
  .guarantee__copy h2 br { display: none; }
  .compare__row { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .compare__cell { padding: 0.85rem 0.5rem; font-size: 0.85rem; }
  .compare__row--head .compare__cell strong { font-size: 0.98rem; }
  .compare__row--head .compare__cell span { font-size: 0.7rem; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav-logo-img { height: 40px; }
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero__badges { gap: 1.25rem; }
  .hero__lifestyle { margin-top: 2.5rem; gap: 0.75rem; }
  .shop, .story, .ingredients, .how, .testimonials, .amazon, .results, .callout, .compare, .bundle, .guarantee, .faq { padding: 5rem 0; }
  .callout__list li { padding: 1rem 1.1rem; }
  .callout__close { font-size: 1.02rem; }
  .compare__row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .compare__cell { padding: 0.6rem 0.4rem; font-size: 0.78rem; }
  .compare__cell--label { font-size: 0.85rem; padding-left: 0.7rem; padding-right: 0.4rem; }
  .compare__row--head .compare__cell { padding: 1rem 0.4rem; }
  .compare__row--head .compare__cell strong { font-size: 0.88rem; }
  .compare__row--head .compare__cell span { font-size: 0.62rem; letter-spacing: 0.02em; }
  .compare__cell--us { font-size: 1rem; }
  .guarantee__seal { width: 170px; height: 170px; }
  .guarantee__seal-mid { font-size: 1.85rem; }
  .faq__item summary { font-size: 1rem; padding: 1.1rem 1.25rem; }
  .faq__body { padding: 0 1.25rem 1.25rem; }
  .section-head { margin-bottom: 2.5rem; }
  .testimonial { padding: 1.75rem; }
  .product__foot { flex-direction: column; align-items: stretch; }
  .product__foot .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__logo {
    filter:
      drop-shadow(0 8px 28px rgba(212, 175, 55, 0.5))
      drop-shadow(0 0 24px rgba(232, 199, 106, 0.55)) !important;
    transform: none !important;
  }
  .nav-logo-img {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45)) !important;
  }
  .hero__title {
    background: linear-gradient(180deg, var(--ink) 0%, #4a2e1e 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    background-position: 0 0 !important;
  }
  .hero__title em {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--gold) 50%, var(--rose-gold) 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    background-position: 0 0 !important;
  }
  .hero .eyebrow {
    background: none !important;
    color: var(--rose-gold-2) !important;
    -webkit-text-fill-color: var(--rose-gold-2) !important;
  }
}

/* ===== Language toggle ===== */
.lang-pill {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1.5px solid rgba(200,168,76,.35); border-radius: 100px;
  padding: 5px 11px; font-size: 0.76rem; font-weight: 700;
  color: var(--ink); background: transparent; cursor: pointer;
  letter-spacing: .05em; transition: all .2s;
}
.lang-pill:hover { background: rgba(200,168,76,.12); border-color: rgba(200,168,76,.6); }
