/* =========================================================
   VP — Vêtement Palace  ·  VP2
   Direction : Maison de couture — éditorial, plat, sans artifice.
   Palette : Noir & Blanc + Or mat (accent rare, jamais en aplat)
   Typo : Bodoni Moda (display) + Montserrat (texte, très tracé)
   ========================================================= */

:root {
  /* Palette — Noir, Blanc & Or mat */
  --bg:              #FAFAF9;
  --bg-card:         #FFFFFF;
  --bg-deep:         #0B0B0A;
  --gold:            #A6853D;
  --gold-light:      #C9AD74;
  --gold-dark:       #7C6127;
  --ink:             #111110;
  --ink-soft:        #46443F;
  --muted:           #8C897F;
  --cream:           #111110;
  --cream-pure:      #111110;
  --line:            rgba(17, 17, 16, 0.12);
  --line-soft:       rgba(17, 17, 16, 0.07);
  --line-strong:     rgba(17, 17, 16, 0.30);
  --white:           #ffffff;
  --wa:              #25D366;

  /* Fond sombre dégradé — même halo doré que le hero, jamais un noir plat */
  --dark-gradient:
    radial-gradient(1100px 750px at 10% -10%, rgba(166,133,61,0.22) 0%, transparent 58%),
    radial-gradient(900px 680px at 92% 108%, rgba(166,133,61,0.14) 0%, transparent 55%),
    linear-gradient(165deg, #1c1712 0%, var(--bg-deep) 55%, #0d0b08 100%);

  --shadow-sm:       none;
  --shadow-md:       none;

  --font-serif:      "Bodoni Moda", "Playfair Display", Georgia, serif;
  --font-sans:       "Montserrat", system-ui, sans-serif;
  --radius:          0px;
  --wrap:            1280px;
  --nav-h:           88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.serif { font-family: var(--font-serif); }

/* Section headers */
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.16;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.section-title em { font-style: italic; color: var(--gold-dark); font-weight: 400; }
.section-lead {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: .98rem;
  letter-spacing: .01em;
}
.section-head { text-align: center; margin-bottom: 80px; position: relative; z-index: 5; }
section { padding: 150px 0; position: relative; }

/* Buttons — plats, tracés, sans remplissage brillant */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 40px;
  border-radius: 0;
  font-weight: 500; font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color .4s ease, color .4s ease, border-color .4s ease, letter-spacing .4s ease;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.btn:hover { letter-spacing: .26em; }
.btn:hover svg { transform: translateX(2px); }

.btn--gold { background: transparent; color: var(--gold-light); border-color: var(--gold-light); }
.btn--gold:hover { background: var(--gold-light); color: var(--bg-deep); border-color: var(--gold-light); }

.btn--dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--dark:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bg); }

