/* ==========================================================
   Conforeve — site vitrine B2B
   Règles couleur : Deep Teal pour boutons/liens, Ink pour le texte.
   Lagoon, Mint, Blush, Gold : formes et fonds uniquement.
   ========================================================== */
:root {
  --lagoon: #86BDB3;
  --deep: #2F6B61;
  --deep-hover: #24544C;
  --ink: #2D3A36;
  --mint: #C4DED8;
  --blush: #EBCBD2;
  --rose: #CF9DAC;
  --gold: #E6CD8A;
  --cream: #FAF6F2;
  --sand: #F2EDE7;
  --stone: #5F6D69;
  --white: #FFFFFF;
  --surface: #FFFFFF;       /* cartes, menus, champs au focus */
  --on-accent: #FFFFFF;     /* texte sur bouton Deep Teal */
  --band: #2D3A36;          /* bandeau, appel à l'action, pied de page */
  --on-band: #FAF6F2;
  --line: rgba(45,58,54,.1);
  --header-bg: rgba(250,246,242,.86);
  --glass: rgba(255,255,255,.92);
  --error: #B8325B;

  --font-title: "Cormorant Garamond", "Times New Roman", serif;
  --font-text: "Jost", "Segoe UI", system-ui, sans-serif;

  --radius: 22px;
  --shadow: 0 18px 50px -24px rgba(45, 58, 54, .35);
  --max: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
}

/* Écritures non latines : polices chargées à la demande (voir main.js) */
html[lang="ar"] { --font-title: "Amiri", serif; --font-text: "IBM Plex Sans Arabic", "Segoe UI", sans-serif; }
html[lang="hi"] { --font-title: "Tiro Devanagari Hindi", serif; --font-text: "Hind", "Jost", sans-serif; }
html[lang="zh"] { --font-title: "Noto Serif SC", serif; --font-text: "Noto Sans SC", "Jost", sans-serif; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--deep-hover); }
h1, h2, h3 { font-family: var(--font-title); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--ink); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { line-height: 1.4; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--deep); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-text); font-weight: 500; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--deep);
  margin-bottom: 1rem;
}
html[lang="ar"] .kicker, html[lang="zh"] .kicker, html[lang="hi"] .kicker { letter-spacing: 0; font-size: .95rem; }
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.lead { font-size: 1.15rem; color: var(--stone); max-width: 62ch; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95em 1.7em; border-radius: 999px; border: 2px solid var(--deep);
  font-family: var(--font-text); font-weight: 500; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}
.btn-primary { background: var(--deep); color: var(--on-accent); box-shadow: 0 10px 24px -12px rgba(47,107,97,.8); }
.btn-primary:hover { background: var(--deep-hover); border-color: var(--deep-hover); color: var(--on-accent); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--deep); }
.btn-ghost:hover { background: var(--deep); color: var(--on-accent); }
.btn svg { width: 18px; height: 18px; }
html[dir="rtl"] .btn svg.arrow { transform: scaleX(-1); }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -22px rgba(45,58,54,.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 84px; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 2rem); }
.nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .98rem; position: relative; padding: .3em 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--deep); transform: scaleX(0); transition: transform .3s; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a:hover { color: var(--deep); }
.nav .btn { padding: .7em 1.3em; color: var(--on-accent); }
.nav .btn::after { display: none; }
.header-tools { display: flex; align-items: center; gap: .6rem; }

.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .45em; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: .5em .9em;
  font: 500 .9rem var(--font-text); color: var(--ink); cursor: pointer;
}
.lang-btn:hover { border-color: var(--deep); }
.lang-btn svg { width: 17px; height: 17px; color: var(--deep); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0; min-width: 190px;
  background: var(--surface); border-radius: 16px; box-shadow: var(--shadow); padding: 6px;
  list-style: none; margin: 0; display: none; max-height: 70vh; overflow: auto;
}
.lang.open .lang-menu { display: block; }
.lang-menu button {
  width: 100%; display: flex; justify-content: space-between; gap: 1rem; background: none; border: 0;
  padding: .6em .85em; border-radius: 10px; font: 400 .95rem "Jost", system-ui, sans-serif; color: var(--ink); cursor: pointer; text-align: start;
}
.lang-menu button span:last-child { color: var(--stone); font-size: .8rem; text-transform: uppercase; }
.lang-menu button:hover, .lang-menu button[aria-selected="true"] { background: var(--sand); color: var(--deep); }

