/* ═══════════════════════════════════════════════════════
   Elegance Hair Extensions — Landing "Extensiones de Pelo"
   Mobile-first · Palette: #FFF / #F9F9F9 / #333 / #666 / gold #C8A875
   Type: Playfair Display (headings) · Montserrat (body)
   ═══════════════════════════════════════════════════════ */

:root {
  --white: #ffffff;
  --bg-soft: #f9f9f9;
  --ink: #333333;
  --ink-2: #666666;
  --gold: #c8a875;
  --gold-light: #e0c18f;
  --gold-dark: #a5854e; /* AA-safe on white for small text */
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", -apple-system, sans-serif;
  --max: 1240px;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(51, 51, 51, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h2 em, .banner h2 em { font-style: italic; color: var(--gold-dark); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; margin-bottom: 0.6rem;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.2rem; padding: 0 1.2rem; }
.section-head p { color: var(--ink-2); margin-top: 0.6rem; font-size: 0.95rem; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 0.95rem 2rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  min-height: 48px;
}
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 8px 24px rgba(200, 168, 117, 0.45); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(255, 255, 255, 0.75); color: #fff; backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }

/* ── Announcement bar ── */
.announce {
  background: var(--ink); color: #f4e9d8;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  overflow: hidden; white-space: nowrap;
}
.announce__track {
  display: inline-flex; gap: 4rem; padding: 0.55rem 0;
  animation: marquee 26s linear infinite;
}
.announce__track span { flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 168, 117, 0.25);
  transition: box-shadow 0.3s;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(51, 51, 51, 0.08); }
.header__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.55rem 1rem;
}
.header__logo img { width: 132px; height: auto; }
.header__burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 12px 10px; cursor: pointer;
}
.header__burger span { width: 22px; height: 1.8px; background: var(--ink); transition: 0.3s; }
.header__icons { margin-left: auto; display: flex; gap: 0.15rem; }
.icon-btn {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: none; border: 0; color: var(--ink); cursor: pointer;
  border-radius: 50%; transition: color 0.25s, background 0.25s;
}
.icon-btn:hover { color: var(--gold-dark); background: var(--bg-soft); }
.icon-btn svg { width: 21px; height: 21px; }
.header__search { border-top: 1px solid rgba(200, 168, 117, 0.25); padding: 0.8rem 1rem; background: #fff; }
.header__search form { max-width: 560px; margin: 0 auto; display: flex; gap: 0.5rem; }
.header__search input {
  flex: 1; padding: 0.7rem 1.1rem; border: 1px solid #ddd; border-radius: 999px;
  font-family: var(--sans); font-size: 0.9rem;
}
.header__search input:focus { outline: 2px solid var(--gold); border-color: transparent; }
.header__search button {
  padding: 0.7rem 1.4rem; background: var(--gold); color: #fff; border: 0;
  border-radius: 999px; font-family: var(--sans); font-weight: 600; cursor: pointer;
}

/* Desktop nav + mega menu (hidden on mobile) */
.nav { display: none; }
@media (min-width: 1024px) {
  .header__burger { display: none; }
  .nav { display: block; margin-left: 1.5rem; }
  .nav__list { display: flex; gap: 0.2rem; }
  .nav__item > a {
    display: block; padding: 1.35rem 0.95rem;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    position: relative;
  }
  .nav__item > a::after {
    content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.95rem;
    height: 1.5px; background: var(--gold); transform: scaleX(0);
    transform-origin: left; transition: transform 0.3s var(--ease);
  }
  .nav__item:hover > a::after, .nav__item:focus-within > a::after { transform: scaleX(1); }
  .mega {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-top: 1px solid rgba(200, 168, 117, 0.3);
    box-shadow: 0 30px 60px rgba(51, 51, 51, 0.12);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    padding: 2.2rem calc((100% - var(--max)) / 2 + 1rem);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  }
  .mega--small { grid-template-columns: 1fr; max-width: 340px; right: auto; }
  .nav__item--mega { position: static; }
  .nav__item--mega:hover .mega, .nav__item--mega:focus-within .mega {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .mega__col h3 {
    font-size: 1.05rem; margin-bottom: 0.9rem; padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(200, 168, 117, 0.4);
  }
  .mega__col h3 a:hover { color: var(--gold-dark); }
  .mega__col li a {
    display: block; padding: 0.34rem 0; font-size: 0.86rem; color: var(--ink-2);
    transition: color 0.2s, padding-left 0.25s var(--ease);
  }
  .mega__col li a:hover { color: var(--gold-dark); padding-left: 6px; }
  .mega__promo { position: relative; display: block; border-radius: var(--radius); overflow: hidden; }
  .mega__promo img { height: 210px; width: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
  .mega__promo:hover img { transform: scale(1.05); }
  .mega__promo span {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1rem 0.9rem;
    background: linear-gradient(transparent, rgba(51, 51, 51, 0.8));
    color: #fff; font-family: var(--serif); font-style: italic; font-size: 1rem;
  }
}

/* ── Mobile off-canvas menu ── */
.mobile-menu {
  position: fixed; inset: 0 18% 0 0; max-width: 400px; z-index: 120;
  background: #fff; padding: 1.2rem 1.4rem 2rem; overflow-y: auto;
  transform: translateX(-104%); transition: transform 0.42s var(--ease);
  box-shadow: 30px 0 60px rgba(0, 0, 0, 0.18);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.mobile-menu__close { background: none; border: 0; font-size: 1.5rem; padding: 10px; cursor: pointer; color: var(--ink); }
.mobile-menu details { border-bottom: 1px solid #eee; }
.mobile-menu summary {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600;
  padding: 1rem 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu summary::after { content: "+"; color: var(--gold-dark); font-family: var(--sans); font-weight: 400; }
.mobile-menu details[open] summary::after { content: "–"; }
.mobile-menu details a {
  display: block; padding: 0.7rem 0 0.7rem 0.9rem;
  font-size: 0.92rem; color: var(--ink-2); min-height: 44px;
}
.mobile-menu details a:active { color: var(--gold-dark); }
.mobile-menu__account {
  display: block; margin-top: 1.3rem; padding: 0.9rem 0; text-align: center;
  border: 1px solid var(--gold); border-radius: 999px; color: var(--gold-dark);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.mobile-menu__contact { margin-top: 1.6rem; display: grid; gap: 0.3rem; font-size: 0.85rem; color: var(--ink-2); }
.overlay {
  position: fixed; inset: 0; z-index: 110; background: rgba(51, 51, 51, 0.45);
  opacity: 0; transition: opacity 0.35s; backdrop-filter: blur(2px);
}
.overlay.is-visible { opacity: 1; }

/* ── HERO — 3D parallax ── */
.hero {
  position: relative; min-height: 92svh;
  display: grid; place-items: center; overflow: hidden;
  background: var(--ink);
}
.hero__layer { position: absolute; inset: 0; will-change: transform; }
.hero__layer--bg { inset: -8% 0; }
.hero__video, .hero__fallback {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.hero__fallback { z-index: -1; }
.hero__layer--bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(38, 32, 24, 0.62) 0%, rgba(38, 32, 24, 0.28) 55%, rgba(38, 32, 24, 0.05) 100%);
}
.hero__layer--particles { pointer-events: none; z-index: 2; }
.p {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 193, 143, 0.9), rgba(224, 193, 143, 0));
  animation: drift 9s ease-in-out infinite alternate;
}
.p1 { width: 10px; height: 10px; top: 22%; left: 12%; }
.p2 { width: 16px; height: 16px; top: 60%; left: 8%; animation-delay: -2s; }
.p3 { width: 8px; height: 8px; top: 30%; right: 18%; animation-delay: -4s; }
.p4 { width: 14px; height: 14px; top: 74%; right: 10%; animation-delay: -1s; }
.p5 { width: 6px; height: 6px; top: 48%; left: 46%; animation-delay: -5s; }
.p6 { width: 12px; height: 12px; top: 14%; right: 40%; animation-delay: -3s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0); opacity: 0.5; }
  to { transform: translate3d(18px, -30px, 0); opacity: 1; }
}
.hero__layer--content {
  position: relative; inset: auto; z-index: 3;
  padding: 5.5rem 1.4rem 6rem; max-width: var(--max); width: 100%;
}
.hero__eyebrow {
  color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.5rem, 8.5vw, 4.8rem); font-weight: 600;
  max-width: 13ch; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero__tagline {
  color: rgba(255, 255, 255, 0.92); font-size: clamp(1rem, 2.6vw, 1.2rem);
  max-width: 46ch; margin: 1.1rem 0 2rem;
}
.hero__tagline em { font-family: var(--serif); color: var(--gold-light); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px; z-index: 3;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%; width: 3px; height: 8px;
  margin-left: -1.5px; background: var(--gold-light); border-radius: 3px;
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint { 50% { transform: translateY(12px); opacity: 0.3; } }

/* ── Trust bar ── */
.trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
  max-width: var(--max); margin: 0 auto; padding: 2rem 1.4rem;
  border-bottom: 1px solid rgba(200, 168, 117, 0.25);
}
.trust__item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.8rem; color: var(--ink-2); font-weight: 500;
}
.trust__item svg { width: 26px; height: 26px; color: var(--gold-dark); flex-shrink: 0; }
.trust__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
@media (min-width: 800px) { .trust { grid-template-columns: repeat(4, 1fr); } }

/* ── Category cards — staggered ── */
.cats { padding: 4.5rem 0 2rem; background: var(--bg-soft); }
.cats__grid {
  max-width: var(--max); margin: 0 auto; padding: 0 1.2rem 3rem;
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow);
  transform: translateZ(0);
}
.cat-card--tall { grid-column: 1 / -1; aspect-ratio: 16 / 11; }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 45%, rgba(38, 32, 24, 0.78));
}
.cat-card__label {
  position: absolute; z-index: 2; left: 1.1rem; right: 1.1rem; bottom: 1rem; color: #fff;
}
.cat-card__label strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.cat-card__label em { font-style: normal; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
@media (min-width: 900px) {
  .cats__grid { grid-template-columns: repeat(6, 1fr); }
  .cat-card--tall { grid-column: span 3; grid-row: span 2; aspect-ratio: auto; }
  .cat-card { grid-column: span 3; }
  .cat-card:nth-child(2), .cat-card:nth-child(3) { grid-column: span 3; aspect-ratio: 16/10.4; }
  .cat-card:nth-child(4), .cat-card:nth-child(5) { grid-column: span 3; aspect-ratio: 16/9; }
  .cat-card:nth-child(4) { transform: translateY(-1.4rem); }
  .cat-card:nth-child(5) { transform: translateY(1rem); }
  .cats__grid { padding-bottom: 5rem; }
}

/* ── Shop the look ── */
.look {
  max-width: var(--max); margin: 0 auto; padding: 4rem 1.4rem;
  display: grid; gap: 2.2rem; align-items: center;
}
.look__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.look__media img { width: 100%; height: 100%; object-fit: cover; }
.look__content h2 { margin-bottom: 0.9rem; }
.look__content > p { color: var(--ink-2); font-size: 0.95rem; }
.look__content p a { color: var(--gold-dark); border-bottom: 1px solid var(--gold); }
.look__products { margin: 1.4rem 0 1.8rem; display: grid; gap: 0.4rem; }
.look__products a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0; font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.look__products a::before { content: "—"; color: var(--gold); }
.look__products a:hover { color: var(--gold-dark); }
@media (min-width: 900px) {
  .look { grid-template-columns: 1.05fr 1fr; gap: 4rem; padding: 6rem 1.4rem; }
  .look__media { transform: rotate(-1.2deg); }
}

/* ── Products ── */
.products { padding: 4.2rem 0; background: var(--bg-soft); }
.products__row {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%;
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.4rem 1.2rem 1.4rem; scrollbar-width: none;
  max-width: calc(var(--max) + 2.4rem); margin: 0 auto;
}
.products__row::-webkit-scrollbar { display: none; }
.product-card {
  scroll-snap-align: center; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 26px rgba(51, 51, 51, 0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card a { display: block; padding-bottom: 1.4rem; }
.product-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.product-card h3 { font-size: 1.12rem; margin: 1rem 1.2rem 0.35rem; }
.product-card p { font-size: 0.84rem; color: var(--ink-2); margin: 0 1.2rem 0.8rem; }
.product-card__cta {
  margin: 0 1.2rem; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark);
}
@media (min-width: 900px) {
  .products__row { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; }
}

/* ── Quiz ── */
.quiz { padding: 4.5rem 1.4rem; }
.quiz__inner {
  max-width: 820px; margin: 0 auto; text-align: center;
  border: 1px solid rgba(200, 168, 117, 0.5); border-radius: calc(var(--radius) * 1.6);
  padding: 3rem 1.4rem; background:
    radial-gradient(120% 160% at 50% -30%, rgba(224, 193, 143, 0.18), transparent 60%);
}
.quiz__inner > p:not(.eyebrow) { color: var(--ink-2); max-width: 48ch; margin: 0.7rem auto 1.6rem; font-size: 0.94rem; }
.quiz__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.chip {
  padding: 0.72rem 1.25rem; border: 1px solid var(--gold); border-radius: 999px;
  font-size: 0.82rem; font-weight: 500; color: var(--ink);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
  min-height: 44px; display: inline-flex; align-items: center;
}
.chip:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* ── Reviews ── */
.reviews { padding: 1rem 0 4.5rem; }
.reviews__score { color: var(--gold-dark); }
.reviews__score strong { color: var(--ink); }
.reviews__row {
  max-width: var(--max); margin: 0 auto; padding: 0 1.2rem;
  display: grid; gap: 1rem;
}
.review {
  background: var(--bg-soft); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  border-top: 2px solid var(--gold);
}
.review p { font-family: var(--serif); font-style: italic; font-size: 1.02rem; line-height: 1.55; }
.review footer { margin-top: 1rem; font-size: 0.78rem; color: var(--ink-2); letter-spacing: 0.06em; text-transform: uppercase; }
@media (min-width: 860px) { .reviews__row { grid-template-columns: repeat(3, 1fr); } }

/* ── Lifestyle banner ── */
.banner { position: relative; min-height: 62svh; overflow: hidden; display: grid; place-items: center; }
.banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(38, 32, 24, 0.25), rgba(38, 32, 24, 0.5));
}
.banner__content { position: relative; z-index: 2; text-align: center; padding: 4rem 1.4rem; }
.banner__content h2 { color: #fff; font-size: clamp(2rem, 6vw, 3.4rem); margin-bottom: 1.6rem; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.banner__content h2 em { color: var(--gold-light); }

/* ── Guides ── */
.guides { padding: 4.5rem 0; }
.guides__row {
  max-width: var(--max); margin: 0 auto; padding: 0 1.2rem;
  display: grid; gap: 1rem;
}
.guide {
  border: 1px solid #eee; border-radius: var(--radius); padding: 1.7rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.guide:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.guide__tag {
  align-self: flex-start; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); border: 1px solid var(--gold); border-radius: 999px; padding: 0.25rem 0.7rem;
}
.guide h3 { font-size: 1.18rem; font-weight: 500; }
.guide__more { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-top: auto; }
@media (min-width: 860px) { .guides__row { grid-template-columns: repeat(3, 1fr); } }