.btn--wa { background: transparent; color: var(--wa); border-color: var(--wa); }
.btn--wa:hover { background: var(--wa); color: #fff; border-color: var(--wa); }

.btn--full { width: 100%; }
.btn--sm { padding: 13px 26px; font-size: .66rem; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .35; pointer-events: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: height .4s ease, border-color .4s ease, background-color .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled {
  height: calc(var(--nav-h) - 12px);
  background: rgba(11,11,10,0.92);
  border-color: rgba(201,173,116,0.14);
  box-shadow: 0 1px 0 rgba(201,173,116,0.1);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

/* Nav always dark — same look as hero */
.nav--overlay { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.nav--overlay,
.nav--overlay:not(.scrolled) {
  background: linear-gradient(180deg, rgba(11,11,10,0.72) 0%, rgba(11,11,10,0.38) 70%, transparent 100%);
  border-color: transparent;
}
.nav--overlay.scrolled {
  background: rgba(11,11,10,0.92);
  border-color: rgba(201,173,116,0.14);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
/* Always show white/gold text regardless of scroll */
.nav--overlay .nav__logo span,
.nav--overlay .nav__logo span b { color: var(--bg); }
.nav--overlay .nav__logo img { filter: invert(1) brightness(1.4); }
.nav--overlay .nav__links a { color: rgba(250,249,247,0.7); }
.nav--overlay .nav__links a::after { background: var(--gold-light); }
.nav--overlay .nav__links a:hover,
.nav--overlay .nav__links a.is-current { color: var(--bg); }
.nav--overlay .nav__cart { border-color: rgba(250,249,247,0.35); color: var(--bg); }
.nav--overlay .nav__cart:hover { border-color: var(--gold-light); color: var(--gold-light); }
.nav--overlay .nav__cart-count { background: var(--gold-light); color: var(--ink); }
.nav--overlay .nav__burger { border-color: rgba(250,249,247,0.35); }
.nav--overlay .nav__burger span { background: var(--bg); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__logo { display: flex; align-items: center; gap: 14px; }
.nav__logo img { width: 56px; height: 56px; object-fit: contain; }
.nav__logo span {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.6rem; letter-spacing: -0.01em;
  color: var(--gold-dark);
}
.nav__logo span b { color: var(--ink); font-weight: 600; }
.nav__links { display: flex; gap: 44px; }
.nav__links a { font-size: .72rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; position: relative; padding: 4px 0; color: var(--ink-soft); transition: color 0.3s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold-dark); transition: width 0.35s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 24px; }
.nav__cart {
  position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  transition: border-color 0.3s, color 0.3s; border: 1px solid var(--line);
}
.nav__cart:hover { border-color: var(--ink); color: var(--gold-dark); }
.nav__cart svg { width: 18px; height: 18px; }
.nav__cart-count {
  position: absolute; top: -1px; right: -1px;
  background: var(--ink); color: var(--bg);
  font-size: .6rem; font-weight: 600;
  min-width: 16px; height: 16px; padding: 0 3px;
  border-radius: 50%; display: grid; place-items: center;
  transform: scale(0); transition: transform .3s ease;
}
.nav__cart-count.show { transform: scale(1); }
.nav__burger { display: none; flex-direction: column; gap: 6px; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 0; border: 1px solid var(--line); }
.nav__burger span { width: 16px; height: 1px; background: var(--ink); transition: .3s ease; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold-dark); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold-dark); }

/* =========================================================
   MOBILE MENU — Cinematic full-screen overlay
   ========================================================= */
.nav-mobile {
  position: fixed; inset: 0; z-index: 45;
  background: var(--dark-gradient);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .55s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
/* Decorative frame */
.nav-mobile::before {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid rgba(201,173,116,0.12);
  pointer-events: none; z-index: 0;
}
/* Glow orb */
.nav-mobile::after {
  content: ""; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(166,133,61,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }

/* Nav items wrapper */
.nav-mobile__links {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 0; width: 100%;
}
.nav-mobile a {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 8vw, 4rem);
  font-weight: 500; font-style: italic;
  color: rgba(250,249,247,0.55);
  padding: 14px 40px;
  width: 100%; text-align: center;
  position: relative;
  transition: color .4s ease, letter-spacing .4s ease;
  transform: translateY(24px); opacity: 0;
  transition: color .4s ease, opacity .55s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(250,249,247,0.07);
}
.nav-mobile a:first-child { border-top: 1px solid rgba(250,249,247,0.07); }
.nav-mobile a::after {
  content: attr(data-label);
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 50%; margin-top: -0.6em;
  font-size: .6rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-light); font-family: var(--font-sans); font-style: normal;
  font-weight: 500; opacity: 0;
  transition: opacity .3s ease;
}
.nav-mobile a:hover { color: var(--bg); letter-spacing: 0.04em; }
.nav-mobile.open a {
  opacity: 1; transform: translateY(0);
}
.nav-mobile.open a:nth-child(1) { transition-delay: .08s; }
.nav-mobile.open a:nth-child(2) { transition-delay: .16s; }
.nav-mobile.open a:nth-child(3) { transition-delay: .24s; }
.nav-mobile.open a:nth-child(4) { transition-delay: .32s; }

/* Social row in mobile menu */
.nav-mobile__foot {
  position: relative; z-index: 2;
  margin-top: 52px;
  display: flex; gap: 22px; align-items: center;
  transform: translateY(20px); opacity: 0;
  transition: opacity .55s ease .4s, transform .55s cubic-bezier(0.16,1,0.3,1) .4s;
}
.nav-mobile.open .nav-mobile__foot { opacity: 1; transform: translateY(0); }
.nav-mobile__foot a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(250,249,247,0.2);
  display: grid; place-items: center;
  color: rgba(250,249,247,0.55);
  font-size: inherit;
  transition: color .3s, border-color .3s, background .3s !important;
  transform: none !important; opacity: 1 !important;
  padding: 0 !important; width: 40px !important;
}
.nav-mobile__foot a:hover { color: var(--gold-light); border-color: var(--gold-light); background: rgba(201,173,116,0.08); }
.nav-mobile__foot svg { width: 16px; height: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--dark-gradient);
  color: var(--bg);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--bg-deep); }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  filter: grayscale(0.4) contrast(1.18) brightness(.6) saturate(.85);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center 42%, rgba(11,11,10,0.15) 0%, rgba(11,11,10,0.55) 62%, rgba(11,11,10,0.88) 100%),
    linear-gradient(180deg, rgba(11,11,10,0.55) 0%, rgba(11,11,10,0.05) 22%, rgba(11,11,10,0.1) 60%, rgba(11,11,10,0.85) 100%);
}
.hero__ghost {
  position: absolute; z-index: 1; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif); font-weight: 600; text-transform: uppercase;
  font-size: clamp(6rem, 21vw, 17rem); line-height: 1; letter-spacing: .04em;
  text-align: center; white-space: nowrap; pointer-events: none;
  color: transparent; -webkit-text-stroke: 1px rgba(250,249,247,0.14);
}
.hero__glow {
  position: absolute; z-index: 1; border-radius: 50%; filter: blur(60px); pointer-events: none;
  animation: glowDrift 12s ease-in-out infinite alternate;
}
.hero__glow--a { top: -10%; left: -6%; width: 420px; height: 420px; background: rgba(166, 133, 61, 0.28); }
.hero__glow--b { bottom: -12%; right: -8%; width: 480px; height: 480px; background: rgba(166, 133, 61, 0.16); animation-delay: -6s; }
@keyframes glowDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 3%) scale(1.12); }
}
.hero__spotlight {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 35%), rgba(217, 189, 122, 0.18), transparent 60%);
  opacity: 0; transition: opacity .5s ease;
}
.hero:hover .hero__spotlight { opacity: 1; }
@media (pointer: coarse) { .hero__spotlight { display: none; } }

