/* =========================================================
   L'Authentique by Claire — Huile d'Argan
   Luxury beige / gold / white — mobile-first
   ========================================================= */

:root {
  --cream:      #f6efe4;
  --cream-deep: #efe6d6;
  --sand:       #e7dac4;
  --ivory:      #fbf7f0;
  --white:      #ffffff;
  --ink:        #2c271f;
  --ink-soft:   #5b5346;
  --gold:       #b8923e;
  --gold-deep:  #9a7730;
  --gold-light: #d8b765;
  --line:       #e3d8c5;
  --shadow:     38px 38px 80px rgba(120, 96, 48, .14);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-title:   "Marcellus", Georgia, serif;
  --ff-body:    "Jost", system-ui, sans-serif;

  --wrap: 1200px;
  --r:    18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: #fff; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}

h1, h2, h3 { font-family: var(--ff-title); font-weight: 400; line-height: 1.08; }
h2 em, h1 em { font-family: var(--ff-display); font-style: italic; font-weight: 500; }

.section-head { max-width: 720px; margin: 0 auto 3.4rem; text-align: center; padding: 0 1.2rem; }
.section-head h2 { font-size: clamp(2rem, 5.4vw, 3.2rem); color: var(--ink); }
.section-lede, .section-head .section-lede {
  margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.04rem; max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 500; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  will-change: transform;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #fff; box-shadow: 0 14px 30px rgba(154, 119, 48, .32);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(154, 119, 48, .42); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn--wa { background: #1faf54; color: #fff; box-shadow: 0 14px 30px rgba(31,175,84,.3); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(31,175,84,.4); }
.btn--wa svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--ink); color: var(--cream); overflow: hidden;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
.announce__track {
  display: flex; gap: 1.4rem; white-space: nowrap; width: max-content;
  padding: .65rem 0; animation: marquee 34s linear infinite;
}
.announce__track .dot { color: var(--gold-light); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 239, 228, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: .7rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__logo { width: 46px; height: 46px; object-fit: contain; }
.nav__brandtext { display: flex; flex-direction: column; line-height: 1; }
.nav__brandname { font-family: var(--ff-title); font-size: 1.1rem; letter-spacing: .02em; }
.nav__brandsub { font-family: var(--ff-display); font-style: italic; font-size: .92rem; color: var(--gold-deep); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 400; color: var(--ink-soft); transition: color .25s; position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold); transition: width .3s;
}
.nav__links a:not(.nav__cta):hover { color: var(--ink); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--ink); color: var(--cream) !important; padding: .6rem 1.4rem;
  border-radius: 100px; letter-spacing: .12em; transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--gold-deep); transform: translateY(-2px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% 18%, rgba(216,183,101,.28), transparent 60%),
    radial-gradient(700px 600px at 8% 90%, rgba(231,218,196,.6), transparent 55%),
    linear-gradient(180deg, var(--ivory), var(--cream));
}
.hero__inner {
  position: relative; max-width: var(--wrap); margin: 0 auto;
  padding: 3rem 1.2rem 4rem;
  display: grid; gap: 2rem; align-items: center;
}
.hero__title { font-size: clamp(2.9rem, 11vw, 5.6rem); color: var(--ink); letter-spacing: -.01em; }
.hero__lede { margin-top: 1.4rem; max-width: 460px; font-size: 1.08rem; color: var(--ink-soft); }
.hero__actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__proof {
  list-style: none; display: flex; gap: 1.8rem; margin-top: 2.6rem; flex-wrap: wrap;
}
.hero__proof li {
  font-size: .78rem; color: var(--ink-soft); letter-spacing: .04em;
  display: flex; flex-direction: column; gap: .15rem;
}
.hero__proof span { font-family: var(--ff-display); font-style: italic; font-size: 1.7rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0; }