.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; color: var(--ink); }
.menu-toggle svg { width: 26px; height: 26px; margin: auto; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: .5rem var(--gutter) 1.5rem; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -30px rgba(45,58,54,.6);
    transform: translateY(-120%); transition: transform .35s ease; z-index: -1;
  }
  .nav.open { transform: none; }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1rem; }
  .brand img { height: 40px; }
  .header-inner { height: 72px; }
  .nav { inset: 72px 0 auto 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(2rem, 5vw, 4rem); }
.hero h1 em { font-style: italic; color: var(--deep); }
html[lang="ar"] .hero h1 em, html[lang="zh"] .hero h1 em, html[lang="hi"] .hero h1 em { font-style: normal; }
.hero .lead { margin: 1.4rem 0 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-slogan { margin-top: 2.6rem; max-width: 330px; opacity: .95; }
.hero-art { position: relative; aspect-ratio: 1; max-width: 520px; width: 100%; justify-self: center; }
.hero-art .blob { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-art .b1 { inset: 4% 8% 12% 2%; background: radial-gradient(circle at 35% 35%, var(--mint), rgba(196,222,216,0) 70%); }
.hero-art .b2 { width: 48%; height: 48%; right: -4%; bottom: 0; background: radial-gradient(circle, rgba(235,203,210,.85), rgba(235,203,210,0) 70%); }
.hero-art .b3 { width: 22%; height: 22%; left: 6%; top: 2%; background: radial-gradient(circle, rgba(230,205,138,.55), rgba(230,205,138,0) 70%); }
.hero-art .icon { position: absolute; inset: 9%; animation: spin 50s linear infinite; filter: drop-shadow(0 30px 40px rgba(47,107,97,.18)); }
.hero-deco { position: absolute; pointer-events: none; opacity: .5; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 340px; order: -1; }
}

/* ---------- Bandeau atouts ---------- */
.strip { background: var(--band); color: var(--on-band); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { padding: 1.8rem 1.4rem; display: flex; gap: 1rem; align-items: center; border-inline-start: 1px solid rgba(250,246,242,.1); }
.strip-item:first-child { border-inline-start: 0; }
.strip-item .dot { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(134,189,179,.16); }
.strip-item .dot svg { width: 22px; height: 22px; color: var(--mint); }
.strip-item strong { display: block; font-family: var(--font-title); font-size: 1.3rem; font-weight: 600; line-height: 1.2; }
.strip-item span { font-size: .88rem; color: rgba(250,246,242,.78); }
@media (max-width: 900px) { .strip-inner { grid-template-columns: 1fr 1fr; } .strip-item:nth-child(3) { border-inline-start: 0; } .strip-item { border-top: 1px solid rgba(250,246,242,.1); } }
@media (max-width: 520px) { .strip-inner { grid-template-columns: 1fr; } .strip-item { border-inline-start: 0; } }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .lead { margin-inline: auto; }
.bg-white { background: var(--surface); }
.bg-sand { background: var(--sand); }

/* À propos */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-visual { position: relative; aspect-ratio: 4/5; border-radius: 200px 200px var(--radius) var(--radius); background: linear-gradient(160deg, var(--mint) 0%, var(--lagoon) 100%); overflow: hidden; box-shadow: var(--shadow); }
.about-visual svg.petals { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-visual .badge {
  position: absolute; inset-inline-start: 1.4rem; bottom: 1.4rem; inset-inline-end: 1.4rem;
  background: var(--glass); border-radius: 18px; padding: 1.1rem 1.3rem; display: flex; gap: 1rem; align-items: center;
}
.about-visual .badge img { width: 52px; height: 52px; }
.about-visual .badge strong { font-family: var(--font-title); font-size: 1.25rem; display: block; line-height: 1.2; }
.about-visual .badge span { font-size: .85rem; color: var(--stone); }
.about-text p { color: var(--stone); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.value { padding: 1.2rem; border-radius: 18px; background: var(--cream); border: 1px solid var(--line); }
.value .ico { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; margin-bottom: .7rem; }
.value .ico svg { width: 20px; height: 20px; color: #2D3A36; }
.value h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.value p { font-size: .9rem; margin: 0; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-visual { max-width: 440px; aspect-ratio: 1; border-radius: var(--radius); } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }

/* Produits */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
.product {
  position: relative; border-radius: 28px; overflow: hidden; background: var(--surface);
  box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .4s;
}
.product:hover { transform: translateY(-6px); }
.product-visual { position: relative; height: 260px; display: grid; place-items: center; overflow: hidden; }
.product.fem .product-visual { background: linear-gradient(135deg, #F6EBEE 0%, var(--blush) 100%); }
.product.baby .product-visual { background: linear-gradient(135deg, #EDF4F2 0%, var(--mint) 100%); }
.product-visual svg.motif { width: 190px; height: 190px; }
.placeholder-logo {
  position: absolute; top: 1.1rem; inset-inline-end: 1.1rem; background: rgba(255,255,255,.85);
  border: 1.5px dashed var(--stone); border-radius: 999px; padding: .35em .95em; font-size: .78rem; font-weight: 500; color: var(--ink);
}
.product-body { padding: 1.8rem clamp(1.4rem, 3vw, 2.2rem) 2.2rem; }
.product .tag { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--deep); }
html[lang="ar"] .product .tag, html[lang="zh"] .product .tag, html[lang="hi"] .product .tag { letter-spacing: 0; font-size: .9rem; }
.product h3 { font-size: 2rem; margin: .3rem 0 .6rem; }
.product p { color: var(--stone); }
.checks { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .55rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; }
.checks li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: .2em; border-radius: 50%; background: var(--deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/12px no-repeat; }
@media (max-width: 820px) { .products { grid-template-columns: 1fr; } }

/* Qualité / processus */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); transition: box-shadow .3s, transform .3s; }
.step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step .num { font-family: "Cormorant Garamond", serif; font-size: 3.2rem; line-height: 1; font-weight: 600; color: var(--lagoon); opacity: .55; }
.step h3 { font-size: 1.35rem; margin: .8rem 0 .4rem; }
.step p { font-size: .95rem; color: var(--stone); margin: 0; }
.step .bar { position: absolute; top: 0; inset-inline-start: 1.6rem; width: 44px; height: 4px; border-radius: 0 0 4px 4px; }
@media (max-width: 1000px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* Partenaires */
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.chips { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.chip { display: inline-flex; align-items: center; gap: .55em; padding: .65em 1.1em; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: .95rem; font-weight: 500; transition: border-color .25s, transform .25s; }
.chip:hover { border-color: var(--deep); transform: translateY(-2px); }
.chip i { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.why { display: grid; gap: 1rem; }
.why-item { display: flex; gap: 1.1rem; padding: 1.4rem; background: var(--surface); border-radius: 20px; }
.why-item .ico { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--sand); }
.why-item .ico svg { width: 22px; height: 22px; color: var(--deep); }
.why-item h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.why-item p { margin: 0; color: var(--stone); font-size: .96rem; }
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr; } }

/* Appel à l'action */
.cta { padding: 0 0 clamp(4.5rem, 10vw, 8rem); }
.cta-box {
  position: relative; overflow: hidden; border-radius: 32px; background: var(--band); color: var(--on-band);
  padding: clamp(2.5rem, 6vw, 4.5rem); display: grid; grid-template-columns: 1.4fr auto; align-items: center; gap: 2rem;
}
.cta-box h2 { color: var(--on-band); margin-bottom: .4rem; }
.cta-box p { color: rgba(250,246,242,.82); margin: 0; max-width: 56ch; }
.cta-box .btn-primary { background: #FAF6F2; color: #2D3A36; border-color: #FAF6F2; box-shadow: none; }
.cta-box .btn-primary:hover { background: #FFFFFF; color: #2F6B61; }
.cta-box .ring { position: absolute; border-radius: 50%; pointer-events: none; }
@media (max-width: 760px) { .cta-box { grid-template-columns: 1fr; } }

/* ---------- Page contact ---------- */
.page-hero { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.card { background: var(--surface); border-radius: 28px; box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.8rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 500; font-size: .92rem; }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%; font: 400 1rem var(--font-text); color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: 14px; padding: .85em 1em; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--deep); background: var(--surface); box-shadow: 0 0 0 4px rgba(47,107,97,.14); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--error); }
.field .err { color: var(--error); font-size: .82rem; display: none; }
.field.invalid .err { display: block; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--stone); }
.consent input { width: 20px; height: 20px; margin-top: .15em; accent-color: var(--deep); flex: none; }
.hp { position: absolute; left: -9999px; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; }
.form-foot small { color: var(--stone); }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success .ok { width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 50%; background: var(--mint); display: grid; place-items: center; }
.form-success .ok svg { width: 34px; height: 34px; color: var(--deep); }
.sent .form-success { display: block; }
.sent form { display: none; }

.info { display: grid; gap: 1rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; background: var(--surface); border-radius: 20px; }
.info-item .ico { flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; }
.info-item .ico svg { width: 21px; height: 21px; color: #2D3A36; }
.info-item h3 { font-family: var(--font-text); font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin: 0 0 .25rem; }
html[lang="ar"] .info-item h3, html[lang="zh"] .info-item h3, html[lang="hi"] .info-item h3 { letter-spacing: 0; font-size: .9rem; }
.info-item p, .info-item a { margin: 0; font-size: 1.02rem; color: var(--ink); }
.info-item a { color: var(--deep); font-weight: 500; }
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }

.map-wrap { margin-top: clamp(2.5rem, 6vw, 4rem); }
.map { position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: var(--sand); aspect-ratio: 21/9; min-height: 340px; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.85); }
.map-card {
  position: absolute; inset-inline-start: 1.2rem; top: 1.2rem; max-width: 330px; background: var(--surface);
  border-radius: 18px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow); z-index: 2;
}
.map-card strong { font-family: var(--font-title); font-size: 1.3rem; display: block; }
.map-card p { font-size: .9rem; color: var(--stone); margin: .2rem 0 .8rem; }
.map-card a { font-weight: 500; font-size: .92rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .map { aspect-ratio: auto; height: 420px; }
  .map-card { inset-inline-end: 1.2rem; top: auto; bottom: 1.2rem; }
}

/* ---------- Pied de page ---------- */
.site-footer { background: var(--band); color: rgba(250,246,242,.8); padding: clamp(3.5rem, 7vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { width: 280px; max-width: 100%; margin-bottom: 1.2rem; }
.site-footer h4 { font-family: var(--font-text); font-weight: 500; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-band); margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: rgba(250,246,242,.85); text-decoration: none; }
.site-footer a:hover { color: #FFFFFF; text-decoration: underline; }
.site-footer p { font-size: .95rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(250,246,242,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: rgba(250,246,242,.65); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Apparition au défilement ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }

/* ---------- Curseur feuilles ---------- */
#leaves { position: fixed; inset: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9999; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-art .icon { animation-duration: 120s; }
}

/* ---------- Logos adoucis : contours moins nets, couleurs plus douces ---------- */
.brand img, .footer-logo, .about-visual .badge img {
  filter: blur(.35px) saturate(.8) drop-shadow(0 0 6px rgba(134,189,179,.25));
}
.hero-art .icon { filter: blur(.7px) saturate(.75) drop-shadow(0 30px 40px rgba(47,107,97,.16)); opacity: .95; }

/* ---------- Section produit : la serviette hygiénique ---------- */
.pad-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.pad-card {
  position: relative; border-radius: 28px; padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  background: linear-gradient(160deg, #F6EBEE 0%, #EFE4E2 55%, #E8EFEC 100%); box-shadow: var(--shadow);
}
.pad-svg { width: 100%; height: auto; }
.pad-text .tag { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--deep); display: block; }
html[lang="ar"] .pad-text .tag, html[lang="zh"] .pad-text .tag, html[lang="hi"] .pad-text .tag { letter-spacing: 0; font-size: .9rem; }
.pad-text h3 { font-size: 2.2rem; margin: .3rem 0 .6rem; }
.pad-text > p { color: var(--stone); }
.pad-text h4 { font-family: var(--font-title); font-weight: 600; font-size: 1.5rem; margin: 2rem 0 1rem; }
.layers { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.layers li { display: flex; gap: .9rem; align-items: flex-start; }
.layers .n { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.layers strong { display: block; font-weight: 500; }
.layers span:not(.n) { color: var(--stone); font-size: .93rem; }
@media (max-width: 900px) { .pad-grid { grid-template-columns: 1fr; } .pad-card { max-width: 520px; margin: 0 auto; width: 100%; } }

/* ==========================================================
   Mode sombre : suit le système par défaut, forçable avec le bouton
   (data-theme="dark" ou "light" sur <html>, mémorisé par main.js).
   ========================================================== */
:root { color-scheme: light; }
:root[data-theme="dark"] {
  color-scheme: dark;
  --cream: #131A18; --sand: #182120; --surface: #1D2825;
  --ink: #E6EDEA; --stone: #A6B4AF;
  --deep: #7FC4B6; --deep-hover: #9CD4C8; --on-accent: #0F1C19;
  --band: #0C1210; --on-band: #F3F0EC;
  --line: rgba(230,237,234,.12); --header-bg: rgba(19,26,24,.86); --glass: rgba(29,40,37,.92);
  --error: #F29AB2;
  --shadow: 0 18px 50px -24px rgba(0,0,0,.65);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --cream: #131A18; --sand: #182120; --surface: #1D2825;
    --ink: #E6EDEA; --stone: #A6B4AF;
    --deep: #7FC4B6; --deep-hover: #9CD4C8; --on-accent: #0F1C19;
    --band: #0C1210; --on-band: #F3F0EC;
    --line: rgba(230,237,234,.12); --header-bg: rgba(19,26,24,.86); --glass: rgba(29,40,37,.92);
    --error: #F29AB2;
    --shadow: 0 18px 50px -24px rgba(0,0,0,.65);
  }
}

/* Logo d'en-tête : version claire sur fond sombre */
.brand .logo-dark { display: none; }
:root[data-theme="dark"] .brand .logo-light { display: none; }
:root[data-theme="dark"] .brand .logo-dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand .logo-light { display: none; }
  :root:not([data-theme="light"]) .brand .logo-dark { display: block; }
}

/* Carte Google assombrie */
:root[data-theme="dark"] .map iframe { filter: invert(.9) hue-rotate(180deg) saturate(.7); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .map iframe { filter: invert(.9) hue-rotate(180deg) saturate(.7); }
}

/* Bouton de bascule */
.theme-btn {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line); color: var(--deep); cursor: pointer;
  transition: border-color .2s, transform .3s;
}
.theme-btn:hover { border-color: var(--deep); transform: rotate(-12deg); }
.theme-btn svg { width: 18px; height: 18px; }
.theme-btn .i-sun { display: none; }
:root[data-theme="dark"] .theme-btn .i-sun { display: block; }
:root[data-theme="dark"] .theme-btn .i-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-btn .i-sun { display: block; }
  :root:not([data-theme="light"]) .theme-btn .i-moon { display: none; }
}
body, .site-header, .card, .info-item, .value { transition: background-color .3s, color .3s; }

/* Halos et motifs plus discrets sur fond sombre */
:root[data-theme="dark"] .hero-art .blob, :root[data-theme="dark"] .hero-deco { opacity: .28; }
:root[data-theme="dark"] .about-visual { filter: brightness(.82) saturate(.9); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-art .blob, :root:not([data-theme="light"]) .hero-deco { opacity: .28; }
  :root:not([data-theme="light"]) .about-visual { filter: brightness(.82) saturate(.9); }
}

/* ---------- Bandeau des valeurs : Confort · Sécurité · Confiance ---------- */
.band { position: relative; overflow: hidden; background: var(--band); color: var(--on-band); padding: clamp(2.6rem, 6vw, 3.8rem) 0; text-align: center; }
.band-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(10px); }
.band-glow.g1 { width: 380px; height: 380px; left: -140px; top: -220px; background: radial-gradient(circle, rgba(134,189,179,.28), rgba(134,189,179,0) 70%); }
.band-glow.g2 { width: 320px; height: 320px; right: -110px; bottom: -220px; background: radial-gradient(circle, rgba(235,203,210,.22), rgba(235,203,210,0) 70%); }
.band-inner { position: relative; }
.band-kicker {
  display: inline-flex; align-items: center; gap: .8em; margin: 0 0 1.4rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(243,240,236,.72);
}
.band-kicker::before, .band-kicker::after { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .8; }
html[lang="ar"] .band-kicker, html[lang="zh"] .band-kicker, html[lang="hi"] .band-kicker { letter-spacing: 0; font-size: .95rem; }
.band-values { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 3.5vw, 2.6rem); }
.band-values li { display: inline-flex; align-items: center; gap: .75rem; font-family: var(--font-title); font-weight: 600; font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.1; color: var(--on-band); }
.band-ico { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(243,240,236,.14); }
.band-ico svg { width: 21px; height: 21px; color: var(--mint); }
.band-sep svg { width: 12px; height: 15px; fill: var(--gold); opacity: .75; transform: rotate(45deg); }
@media (max-width: 620px) {
  .band-values { flex-direction: column; gap: .9rem; }
  .band-sep { display: none !important; }
  .band-kicker::before, .band-kicker::after { width: 16px; }
}
.band-kicker { max-width: 100%; justify-content: center; text-wrap: balance; }
@media (max-width: 620px) {
  .band-kicker { display: block; letter-spacing: .14em; line-height: 1.6; }
  .band-kicker::before, .band-kicker::after { display: none; }
}