.hero__frame {
  position: absolute; z-index: 4; inset: 18px;
  border: 1px solid rgba(250,249,247,0.14); pointer-events: none;
}
.hero__side {
  position: absolute; z-index: 3; left: 34px; top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-size: .64rem; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(250,249,247,0.4);
}

.hero__meta {
  position: relative; z-index: 3; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--wrap); margin: 0 auto; padding: 36px 50px 0; width: 100%;
}
.hero__meta-contact { font-size: .72rem; letter-spacing: .18em; color: rgba(250,249,247,0.6); }

.hero__inner {
  position: relative; z-index: 3; flex: 1;
  display: flex; align-items: center; justify-content: center;
  max-width: 720px; margin: 0 auto; padding: 24px 32px; width: 100%;
  text-align: center;
}
.hero__text { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: .7rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 500;
}
.hero__title {
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: clamp(2.1rem, 4vw, 2.9rem); line-height: 1.18; margin: 22px 0 26px;
  letter-spacing: 0; color: var(--bg);
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.hero__sub { font-size: .96rem; color: rgba(250,249,247,0.68); max-width: 460px; margin: 0 auto 40px; letter-spacing: .01em; }
.hero__actions { display: flex; gap: 34px; flex-wrap: wrap; justify-content: center; align-items: center; }

/* CTA pill — bulle magnétique */
.cta-pill {
  position: relative; display: inline-flex; align-items: center; gap: 22px;
  padding: 6px 6px 6px 30px; border: 1px solid rgba(250,249,247,0.35); border-radius: 999px;
  overflow: hidden; isolation: isolate; transition: border-color .4s ease;
}
.cta-pill::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 999px;
  background: var(--gold-light); transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.22,.9,.24,1);
}
.cta-pill:hover { border-color: var(--gold-light); }
.cta-pill:hover::before { transform: scaleX(1); }
.cta-pill__label {
  font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bg); transition: color .4s ease; white-space: nowrap;
}
.cta-pill:hover .cta-pill__label { color: var(--ink); }
.cta-pill__orb {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold-light); color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .5s cubic-bezier(.22,.9,.24,1), background .4s ease;
}
.cta-pill__orb svg { width: 17px; height: 17px; transition: transform .4s ease; }
.cta-pill:hover .cta-pill__orb { background: var(--ink); color: var(--gold-light); transform: rotate(45deg); }

/* CTA link — soulignement animé, sans cadre */
.cta-link {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,249,247,0.78); padding-bottom: 6px; transition: color .35s ease;
}
.cta-link__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); flex-shrink: 0; }
.cta-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--wa); transform: scaleX(.18); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,.9,.24,1);
}
.cta-link:hover { color: var(--bg); }
.cta-link:hover::after { transform: scaleX(1); }