/* hero visual */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__halo {
  position: absolute; width: min(82%, 420px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--white), var(--cream-deep) 72%);
  box-shadow: inset 0 -30px 60px rgba(184,146,62,.18), 30px 40px 80px rgba(150,118,50,.18);
}
.hero__bottle {
  position: relative; width: min(78%, 380px); border-radius: 22px;
  box-shadow: 26px 34px 60px rgba(120, 96, 48, .28);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero__badge {
  position: absolute; background: rgba(251,247,240,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 14px; padding: .6rem .95rem;
  box-shadow: 0 16px 30px rgba(120,96,48,.16); text-align: center; line-height: 1.1;
}
.hero__badge-k { display: block; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.hero__badge-v { display: block; font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; color: var(--gold-deep); }
.hero__badge--top { top: 12%; right: 2%; animation: floaty 6s ease-in-out infinite .8s; }
.hero__badge--bottom { bottom: 14%; left: 0%; animation: floaty 6s ease-in-out infinite 1.6s; }

/* ---------- Trust ---------- */
.trust { background: var(--ink); color: var(--cream); }
.trust__list {
  max-width: var(--wrap); margin: 0 auto; list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.4rem;
  padding: 1.6rem 1.2rem;
}
.trust__list li {
  display: flex; align-items: center; gap: .6rem; justify-content: center;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; text-align: center;
}
.trust__list svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-light); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Sections base spacing ---------- */
.benefits, .origin, .ritual, .buy, .avis, .faq, .order, .contact {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) 1.2rem;
}

/* ---------- Benefits ---------- */
.benefits__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.bcard {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r);
  padding: 2rem 1.8rem; box-shadow: 0 18px 40px rgba(120,96,48,.06);
}
.bcard__num { font-family: var(--ff-display); font-style: italic; font-size: 2rem; color: var(--gold-light); margin-bottom: .6rem; }
.bcard h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.bcard p { color: var(--ink-soft); }
.bcard--gold { background: linear-gradient(150deg, var(--sand), var(--cream-deep)); border-color: transparent; }
.bcard--quote { display: flex; flex-direction: column; justify-content: center; background: var(--ink); color: var(--cream); border-color: transparent; }
.bcard__quote { font-family: var(--ff-display); font-style: italic; font-size: 1.5rem; line-height: 1.4; }
.bcard__sign { margin-top: 1rem; letter-spacing: .2em; text-transform: uppercase; font-size: .74rem; color: var(--gold-light); }

.bmedia { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.bmedia img { width: 100%; height: 100%; object-fit: cover; }
.bmedia figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem .9rem;
  color: #fff; font-family: var(--ff-display); font-style: italic; font-size: 1.05rem;
  background: linear-gradient(transparent, rgba(44,39,31,.72));
}