/* ── Newsletter ── */
.newsletter { padding: 0 1.4rem 5rem; }
.newsletter__box {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--ink); color: #fff; border-radius: calc(var(--radius) * 1.6);
  padding: 3.2rem 1.6rem; position: relative; overflow: hidden;
}
.newsletter__box::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(224, 193, 143, 0.55); border-radius: calc(var(--radius) * 1.2);
  pointer-events: none;
}
.newsletter__box h2 { color: #fff; }
.newsletter__box > p { color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; max-width: 44ch; margin: 0.7rem auto 1.5rem; }
.newsletter__box form { display: flex; flex-direction: column; gap: 0.7rem; max-width: 420px; margin: 0 auto; }
.newsletter__box input {
  padding: 0.95rem 1.3rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08); color: #fff; font-family: var(--sans); font-size: 0.92rem;
}
.newsletter__box input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter__box input:focus { outline: 2px solid var(--gold); }
.newsletter__box button { border: 0; cursor: pointer; }
.newsletter__box small { display: block; margin-top: 1rem; color: rgba(255, 255, 255, 0.5); font-size: 0.72rem; }
@media (min-width: 640px) { .newsletter__box form { flex-direction: row; } .newsletter__box input { flex: 1; } }

/* ── Footer ── */
.footer { background: var(--bg-soft); border-top: 1px solid rgba(200, 168, 117, 0.3); }
.footer__cols {
  max-width: var(--max); margin: 0 auto; padding: 3.5rem 1.4rem 2rem;
  display: grid; gap: 2.2rem; grid-template-columns: repeat(2, 1fr);
}
.footer__col h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.footer__col li a, .footer__col p {
  display: block; padding: 0.28rem 0; font-size: 0.86rem; color: var(--ink-2);
  transition: color 0.2s;
}
.footer__col li a:hover { color: var(--gold-dark); }
.footer__col--news { grid-column: 1 / -1; }
.footer__col--news form {
  display: flex; margin-top: 0.8rem; border: 1px solid var(--gold);
  border-radius: 999px; overflow: hidden; max-width: 320px; background: #fff;
}
.footer__col--news input { flex: 1; border: 0; padding: 0.75rem 1.1rem; font-family: var(--sans); font-size: 0.88rem; }
.footer__col--news input:focus { outline: none; }
.footer__col--news button {
  border: 0; background: var(--gold); color: #fff; padding: 0 1.2rem;
  font-size: 1.1rem; cursor: pointer; transition: background 0.25s;
}
.footer__col--news button:hover { background: var(--gold-dark); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer__social a {
  width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-dark);
  transition: background 0.25s, color 0.25s;
}
.footer__social a:hover { background: var(--gold); color: #fff; }
.footer__social svg { width: 19px; height: 19px; }
.footer__base {
  border-top: 1px solid rgba(200, 168, 117, 0.25);
  max-width: var(--max); margin: 0 auto; padding: 1.6rem 1.4rem 2.2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem; text-align: center;
}
.footer__base p { font-size: 0.76rem; color: var(--ink-2); }
@media (min-width: 900px) {
  .footer__cols { grid-template-columns: 1.2fr 1fr 1fr 1.4fr; }
  .footer__col--news { grid-column: auto; }
  .footer__base { flex-direction: row; justify-content: space-between; }
}

/* ── Scroll-reveal ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .announce__track, .p, .hero__scroll span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__layer { transform: none !important; }
  .hero__video { display: none; }
  .hero__fallback { z-index: 0; }
}

/* ═══════════════════════════════════════════════════════
   V2 EXPANSION — Execution Prompt Parts 3-12
   ═══════════════════════════════════════════════════════ */

/* Highlighted nav items */
.nav__item--highlight > a { color: var(--gold-dark); font-weight: 600; }

/* ── ELEGANCE watermark (hero) ── */
.hero__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(4rem, 16vw, 14rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  text-transform: uppercase;
}

/* ── WhatsApp buttons ── */
.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn--wa:hover { background: #128C7E; transform: translateY(-2px); }

@media (max-width: 600px) {
  .btn--wa { width: 100%; justify-content: center; }
  .hero__watermark { font-size: 3rem; }
}

/* ── Trust bar expanded (dark) ── */
.trust--expanded {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  background: #1a1612;
  padding: 18px 24px;
  max-width: none;
  border-bottom: none;
}
.trust--expanded .trust__item {
  color: #f0e8d8;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.trust--expanded .trust__item:last-child { border-right: none; }
.trust--expanded .trust__item svg { width: 16px; height: 16px; color: #c9a96e; }
.trust--expanded .trust__stars { color: #c9a96e; }

@media (max-width: 768px) {
  .trust--expanded .trust__item {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    padding: 10px 12px;
    white-space: normal;
  }
}
@media (max-width: 400px) {
  .trust--expanded .trust__item { width: 100%; }
}

/* ── Transformation section ── */
.transform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 600px;
}
.transform__media {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}
.transform__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.transform__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #b8935a; color: #fff;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 16px;
}
.transform__content { padding: 60px 56px; background: #faf6ef; }
.transform__content h2 { margin: 8px 0 36px; }
.transform__content h2 em { color: var(--gold-dark); }

.differentiators { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.diff { display: flex; gap: 20px; align-items: flex-start; }
.diff__numeral {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  color: #c9a96e;
  line-height: 1;
  min-width: 56px;
}
.diff__body h3 { font-size: 1rem; font-weight: 600; margin: 0 0 6px; font-family: var(--sans); }
.diff__body p  { font-size: 0.88rem; color: #5a4a3a; line-height: 1.7; margin: 0; }

@media (max-width: 900px) {
  .transform { grid-template-columns: 1fr; }
  .transform__media { min-height: 320px; }
  .transform__content { padding: 40px 24px; }
}

/* ── Pain points ── */
.pain { padding: 80px 5%; background: #f0e8d8; }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.pain__card {
  background: #fff;
  padding: 28px 24px;
  text-align: center;
  border-bottom: 3px solid #c9a96e;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pain__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pain__icon { font-size: 2rem; margin-bottom: 12px; }
.pain__card h3 { font-size: 0.95rem; font-weight: 600; margin: 0 0 12px; color: #1a1612; font-family: var(--sans); }
.pain__arrow { color: #c9a96e; font-size: 1.5rem; margin: 8px 0; font-weight: 700; }
.pain__solution span {
  display: block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.pain__solution p { font-size: 0.82rem; color: #5a4a3a; line-height: 1.6; margin: 0 0 10px; }
.pain__solution a { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; }
.pain__solution a:hover { text-decoration: underline; }

@media (max-width: 900px) { .pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pain__grid { grid-template-columns: 1fr; } }

/* ── Color match banner ── */
.colormatch {
  background: linear-gradient(135deg, #1a1612 0%, #2d2014 60%, #3a2a18 100%);
  padding: 80px 5%;
}
.colormatch__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.colormatch__content h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 20px; }
.colormatch__content > p { color: #d4c4a8; margin-bottom: 28px; }

.swatch-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.swatch {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #2d2014;
}
.swatch img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  pointer-events: none;
}
.swatch:hover {
  transform: scale(3);
  z-index: 20;
  border-color: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 3px #c9a96e;
  transform: scale(1.45);
  z-index: 10;
}
.swatch::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 0.65rem;
  padding: 4px 8px;
  white-space: nowrap;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}
.swatch:hover::after { opacity: 1; }

.colormatch__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.btn--white {
  background: #fff; color: #1a1612;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.btn--white:hover { background: #f0e8d8; transform: translateY(-2px); }
.btn--outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-weight: 500;
  border-radius: 999px;
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.colormatch__note { font-size: 0.75rem; color: #8a7a6a; margin: 0; }
.swatch-selected-label { font-size: 0.85rem; margin: -0.6rem 0 1.6rem; min-height: 1.3em; }
.swatch-selected-label strong { color: #c9a96e; }

.colormatch__image img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .colormatch__inner { grid-template-columns: 1fr; gap: 40px; }
  .colormatch__image { order: -1; max-height: 280px; overflow: hidden; border-radius: var(--radius); }
  .colormatch__image img { object-fit: cover; height: 280px; }
}
@media (max-width: 560px) {
  .swatch { width: 38px; height: 38px; }
  .btn--white, .btn--outline-white { width: 100%; text-align: center; }
}

/* ── Editorial gallery (real campaign images) ── */
.gallery { padding: 4.5rem 0; background: var(--white); }
.gallery__strip {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: 72%;
  gap: 0.9rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 1.2rem 1.6rem;
  scrollbar-width: none;
}
.gallery__strip::-webkit-scrollbar { display: none; }
.gallery__item {
  position: relative; scroll-snap-align: center;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; box-shadow: var(--shadow);
}
.gallery__item img, .gallery__item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item--video { border: 1px solid var(--gold); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.8rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(38, 32, 24, 0.72));
  color: #fff; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
}
@media (min-width: 700px) { .gallery__strip { grid-auto-columns: 31%; } }
@media (min-width: 1100px) { .gallery__strip { grid-auto-columns: 23%; max-width: 1400px; margin: 0 auto; } }

/* ── Reviews upgraded ── */
.review--card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 3px solid #c9a96e;
  margin: 0;
}
.review--featured { border-top-color: #b8935a; background: #faf6ef; }
.review__stars { color: #c9a96e; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review--card p { font-style: italic; color: #3a3028; line-height: 1.75; margin: 0 0 20px; font-size: 0.92rem; }
.review__footer { display: flex; gap: 12px; align-items: center; margin-top: 0; text-transform: none; letter-spacing: 0; }
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8dcc8;
}
.review__footer div { display: flex; flex-direction: column; }
.review__footer strong { font-size: 0.88rem; color: #1a1612; }
.review__footer span:not(.review__verified) { font-size: 0.75rem; color: #8a7a6a; }
.review__verified { font-size: 0.7rem !important; color: #5a8a5a !important; font-weight: 500; }
.reviews__cta { text-align: center; margin-top: 32px; }
.btn--outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid #c9a96e;
  border-radius: 999px;
  transition: all 0.2s;
}
.btn--outline:hover { background: #c9a96e; color: #fff; }

/* ── Professional section ── */
.professional {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #1a1612;
}
.professional__image { overflow: hidden; }
.professional__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.professional__image:hover img { transform: scale(1.03); }
.professional__content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.professional__content h2 { color: #fff; margin: 8px 0 20px; }
.professional__content h2 em { color: #c9a96e; }
.professional__content > p { color: #d4c4a8; line-height: 1.7; margin-bottom: 28px; }
.professional__list { list-style: none; padding: 0; margin: 0 0 32px; }
.professional__list li { color: #d4c4a8; padding: 6px 0; font-size: 0.88rem; }
.professional__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .professional { grid-template-columns: 1fr; }
  .professional__image { min-height: 280px; }
  .professional__content { padding: 40px 24px; }
}

/* ── Distributor section ── */
.distributor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #f0e8d8;
}
.distributor__content { padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.distributor__content h2 { margin: 8px 0 20px; }
.distributor__content h2 em { color: #c9a96e; font-style: italic; }
.distributor__content > p { color: #5a4a3a; margin-bottom: 32px; }

.distributor__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.dist-card { background: #fff; padding: 20px; border-radius: var(--radius); }
.dist-card__icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.dist-card h3 { font-size: 0.9rem; font-weight: 700; margin: 0 0 6px; font-family: var(--sans); }
.dist-card p { font-size: 0.8rem; color: #5a4a3a; margin: 0; line-height: 1.5; }

.distributor__steps h3 { font-size: 0.9rem; font-weight: 700; margin: 0 0 12px; font-family: var(--sans); }
.distributor__steps ol { padding: 0; list-style: none; margin: 0 0 28px; }
.distributor__steps li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.85rem; color: #3a2a18; padding: 8px 0;
  border-bottom: 1px dashed #d8c8a8;
}
.distributor__steps li span {
  font-size: 0.7rem; font-weight: 700; color: #b8935a;
  letter-spacing: 0.08em; flex-shrink: 0; padding-top: 2px;
}
.distributor__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.distributor__image { overflow: hidden; min-height: 500px; }
.distributor__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .distributor { grid-template-columns: 1fr; }
  .distributor__content { padding: 40px 24px; }
  .distributor__image { min-height: 280px; order: -1; }
}
@media (max-width: 500px) {
  .distributor__benefits { grid-template-columns: 1fr; }
}

/* ── Affiliate section ── */
.affiliate { background: #1a1612; padding: 80px 5%; text-align: center; }
.affiliate__inner { max-width: 720px; margin: 0 auto; }
.affiliate h2 { color: #fff; margin: 8px 0 16px; }
.affiliate .affiliate__inner > p { color: #d4c4a8; margin-bottom: 32px; }

.affiliate__stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 40px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius);
  overflow: hidden;
}
.aff-stat { flex: 1; padding: 24px 16px; border-right: 1px solid rgba(201,169,110,0.2); }
.aff-stat:last-child { border-right: none; }
.aff-stat strong { display: block; font-size: 2rem; font-family: var(--serif); color: #c9a96e; }
.aff-stat span { font-size: 0.78rem; color: #d4c4a8; }

.affiliate__form { text-align: left; }
.affiliate__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.78rem; font-weight: 600; color: #d4c4a8; letter-spacing: 0.05em; }
.field input, .field select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  color: #fff;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.field input::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field select:focus { border-color: #c9a96e; }
.field select option { background: #2d2014; color: #fff; }
.btn--full { width: 100%; justify-content: center; border: 0; cursor: pointer; }
.affiliate__legal { font-size: 0.72rem; color: #8a7a6a; margin-top: 12px; }
.affiliate__legal a { color: #c9a96e; }

@media (max-width: 600px) {
  .affiliate__fields { grid-template-columns: 1fr; }
  .affiliate__stats { flex-direction: column; }
  .aff-stat { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.2); }
}

/* ── Instagram UGC grid ── */
.ugc { padding: 80px 5%; }
.ugc__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin: 40px 0 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.ugc__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
.ugc__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.ugc__item:hover img { transform: scale(1.08); }
.ugc__overlay {
  position: absolute; inset: 0;
  background: rgba(26,22,18,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  color: #fff;
  font-size: 1.4rem;
}
.ugc__item:hover .ugc__overlay { opacity: 1; }

@media (max-width: 900px)  { .ugc__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .ugc__grid { grid-template-columns: repeat(2, 1fr); } }

/* ── FAQ ── */
.faq { padding: 80px 5%; background: #faf6ef; }
.faq__list { max-width: 800px; margin: 40px auto 0; }
.faq__item { border-bottom: 1px solid #e8dcc8; overflow: hidden; }
.faq__item:first-child { border-top: 1px solid #e8dcc8; }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1612;
  list-style: none;
  gap: 16px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #c9a96e;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 20px; animation: faqOpen 0.25s ease; }
.faq__a p { color: #5a4a3a; line-height: 1.75; margin: 0; font-size: 0.92rem; }
.faq__a a { color: var(--gold-dark); text-decoration: underline; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) { .faq__q { font-size: 0.92rem; } }

/* ── Final CTA + watermark ── */
.finalcta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1612 0%, #2d2014 50%, #3a2a18 100%);
  padding: 120px 5%;
  text-align: center;
  color: #fff;
}
.finalcta__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}
.finalcta__content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.finalcta h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin: 8px 0 20px; }
.finalcta h2 em { color: #c9a96e; font-style: italic; }
.finalcta .finalcta__content > p { color: #d4c4a8; margin-bottom: 32px; font-size: 1.05rem; }
.finalcta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.finalcta__contact { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
.finalcta__contact a { color: #c9a96e; font-size: 0.85rem; }
.finalcta__contact span { color: #8a7a6a; }

@media (max-width: 560px) {
  .finalcta { padding: 80px 24px; }
  .finalcta__actions { flex-direction: column; align-items: center; }
  .finalcta__actions .btn { width: 100%; text-align: center; }
}

/* ── Footer v2 ── */
.footer--v2 { background: #1a1612; color: #d4c4a8; border-top: none; }
.footer--v2 .footer__cols { display: none; }
.footer__top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 5% 40px;
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.2fr 1.2fr;
  gap: 48px;
}
.footer__brand > a > img { margin-bottom: 16px; display: block; filter: brightness(0) invert(1); opacity: 0.92; }
.footer__brand-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin: 16px 0;
}
.footer__brand p { font-size: 0.82rem; line-height: 1.6; color: #a09080; margin: 0 0 16px; }
.footer--v2 .footer__social { display: flex; gap: 12px; margin-top: 0; }
.footer--v2 .footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #c9a96e;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer--v2 .footer__social a:hover { background: #c9a96e; color: #1a1612; border-color: #c9a96e; }
.footer--v2 .footer__social svg { width: 18px; height: 18px; }

.footer--v2 .footer__col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a96e;
  margin: 0 0 16px;
  font-family: var(--sans);
}
.footer--v2 .footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer--v2 .footer__col ul li { margin-bottom: 8px; }
.footer--v2 .footer__col ul li a, .footer--v2 .footer__col p {
  color: #a09080;
  font-size: 0.83rem;
  transition: color 0.2s;
  padding: 0;
}
.footer--v2 .footer__col ul li a:hover { color: #c9a96e; }

.footer__newsletter { display: flex; gap: 8px; margin: 0.8rem 0 20px; border: none; background: transparent; max-width: none; border-radius: 0; overflow: visible; }
.footer__newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,110,0.25);
  color: #fff;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.85rem;
  border-radius: 999px;
}
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer__newsletter .btn--gold { padding: 10px 18px; }
.footer__product-img {
  width: 100%; height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

.footer--v2 .footer__base {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  flex-direction: row;
  text-align: left;
}
.footer--v2 .footer__base p { font-size: 0.75rem; color: #8a7a6a; }
.footer__payments { display: flex; gap: 8px; align-items: center; }
.pay-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #a09080;
}

@media (max-width: 1100px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer--v2 .footer__base { flex-direction: column; text-align: center; justify-content: center; }
}

/* ── WhatsApp floating button ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1612;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

@media (max-width: 560px) {
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float__tooltip { display: none; }
}

/* ── Section-level parallax (data-parallax) ── */
[data-parallax] { will-change: transform; }

/* ════════════════════════════════════════════
   MOBILE-FIRST GLOBAL OVERRIDES
   All multi-column → 1 column on mobile
   ════════════════════════════════════════════ */
body { font-size: max(16px, 1rem); }
h1   { font-size: clamp(2rem, 7vw, 4rem); }
h3   { font-size: clamp(1.1rem, 3vw, 1.5rem); }
main p { font-size: max(0.9rem, 15px); }

@media (max-width: 900px)  { .products__row { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr) !important; overflow: visible; } }
@media (max-width: 560px)  { .products__row { grid-template-columns: 1fr !important; } }
@media (max-width: 560px)  { .cats__grid { grid-template-columns: 1fr !important; } .cat-card { grid-column: auto !important; } }
@media (max-width: 900px)  { .reviews__row { display: flex !important; flex-direction: column !important; gap: 20px !important; } }
@media (max-width: 900px)  { .guides__row { display: flex !important; flex-direction: column !important; gap: 16px !important; } }
@media (max-width: 800px)  { .look { display: flex !important; flex-direction: column !important; } }
@media (max-width: 560px)  { .quiz__chips { flex-direction: column !important; } .chip { width: 100% !important; justify-content: center; } }
@media (max-width: 440px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none !important; }
  .hero__watermark, .finalcta__watermark { transition: none; }
}