.hero__foot {
  position: relative; z-index: 3; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: var(--wrap); margin: 0 auto; padding: 0 50px 30px; width: 100%;
}
.hero__foot-left { font-size: .68rem; letter-spacing: .14em; color: rgba(250,249,247,0.5); white-space: nowrap; }
.hero__stats { display: flex; gap: 0; }
.hero__stat { padding-right: 26px; margin-right: 26px; border-right: 1px solid rgba(250,249,247,0.18); text-align: left; }
.hero__stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero__stat b { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--bg); display: block; }
.hero__stat > span { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,249,247,0.5); }
.hero__foot-social { display: flex; gap: 16px; }
.hero__foot-social a { color: rgba(250,249,247,0.6); transition: color .3s; }
.hero__foot-social a:hover { color: var(--gold-light); }
.hero__foot-social svg { width: 15px; height: 15px; }

.hero__dots {
  position: absolute; z-index: 3; right: 40px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
}
.hero__dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(250,249,247,0.3); display: block; transition: all .3s; }
.hero__dots i.is-active { background: var(--gold-light); width: 6px; height: 6px; }

/* Marquee — bandeau discret, pas de clignotant */
.marquee { background: var(--ink); color: var(--bg); padding: 22px 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 40px; animation: marquee 46s linear infinite; }
.marquee__track span { font-family: var(--font-sans); font-weight: 400; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(250,249,247,0.55); }
.marquee__track span.dot { color: var(--gold-dark); font-style: normal; font-size: .6rem; letter-spacing: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   FEATURES
   ========================================================= */
.features { background: var(--dark-gradient); position: relative; z-index: 5; border-bottom: 1px solid rgba(250,249,247,0.08); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.feature {
  text-align: center; padding: 66px 44px;
  background: transparent;
  border-left: 1px solid rgba(250,249,247,0.12);
  transition: background-color .4s ease;
}
.feature:first-child { border-left: none; }
.feature:hover { background: rgba(250,249,247,0.03); }
.feature__ic {
  width: 54px; height: 54px; margin: 0 auto 26px; border-radius: 50%;
  border: 1px solid rgba(201,173,116,0.4); color: var(--gold-light);
  display: grid; place-items: center; transition: all .4s ease;
}
.feature:hover .feature__ic { background: var(--gold-light); color: var(--ink); border-color: var(--gold-light); }
.feature__ic svg { width: 22px; height: 22px; }
.feature__num {
  display: block; font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 1.1rem; color: rgba(250,249,247,0.4); margin-bottom: 14px;
}
.feature h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.3rem; margin-bottom: 14px; color: var(--bg); }
.feature p { color: rgba(250,249,247,0.6); font-size: .9rem; max-width: 300px; margin: 0 auto; }

/* Featured (home) — fond sombre façon hero */
#featured { background: var(--dark-gradient); }
#featured .eyebrow { color: var(--gold-light); }
#featured .section-title { color: var(--bg); }
#featured .section-title em { color: var(--gold-light); }
#featured .section-lead { color: rgba(250,249,247,0.62); }
#featured .card__add { border-color: rgba(250,249,247,0.4); color: var(--bg); }
#featured .card__add:hover { background: var(--bg); color: var(--ink); }
#featured .btn--dark { background: var(--gold-light); color: var(--ink); border-color: var(--gold-light); }
#featured .btn--dark:hover { background: transparent; color: var(--gold-light); border-color: var(--gold-light); }

/* Category teaser tiles (home) */
.cat-teaser { background: var(--dark-gradient); border-top: 1px solid rgba(250,249,247,0.08); }
.cat-teaser .eyebrow { color: var(--gold-light); }
.cat-teaser .section-title { color: var(--bg); }
.cat-teaser .section-title em { color: var(--gold-light); }
.cat-teaser .section-lead { color: rgba(250,249,247,0.62); }
.cat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(250,249,247,0.08); }
.cat-tile { position: relative; aspect-ratio: 3/4; overflow: hidden; display: flex; align-items: flex-end; }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 14%; transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1); }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,10,0.78) 100%);
}
.cat-tile__label {
  position: relative; z-index: 2; padding: 26px 24px; width: 100%;
  color: var(--bg);
}
.cat-tile__label span { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,249,247,0.65); }
.cat-tile__label h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.3rem; margin-top: 6px; }