/* ---------- Origin ---------- */
.origin { display: grid; gap: 2.4rem; align-items: center; }
.origin__media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.origin__media img { width: 100%; height: 100%; object-fit: cover; }
.origin__stamp {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(251,247,240,.94); border-radius: 12px; padding: .7rem 1.1rem;
  display: flex; flex-direction: column; line-height: 1.15; box-shadow: 0 12px 26px rgba(0,0,0,.15);
}
.origin__stamp span { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.origin__stamp strong { font-family: var(--ff-title); font-weight: 400; color: var(--gold-deep); font-size: 1.05rem; }
.origin__copy h2 { font-size: clamp(2rem, 5.4vw, 3.1rem); margin-bottom: 1.2rem; }
.origin__copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.origin__copy strong { color: var(--ink); font-weight: 500; }
.origin__facts { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.origin__facts dt { font-family: var(--ff-display); font-style: italic; font-size: 1.7rem; color: var(--gold-deep); }
.origin__facts dd { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Ritual ---------- */
.ritual__steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 1.2rem; counter-reset: r; }
.ritual__steps li {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r);
  padding: 2rem 1.8rem; text-align: center;
}
.ritual__steps span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%; margin-bottom: 1rem;
  font-family: var(--ff-display); font-style: italic; font-size: 1.5rem; color: var(--gold-deep);
  background: var(--cream-deep); border: 1px solid var(--gold-light);
}
.ritual__steps h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.ritual__steps p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Buy ---------- */
.buy__card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 26px;
  overflow: hidden; display: grid; grid-template-columns: 1fr; box-shadow: var(--shadow);
}
.buy__media {
  background:
    radial-gradient(circle at 50% 40%, var(--white), var(--cream-deep));
  display: flex; align-items: center; justify-content: center; padding: 2.5rem;
}
.buy__media img { width: min(70%, 300px); border-radius: 18px; box-shadow: 18px 24px 50px rgba(120,96,48,.22); }
.buy__info { padding: 2.4rem 2rem; }
.buy__info h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); margin: .3rem 0 .8rem; }
.buy__rating { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.stars { color: var(--gold); letter-spacing: .12em; }
.buy__desc { color: var(--ink-soft); margin-bottom: 1.2rem; }
.buy__bullets { list-style: none; margin-bottom: 1.6rem; display: grid; gap: .6rem; }
.buy__bullets li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); font-size: .95rem; }
.buy__bullets li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(184,146,62,.16);
}
.buy__price { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.4rem; }
.buy__amount { font-family: var(--ff-display); font-style: italic; font-weight: 600; font-size: 2.8rem; color: var(--ink); }
.buy__was { text-decoration: line-through; color: var(--ink-soft); font-size: 1.1rem; }
.buy__save { background: var(--gold); color: #fff; font-size: .72rem; letter-spacing: .1em; padding: .25rem .6rem; border-radius: 100px; }
.buy__reassurance { margin-top: 1rem; text-align: center; font-size: .78rem; color: var(--ink-soft); letter-spacing: .03em; }

/* ---------- Testimonials ---------- */
.avis__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.avis__card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r);
  padding: 2rem 1.8rem; box-shadow: 0 16px 36px rgba(120,96,48,.06);
}
.avis__card .stars { font-size: 1rem; }
.avis__card blockquote {
  font-family: var(--ff-display); font-style: italic; font-size: 1.28rem; line-height: 1.45;
  color: var(--ink); margin: 1rem 0 1.4rem;
}
.avis__card figcaption { display: flex; flex-direction: column; }
.avis__card figcaption strong { font-family: var(--ff-title); font-weight: 400; }
.avis__card figcaption span { font-size: .78rem; color: var(--ink-soft); letter-spacing: .04em; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__list details {
  border-bottom: 1px solid var(--line); background: transparent;
}
.faq__list summary {
  list-style: none; cursor: pointer; padding: 1.4rem .4rem;
  font-family: var(--ff-title); font-size: 1.12rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--gold-deep); transition: transform .3s;
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
details[open] .faq__icon::after { transform: scaleY(0); }
.faq__body { overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .35s ease; }
.faq__body p { color: var(--ink-soft); padding: 0 .4rem; }
details[open] .faq__body { max-height: 320px; padding-bottom: 1.3rem; }

/* ---------- Order ---------- */
.order { }
.order__inner {
  background: linear-gradient(160deg, var(--ivory), var(--cream-deep));
  border: 1px solid var(--line); border-radius: 26px; overflow: hidden;
  display: grid; grid-template-columns: 1fr; box-shadow: var(--shadow);
}
.order__intro { padding: 2.6rem 2rem; }
.order__intro h2 { font-size: clamp(1.9rem, 5vw, 2.7rem); margin-bottom: 1rem; }
.order__note { color: var(--ink-soft); margin-bottom: 1.6rem; }
.order__summary {
  display: flex; align-items: center; gap: 1rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 14px; padding: .8rem 1rem;
}
.order__summary img { width: 54px; height: 54px; object-fit: contain; }
.order__summary strong { display: block; font-family: var(--ff-title); font-weight: 400; font-size: 1rem; }
.order__summary span { font-size: .82rem; color: var(--ink-soft); }

.order__form { padding: 2.6rem 2rem; background: var(--white); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.field label { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .45rem; }
.field .opt { text-transform: none; letter-spacing: 0; color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: .98rem; font-weight: 300; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; transition: border-color .25s, box-shadow .25s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184,146,62,.14); background: #fff;
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; }
.order__legal { margin-top: 1rem; font-size: .74rem; color: var(--ink-soft); text-align: center; }

.order__success {
  margin-top: 1.6rem; text-align: center; background: var(--cream-deep);
  border: 1px solid var(--gold-light); border-radius: 16px; padding: 2rem 1.4rem;
  animation: pop .4s ease;
}
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.order__success-mark {
  width: 54px; height: 54px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
}
.order__success h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.order__success p { color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact h2 { font-size: clamp(2rem, 5.4vw, 3.1rem); }
.contact__lede { color: var(--ink-soft); margin: 1rem auto 2.4rem; max-width: 480px; }
.contact__cards { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 720px; margin: 0 auto 2rem; }
.contact__card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.8rem 1.4rem; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.contact__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(120,96,48,.14); border-color: var(--gold-light); }
.contact__card svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-deep); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .4rem; }
.contact__card--wa svg { fill: var(--gold-deep); stroke: none; }
.contact__k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.contact__v { font-family: var(--ff-title); font-size: 1.05rem; color: var(--ink); word-break: break-word; }
.socials { display: flex; justify-content: center; gap: 1rem; margin-top: 1.8rem; }
.socials__link {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ivory); border: 1px solid var(--line); color: var(--gold-deep);
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}
.socials__link:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(120,96,48,.16); border-color: var(--gold-light); }
.socials__link svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); }
.footer__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 3.2rem 1.2rem 1.6rem;
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start;
}
.footer__logo { width: 60px; background: var(--cream); border-radius: 12px; padding: 6px; margin-bottom: .8rem; }
.footer__name { font-family: var(--ff-title); font-size: 1.4rem; }
.footer__name em { font-family: var(--ff-display); color: var(--gold-light); }
.footer__tag { color: rgba(246,239,228,.7); font-size: .9rem; margin-top: .3rem; max-width: 280px; }
.footer__socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer__social {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(246,239,228,.22); color: rgba(246,239,228,.78);
  transition: color .25s, border-color .25s, transform .25s;
}
.footer__social:hover { color: var(--gold-light); border-color: var(--gold-light); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.footer__nav { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; }
.footer__nav a { font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(246,239,228,.78); transition: color .25s; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__copy { text-align: center; padding: 1.4rem 1.2rem; border-top: 1px solid rgba(246,239,228,.12); font-size: .76rem; color: rgba(246,239,228,.55); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #1faf54;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(31,175,84,.45); transition: transform .3s;
  animation: wapulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wapulse { 0%,100% { box-shadow: 0 12px 28px rgba(31,175,84,.45); } 50% { box-shadow: 0 12px 28px rgba(31,175,84,.45), 0 0 0 12px rgba(31,175,84,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE — tablet & desktop
   ========================================================= */
@media (min-width: 720px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .trust__list { grid-template-columns: repeat(4, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .bmedia--tall { grid-row: span 2; }
  .ritual__steps { grid-template-columns: repeat(3, 1fr); }
  .avis__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__cards { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1.4fr 1fr; }
}

@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; padding: 4.5rem 1.6rem 5.5rem; gap: 3rem; }
  .hero__visual { min-height: 540px; }
  .origin { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .buy__card { grid-template-columns: 1fr 1.1fr; }
  .order__inner { grid-template-columns: 1fr 1.1fr; }
  .benefits__grid { grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; }
  .bmedia--tall { grid-row: span 2; }
}

/* ---------- Mobile nav drawer ---------- */
@media (max-width: 880px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 1.4rem;
    background: var(--cream); padding: 5.5rem 2rem 2rem;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
    box-shadow: -30px 0 60px rgba(0,0,0,.12); z-index: 99;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; }
  .nav__cta { margin-top: .6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