/* Packaging (home) */
.packaging { background: var(--dark-gradient); border-top: 1px solid rgba(250,249,247,0.08); }
.packaging .eyebrow { color: var(--gold-light); }
.packaging .section-title { color: var(--bg); }
.packaging .section-title em { color: var(--gold-light); }
.packaging .section-lead { color: rgba(250,249,247,0.62); }
.packaging__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.packaging__item {
  background: transparent; padding: 26px 18px 24px;
  aspect-ratio: 3/4; border-radius: 4px;
  border: 1px solid rgba(250,249,247,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s ease, background-color .4s ease;
}
.packaging__item:hover { transform: translateY(-6px); border-color: rgba(201,173,116,0.4); background: rgba(250,249,247,0.03); }
.packaging__item img {
  max-width: 100%; max-height: 74%; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.45));
}
.packaging__item span { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,249,247,0.6); text-align: center; }

/* Catalogue page header */
.cat-header {
  background: var(--dark-gradient); border-bottom: 1px solid rgba(250,249,247,0.08);
  padding: calc(var(--nav-h) + 46px) 0 60px; text-align: center;
}
.cat-header .eyebrow { color: var(--gold-light); }
.cat-header .section-title { color: var(--bg); }
.cat-header .section-title em { color: var(--gold-light); }
.cat-header .section-lead { color: rgba(250,249,247,0.62); }
.cat-body { padding-top: 60px; background: var(--dark-gradient); }

/* =========================================================
   PRODUCTS (featured + catalogue)
   ========================================================= */
.filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 60px; }
.filter {
  padding: 12px 26px; border-radius: 0; font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(250,249,247,0.3); color: rgba(250,249,247,0.7);
  background: transparent;
  transition: all .3s ease;
}
.filter:hover { border-color: var(--bg); color: var(--bg); }
.filter.active { background: var(--gold-light); color: var(--ink); border-color: var(--gold-light); }
.cat-body .card__add { border-color: rgba(250,249,247,0.4); color: var(--bg); }
.cat-body .card__add:hover { background: var(--bg); color: var(--ink); }

.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
.card {
  background: transparent;
  transition: opacity .3s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.card__media {
  position: relative; overflow: hidden; aspect-ratio: 3/4; background: #EFEBE3;
  border-radius: 6px;
}
/* Produit ouvert via un lien de commande (catalogue.html?p=<id>) */
.card.is-target .card__media {
  box-shadow: 0 0 0 2px var(--gold-light);
  animation: card-target 2.4s ease-out 2;
}
@keyframes card-target {
  0%, 100% { box-shadow: 0 0 0 2px var(--gold-light); }
  50%      { box-shadow: 0 0 0 6px rgba(201, 173, 116, 0.25); }
}
.card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 14%; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.card:hover .card__media img { transform: scale(1.05); }
.card__scrim {
  position: absolute; inset: auto 0 0 0; height: 58%;
  background: linear-gradient(180deg, transparent 0%, rgba(11,11,10,0.15) 35%, rgba(11,11,10,0.82) 100%);
  pointer-events: none;
}
.card__overlay {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 4;
  color: var(--bg);
}
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(250,249,249,0.92); color: var(--ink); font-size: .58rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 3px;
  z-index: 5;
}
.card__tag--promo { background: var(--ink); color: var(--bg); }
.card__zoom {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(250,249,249,0.92); color: var(--ink);
  display: grid; place-items: center; opacity: 0; transform: translateY(-6px);
  transition: all .3s ease;
  z-index: 5;
}
.card:hover .card__zoom { opacity: 1; transform: translateY(0); }
.card__zoom:hover { background: var(--ink); color: var(--bg); }
.card__zoom svg { width: 15px; height: 15px; }
.card__cat { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,249,249,0.7); }
.card__name { font-family: var(--font-serif); font-weight: 500; font-size: 1.1rem; margin: 6px 0 6px; line-height: 1.28; color: var(--bg); }
.card__price-row { display: flex; align-items: baseline; gap: 9px; }
.card__price { font-weight: 500; font-size: .95rem; color: var(--bg); letter-spacing: .02em; }
.card__old { font-size: .78rem; color: rgba(250,249,249,0.55); text-decoration: line-through; }
.card__add {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; margin-top: 14px; padding: 15px;
  background: transparent; color: var(--ink); font-weight: 600; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1.5px solid var(--ink); border-radius: 4px;
  transition: all .3s ease;
}
.card__add svg { width: 16px; height: 16px; }
.card__add:hover { background: var(--ink); color: var(--bg); }
.card__add svg { width: 15px; height: 15px; }
.card__add:hover { background: var(--ink); color: var(--bg); }

.products-more { text-align: center; margin-top: 70px; }
#catalogue { background: var(--bg); border-top: 1px solid var(--line-soft); }

/* =========================================================
   AFFILIATION
   ========================================================= */
.affil { background: var(--dark-gradient); color: var(--bg); position: relative; overflow: hidden; }
.affil .eyebrow { color: var(--gold-light); }
.affil__pattern {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(201,173,116,0.05) 0%, transparent 55%);
}
.affil__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.affil h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.16; margin-bottom: 24px; color: var(--bg); }
.affil h2 em { color: var(--gold-light); font-style: italic; font-weight: 400; }
.affil__lead { color: rgba(250,249,247,0.6); margin-bottom: 40px; max-width: 480px; font-size: 1rem; }
.affil__list { display: grid; gap: 26px; }
.affil__item { display: flex; gap: 22px; align-items: flex-start; }
.affil__item-ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 0;
  background: transparent; color: var(--gold-light);
  border: 1px solid rgba(250,249,247,0.2);
  display: grid; place-items: center;
}
.affil__item-ic svg { width: 19px; height: 19px; }
.affil__item h4 { font-size: 1.02rem; font-weight: 500; margin-bottom: 6px; color: var(--bg); }
.affil__item p { font-size: .88rem; color: rgba(250,249,247,0.55); }
.affil__cta { margin-top: 42px; }
.affil__card {
  background: transparent;
  border: 1px solid rgba(250,249,247,0.16);
  padding: 50px;
  text-align: center;
  position: relative;
}
.affil__card .code {
  font-family: var(--font-serif); font-weight: 500; font-size: 2rem; letter-spacing: .14em;
  color: var(--gold-light); border: 1px solid rgba(250,249,247,0.22);
  padding: 24px; margin: 28px 0;
}
.affil__card p { color: rgba(250,249,247,0.55); font-size: .88rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--dark-gradient); border-top: 1px solid rgba(250,249,247,0.08); color: var(--bg); }
.contact .eyebrow { color: var(--gold-light); }
.contact .section-title { color: var(--bg); }
.contact .section-title em { color: var(--gold-light); }
.contact .section-lead { color: rgba(250,249,247,0.62); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact__info li { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(250,249,247,0.1); font-size: .92rem; }
.contact__info li svg { width: 19px; height: 19px; color: var(--gold-light); flex-shrink: 0; }
.contact__socials { display: flex; gap: 14px; margin-top: 34px; }
.contact__socials a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: transparent; color: var(--bg); border: 1px solid rgba(250,249,247,0.35);
  transition: all .3s ease;
}
.contact__socials a:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); transform: translateY(-3px); }
.contact__socials svg { width: 18px; height: 18px; }
.contact__panel {
  border: 1px solid rgba(250,249,247,0.14);
  background: rgba(250,249,247,0.03);
  border-radius: 4px;
  padding: 54px; min-height: 340px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.contact__panel h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.9rem; margin-bottom: 34px; color: var(--bg); }
.contact__steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 38px; }
.contact__step { display: flex; gap: 18px; align-items: flex-start; }
.contact__step-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(201,173,116,0.4); color: var(--gold-light);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-style: italic; font-size: .8rem;
}
.contact__step h4 { font-size: .98rem; font-weight: 500; color: var(--bg); margin-bottom: 4px; }
.contact__step p { font-size: .82rem; color: rgba(250,249,247,0.55); line-height: 1.5; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { background: var(--dark-gradient); color: var(--bg); text-align: center; }
.newsletter h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 18px; color: var(--bg); }
.newsletter h2 em { color: var(--gold-light); font-style: italic; font-weight: 400; }
.newsletter p { color: rgba(250,249,247,0.55); margin-bottom: 36px; font-size: 1rem; }
.newsletter__form { display: flex; gap: 14px; max-width: 480px; margin: 0 auto; }
.newsletter__form input {
  flex: 1; padding: 17px 22px; border-radius: 0; border: 1px solid rgba(250,249,247,0.22);
  background: transparent; color: var(--bg); font-family: inherit;
  transition: border-color 0.3s;
}
.newsletter__form input::placeholder { color: rgba(250,249,247,0.38); }
.newsletter__form input:focus { outline: none; border-color: var(--gold-light); }
.newsletter__feedback { margin-top: 20px; font-size: .8rem; letter-spacing: .06em; color: var(--gold-light); min-height: 20px; font-weight: 400; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark-gradient); color: rgba(250,249,247,0.45); padding: 90px 0; position: relative; overflow: hidden; }
.footer__wordmark {
  position: absolute; z-index: 0; left: 0; right: 0; top: -4%;
  font-family: var(--font-serif); font-weight: 600; text-transform: uppercase;
  font-size: clamp(5rem, 17vw, 13rem); line-height: 1; letter-spacing: .03em;
  text-align: center; white-space: nowrap; pointer-events: none;
  color: transparent; -webkit-text-stroke: 1px rgba(250,249,247,0.05);
}
.footer .wrap { position: relative; z-index: 1; }

.footer__top {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__brand img { width: 58px; height: 58px; object-fit: contain; filter: invert(1) brightness(1.4); }
.footer__brand span { font-family: var(--font-serif); font-weight: 500; font-size: 1.5rem; color: var(--bg); letter-spacing: 0.1em; }
.footer__tag { max-width: 320px; font-style: italic; font-family: var(--font-serif); font-weight: 400; color: rgba(250,249,247,0.45); line-height: 1.65; }
.footer__social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(250,249,247,0.2); color: rgba(250,249,247,0.6);
  transition: all .3s ease;
}
.footer__social a:hover { background: var(--gold-light); color: var(--ink); border-color: var(--gold-light); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }

/* =========================================================
   CART DRAWER — Dark premium redesign
   ========================================================= */
.overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5,4,3,0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .45s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.cart {
  position: fixed; top: 0; right: 0; z-index: 100; height: 100%;
  width: min(440px, 100%);
  background: #0f0e0b;
  border-left: 1px solid rgba(201,173,116,0.14);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -24px 0 60px rgba(0,0,0,0.55);
}
.cart.open { transform: translateX(0); }

/* Subtle glow at top */
.cart::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 220px;
  background: radial-gradient(ellipse at 50% -10%, rgba(166,133,61,0.16) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 28px 24px;
  border-bottom: 1px solid rgba(201,173,116,0.14);
  position: relative; z-index: 1;
}
.cart__head-left { display: flex; flex-direction: column; gap: 4px; }
.cart__head-eyebrow {
  font-size: .6rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 500;
}
.cart__head h3 {
  font-family: var(--font-serif); font-weight: 500; font-size: 1.55rem;
  color: rgba(250,249,247,0.95); font-style: italic;
}
.cart__close {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem; color: rgba(250,249,247,0.5);
  border: 1px solid rgba(250,249,247,0.15);
  transition: all 0.3s ease;
}
.cart__close:hover {
  background: rgba(201,173,116,0.12); color: var(--gold-light);
  border-color: rgba(201,173,116,0.35);
}

.cart__body {
  flex: 1; overflow-y: auto; padding: 8px 28px;
  position: relative; z-index: 1;
}
.cart__body::-webkit-scrollbar { width: 4px; }
.cart__body::-webkit-scrollbar-track { background: transparent; }
.cart__body::-webkit-scrollbar-thumb { background: rgba(201,173,116,0.2); border-radius: 4px; }

.cart__empty {
  text-align: center; padding: 80px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cart__empty svg {
  width: 54px; height: 54px;
  color: rgba(201,173,116,0.25);
  margin: 0 auto;
}
.cart__empty p {
  color: rgba(250,249,247,0.35); font-size: .88rem;
  letter-spacing: .06em;
}

.cart-item {
  display: flex; gap: 18px; padding: 22px 0;
  border-bottom: 1px solid rgba(250,249,247,0.07);
  animation: slideInCart .4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideInCart {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item img {
  width: 72px; height: 96px; object-fit: cover;
  border: 1px solid rgba(201,173,116,0.18);
  border-radius: 2px;
  flex-shrink: 0;
}
.cart-item__info { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.cart-item__name {
  font-family: var(--font-serif); font-weight: 500; font-size: 1rem;
  line-height: 1.3; color: rgba(250,249,247,0.9);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item__price {
  color: var(--gold-light); font-weight: 500; font-size: .88rem;
  margin-top: 6px; letter-spacing: .03em;
}
.cart-item__ctrl {
  display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 10px;
}
.qty {
  display: flex; align-items: center;
  border: 1px solid rgba(250,249,247,0.15); border-radius: 2px; overflow: hidden;
}
.qty button {
  width: 30px; height: 30px; font-size: 1rem;
  color: rgba(250,249,247,0.6); transition: all 0.2s;
}
.qty button:hover { background: rgba(201,173,116,0.15); color: var(--gold-light); }
.qty span {
  width: 32px; text-align: center; font-size: .86rem;
  font-weight: 500; color: rgba(250,249,247,0.9);
  border-left: 1px solid rgba(250,249,247,0.1);
  border-right: 1px solid rgba(250,249,247,0.1);
}
.cart-item__remove {
  margin-left: auto; color: rgba(250,249,247,0.28);
  font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 500; transition: color 0.3s; border: none; background: none;
  cursor: pointer;
}
.cart-item__remove:hover { color: #c0533a; }

.cart__foot {
  padding: 22px 28px 28px;
  border-top: 1px solid rgba(201,173,116,0.14);
  background: rgba(5,4,3,0.6);
  position: relative; z-index: 1;
  backdrop-filter: blur(10px);
}
.cart__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px;
}
.cart__total span {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(250,249,247,0.35); font-weight: 500;
}
.cart__total b {
  font-family: var(--font-serif); font-weight: 500; font-size: 1.7rem;
  color: var(--gold-light);
}
.cart__note {
  font-size: .72rem; color: rgba(250,249,247,0.3);
  margin-bottom: 20px; line-height: 1.6;
  border-left: 2px solid rgba(201,173,116,0.25);
  padding-left: 12px;
}

/* =========================================================
   LIGHTBOX / QUICK VIEW
   ========================================================= */
.lightbox { position: fixed; inset: 0; z-index: 110; background: rgba(250,249,247,0.98); display: none; place-items: center; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border: 1px solid var(--line-strong); transform: scale(0.97); transition: transform 0.4s ease; }
.lightbox.open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 28px; right: 34px; color: var(--ink); font-size: 2.2rem; line-height: 1; font-weight: 300; transition: color 0.3s; }
.lightbox__close:hover { color: var(--gold-dark); }

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 150%);
  background: var(--ink); color: var(--bg); padding: 16px 32px; border-radius: 0;
  font-size: .78rem; letter-spacing: .06em; font-weight: 400; z-index: 120;
  display: flex; align-items: center; gap: 12px;
  transition: transform .45s cubic-bezier(0.19, 1, 0.22, 1);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 16px; height: 16px; color: var(--gold-light); }

/* Scroll-to-top */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 40;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--bg); display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(12px); transition: all 0.3s ease;
  border: 1px solid var(--ink);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top.show:hover { background: transparent; color: var(--ink); }
.to-top svg { width: 19px; height: 19px; }

/* WhatsApp Button Floating */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 40;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.whatsapp-float.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-float.show:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 21px; height: 21px; fill: currentColor; }

/* Reveal on scroll base */
.reveal {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1), transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal-up { transform: translateY(28px); }
.reveal-down { transform: translateY(-28px); }
.reveal-left { transform: translateX(24px); }
.reveal-right { transform: translateX(-24px); }
.reveal-scale { transform: scale(0.98); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .packaging__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__glow { display: none; }
  .hero__media img { object-fit: cover; object-position: top center; }
  .hero__inner { padding: 24px 24px; }
  .hero__ghost { font-size: clamp(4rem, 26vw, 8rem); }
  .hero__dots, .hero__side { display: none; }
  .hero__frame { inset: 10px; }
  .hero__meta { padding: 20px 20px 0; }
  .hero__meta-contact { display: none; }
  .hero__foot { padding: 0 20px 20px; flex-wrap: wrap; gap: 12px; }
  .hero__stats { order: 3; width: 100%; justify-content: center; }
  .hero__actions { gap: 18px; }
  .cta-pill { padding: 5px 5px 5px 24px; gap: 16px; }
  .cta-pill__orb { width: 38px; height: 38px; }
  .features__grid { grid-template-columns: 1fr; }
  .feature { border-left: none; border-top: 1px solid rgba(250,249,247,0.12); padding: 48px 24px; }
  .feature:first-child { border-top: none; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .affil__inner, .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  section { padding: 96px 0; }
}
@media (max-width: 480px) {
  .hero__stats { gap: 0; }
  .hero__stat { padding-right: 22px; margin-right: 22px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form button { width: 100%; }
  .card__name { font-size: 1.05rem; }
  .whatsapp-float { bottom: 20px; left: 20px; width: 42px; height: 42px; }
  .to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
