/* =========================================================
   NOVAHIKA — Feuille de style principale
   Identité : « bien-être glaciaire »
   Palette : navy profond · bleu · bleu clair · menthe glacée · argent
   Vanilla CSS · aucune dépendance externe
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --navy-deep:   #0b1b3a;
  --navy:        #173466;
  --blue:        #2e6ec4;
  --blue-soft:   #4b8bde;
  --sky:         #78baf0;
  --mint:        #96e8d6;
  --mint-light:  #cef6ec;
  --silver:      #ced8e3;
  --silver-lt:   #e9eff5;
  --paper:       #f4f8fc;
  --white:       #f7fbfe;
  --ink:         #10233f;
  --ink-soft:    #40567a;

  --grad-cool:   linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue) 100%);
  --grad-mint:   linear-gradient(135deg, var(--mint) 0%, var(--sky) 100%);
  --grad-glass:  linear-gradient(160deg, rgba(255,255,255,.72), rgba(233,239,245,.32));

  --shadow-sm:   0 2px 10px rgba(16,35,63,.06);
  --shadow-md:   0 14px 40px -18px rgba(16,35,63,.34);
  --shadow-lg:   0 34px 80px -30px rgba(11,27,58,.48);
  --ring:        0 0 0 3px rgba(120,186,240,.5);

  --radius-s:    14px;
  --radius-m:    22px;
  --radius-l:    32px;
  --radius-xl:   44px;

  --maxw:        1200px;
  --gap:         clamp(1.4rem, 3vw, 2.6rem);

  --f-display:   "Marcellus", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-body:      "Manrope", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

/* ---------- Local font faces (self-hosted, aucune requête externe) ---------- */
/* Familles de secours système utilisées : aucun fichier externe requis.
   Les piles ci-dessus assurent un rendu élégant sans CDN ni Google Fonts. */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, .5vw + .9rem, 1.08rem);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .3px;
  color: var(--navy-deep);
  margin: 0 0 .5em;
}
p { margin: 0 0 1rem; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-mint);
  border-radius: 2px;
}

/* ---------- Boutons ---------- */
.btn {
  --btn-bg: var(--grad-cool);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .02em;
  color: var(--white);
  background: var(--btn-bg);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px -12px rgba(23,52,102,.6);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(206,246,236,.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -14px rgba(23,52,102,.66); }
.btn:hover::after { transform: translateX(120%); }
.btn:focus-visible { outline: none; box-shadow: var(--ring), 0 14px 30px -12px rgba(23,52,102,.6); }

.btn--ghost {
  color: var(--navy-deep);
  background: rgba(255,255,255,.55);
  border: 1.5px solid rgba(120,186,240,.4);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.8); }
.btn--wide { width: 100%; padding-block: 1.15rem; font-size: 1.05rem; }

/* ---------- En-tête / Navigation ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244,248,252,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(206,216,227,.55);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--navy-deep);
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: var(--grad-cool);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 1.5px rgba(206,246,236,.35);
}
.brand-mark::before {
  content: "";
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--grad-mint);
  box-shadow: 0 0 14px rgba(150,232,214,.9);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}
.nav-links a {
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink-soft);
  position: relative;
  padding-block: .3rem;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad-mint);
  transition: width .25s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--navy-deep); }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }
.nav-cta { margin-left: .4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
}
.nav-toggle span {
  height: 2.5px; width: 100%;
  background: var(--navy-deep);
  border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Reveal (animation au défilement) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   1 · HÉRO
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding-block: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(11,27,58,.86) 0%, rgba(23,52,102,.66) 46%, rgba(46,110,196,.28) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy .eyebrow { color: var(--mint); }
.hero-copy .eyebrow::before { background: var(--mint); }
.hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  margin-bottom: 1.1rem;
}
.hero-title .accent {
  background: var(--grad-mint);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  color: rgba(233,239,245,.9);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.hero-meta .stat { min-width: 90px; }
.hero-meta .stat b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.7rem;
  color: var(--mint-light);
}
.hero-meta .stat span {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(206,216,227,.85);
}

/* Cadre produit flottant — élément signature */
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.hero-glass {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.5);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-glass::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,232,214,.75), transparent 65%);
  filter: blur(10px);
  top: -60px; right: -60px;
  z-index: 0;
}
.hero-glass::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,186,240,.6), transparent 66%);
  filter: blur(8px);
  bottom: -50px; left: -50px;
  z-index: 0;
}
.hero-product {
  position: relative;
  z-index: 1;
  width: auto;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 26px 40px rgba(11,27,58,.5));
  animation: floaty 6s ease-in-out infinite;
}
.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: 18px; left: 18px;
  background: rgba(11,27,58,.72);
  color: var(--mint-light);
  border: 1px solid rgba(150,232,214,.35);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  backdrop-filter: blur(6px);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* =========================================================
   Sections génériques
   ========================================================= */
.section { padding-block: clamp(3.4rem, 7vw, 6rem); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-lead { font-size: 1.08rem; }

.tint { background: linear-gradient(180deg, var(--paper), var(--silver-lt)); }
.tint-deep {
  background: var(--grad-cool);
  color: var(--silver-lt);
}
.tint-deep .section-title,
.tint-deep h3 { color: var(--white); }
.tint-deep p { color: rgba(233,239,245,.86); }
.tint-deep .eyebrow { color: var(--mint); }
.tint-deep .eyebrow::before { background: var(--mint); }

/* =========================================================
   2 · PHILOSOPHIE
   ========================================================= */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.pillar {
  background: var(--white);
  border: 1px solid rgba(206,216,227,.7);
  border-radius: var(--radius-l);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(120,186,240,.6); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--silver-lt), var(--mint-light));
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--navy);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.32rem; }

/* =========================================================
   3 · PRODUIT
   ========================================================= */
.product-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.product-media {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--grad-cool);
  padding: 2.5rem;
  display: grid;
  place-items: center;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.product-media::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,232,214,.6), transparent 62%);
  filter: blur(6px);
  top: -40px; left: 50%;
  transform: translateX(-50%);
}
.product-media img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(11,27,58,.55));
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(206,216,227,.7);
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.product-card h3 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.2rem 0 1.4rem;
}
.tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  background: var(--mint-light);
  padding: .4rem .85rem;
  border-radius: 999px;
}
.product-feat {
  display: grid;
  gap: .7rem;
  margin: 1.4rem 0;
}
.product-feat li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: .98rem;
}
.product-feat svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--blue); margin-top: 3px; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  margin: 1.4rem 0 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px dashed rgba(120,186,240,.5);
}
.price {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  color: var(--navy-deep);
  line-height: 1;
}
.price-note { font-size: .9rem; color: var(--ink-soft); }

/* =========================================================
   4 · BIEN-ÊTRE (lifestyle)
   ========================================================= */
.lifestyle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.lifestyle-media { position: relative; min-height: 340px; }
.lifestyle-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.lifestyle-copy { padding: clamp(2rem, 4vw, 3.4rem); }
.lifestyle-list { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
.lifestyle-list li {
  display: flex; gap: .9rem; align-items: flex-start;
}
.lifestyle-list .num {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 11px;
  background: var(--grad-mint);
  color: var(--navy-deep);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 500;
}
.lifestyle-list b { color: var(--navy-deep); display: block; }

/* =========================================================
   5 · EXPÉRIENCE CLIENT
   ========================================================= */
.experience {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.experience-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  position: relative;
}
.experience-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}
.rating .stars { color: #f2b950; letter-spacing: 2px; }
.quote-grid { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.quote {
  background: var(--white);
  border: 1px solid rgba(206,216,227,.7);
  border-left: 4px solid var(--mint);
  border-radius: var(--radius-m);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.quote p { margin-bottom: .7rem; font-style: italic; color: var(--ink); }
.quote .who { font-size: .86rem; font-weight: 700; color: var(--blue); letter-spacing: .02em; }

/* =========================================================
   6 · INGRÉDIENTS
   ========================================================= */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.ingredient {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(206,246,236,.18);
  border-radius: var(--radius-l);
  padding: 1.8rem 1.5rem;
  backdrop-filter: blur(4px);
  transition: transform .3s ease, background .3s ease;
}
.ingredient:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.ingredient .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-mint);
  margin-bottom: 1rem;
  box-shadow: 0 0 22px rgba(150,232,214,.5);
}
.ingredient h3 { font-size: 1.2rem; }
.ingredient p { color: rgba(233,239,245,.8); font-size: .94rem; margin: 0; }

/* =========================================================
   7 · COMMANDE
   ========================================================= */
.order {
  position: relative;
  isolation: isolate;
}
.order-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.order-aside {
  background: var(--grad-cool);
  color: var(--silver-lt);
  padding: clamp(2rem, 4vw, 3.4rem);
  position: relative;
  overflow: hidden;
}
.order-aside::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,232,214,.4), transparent 62%);
  top: -80px; right: -80px;
}
.order-aside h2 { color: var(--white); }
.order-aside p { color: rgba(233,239,245,.85); }
.order-aside .price-block {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin: 1.6rem 0;
}
.order-aside .price-block b {
  font-family: var(--f-display);
  font-size: 2.8rem;
  color: var(--mint-light);
}
.assurance { display: grid; gap: .8rem; margin-top: 1.6rem; }
.assurance li { display: flex; gap: .7rem; align-items: center; font-size: .94rem; }
.assurance svg { width: 20px; height: 20px; color: var(--mint); flex: 0 0 auto; }

.order-form {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.4rem);
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy-deep);
  margin-bottom: .5rem;
}
.field input {
  width: 100%;
  padding: .95rem 1.1rem;
  font-size: 1rem;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(206,216,227,.9);
  border-radius: var(--radius-s);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input::placeholder { color: #9aa9bf; }
.field input:focus {
  outline: none;
  border-color: var(--blue-soft);
  background: var(--white);
  box-shadow: var(--ring);
}
.field input:invalid:not(:placeholder-shown) { border-color: #e08a8a; }
.field .error {
  display: none;
  color: #c94a4a;
  font-size: .84rem;
  margin-top: .45rem;
  font-weight: 600;
}
.field.has-error input { border-color: #e08a8a; }
.field.has-error .error { display: block; }
.form-consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--ink-soft);
  margin: 1.2rem 0 1.6rem;
}
.form-consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--blue); flex: 0 0 auto; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }

/* =========================================================
   Bandeau conformité
   ========================================================= */
.compliance {
  background: var(--navy-deep);
  color: rgba(206,216,227,.82);
  font-size: .86rem;
  padding-block: 1.6rem;
}
.compliance .container { display: flex; gap: 1rem; align-items: flex-start; }
.compliance svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--mint); margin-top: 2px; }
.compliance strong { color: var(--mint-light); }

/* =========================================================
   8 · PIED DE PAGE
   ========================================================= */
.site-foot {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(206,216,227,.8);
  padding-block: clamp(2.6rem, 5vw, 4rem) 1.6rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--gap);
  margin-bottom: 2.4rem;
}
.foot-brand .brand { color: var(--white); margin-bottom: 1rem; }
.foot-brand p { color: rgba(206,216,227,.72); max-width: 34ch; font-size: .92rem; }
.foot-col h4 {
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.foot-col ul { display: grid; gap: .65rem; }
.foot-col a { color: rgba(206,216,227,.78); font-size: .94rem; transition: color .2s ease; }
.foot-col a:hover { color: var(--mint-light); }
.foot-contact li { font-size: .92rem; margin-bottom: .5rem; color: rgba(206,216,227,.78); }
.foot-contact a:hover { color: var(--mint-light); }
.foot-bottom {
  border-top: 1px solid rgba(206,216,227,.16);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(206,216,227,.6);
}

/* =========================================================
   Bannière cookies
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translate(-50%, 160%);
  width: min(100% - 2rem, 720px);
  z-index: 80;
  background: rgba(247,251,254,.96);
  border: 1px solid rgba(206,216,227,.8);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(12px);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.is-shown { transform: translate(-50%, 0); }
.cookie-banner h4 { font-size: 1.1rem; margin-bottom: .4rem; }
.cookie-banner p { font-size: .88rem; margin-bottom: 1rem; }
.cookie-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: .7rem 1.3rem; font-size: .88rem; }
.cookie-actions .btn--link {
  background: none;
  box-shadow: none;
  color: var(--blue);
  padding: .7rem .6rem;
  text-decoration: underline;
}
.cookie-actions .btn--link::after { display: none; }
.cookie-prefs {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(206,216,227,.7);
  display: none;
  gap: .8rem;
  flex-direction: column;
}
.cookie-prefs.is-open { display: flex; }
.pref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .9rem;
}
.pref-row span b { display: block; color: var(--navy-deep); }
.pref-row small { color: var(--ink-soft); }
.switch { position: relative; width: 46px; height: 26px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--silver);
  border-radius: 999px;
  transition: background .25s ease;
  cursor: pointer;
}
.switch .track::before {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .25s ease;
  box-shadow: var(--shadow-sm);
}
.switch input:checked + .track { background: var(--blue); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--mint); cursor: not-allowed; }

/* =========================================================
   Pages légales & succès
   ========================================================= */
.page-hero {
  background: var(--grad-cool);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,232,214,.35), transparent 64%);
  top: -120px; right: -60px;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(233,239,245,.85); max-width: 60ch; }
.breadcrumb { font-size: .84rem; color: var(--mint-light); margin-bottom: 1rem; letter-spacing: .04em; }
.breadcrumb a { color: rgba(206,246,236,.8); }
.breadcrumb a:hover { text-decoration: underline; }

.legal { padding-block: clamp(2.6rem, 5vw, 4.5rem); }
.legal-wrap {
  max-width: 780px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid rgba(206,216,227,.7);
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-sm);
}
.legal-wrap h2 {
  font-size: 1.5rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(206,216,227,.6);
}
.legal-wrap h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-wrap h3 { font-size: 1.15rem; margin-top: 1.4rem; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); }
.legal-wrap ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; display: grid; gap: .5rem; }
.legal-wrap a { color: var(--blue); text-decoration: underline; }
.legal-meta { font-size: .86rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.legal-toc {
  background: var(--silver-lt);
  border-radius: var(--radius-m);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
}
.legal-toc b { color: var(--navy-deep); display: block; margin-bottom: .6rem; font-size: .92rem; }
.legal-toc ul { list-style: none; padding: 0; display: grid; gap: .4rem; }
.legal-toc a { color: var(--blue); font-size: .92rem; }

/* Page succès */
.success {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.success-card {
  max-width: 560px;
  background: var(--white);
  border: 1px solid rgba(206,216,227,.7);
  border-radius: var(--radius-xl);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  box-shadow: var(--shadow-md);
}
.success-badge {
  width: 84px; height: 84px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--grad-mint);
  display: grid;
  place-items: center;
  box-shadow: 0 0 40px rgba(150,232,214,.6);
  animation: pop .6s cubic-bezier(.2,1.3,.4,1) both;
}
.success-badge svg { width: 40px; height: 40px; color: var(--navy-deep); }
@keyframes pop {
  0% { transform: scale(.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-card h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.success-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }
.success-steps {
  display: grid;
  gap: .8rem;
  margin: 1.8rem 0;
  text-align: left;
}
.success-steps li {
  display: flex; gap: .8rem; align-items: center;
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: .9rem 1.1rem;
  font-size: .94rem;
  color: var(--ink-soft);
}
.success-steps .n {
  width: 30px; height: 30px; flex: 0 0 auto;
  border-radius: 9px;
  background: var(--grad-cool);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-meta { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-stage { order: -1; }
  .product-layout,
  .experience { grid-template-columns: 1fr; }
  .lifestyle,
  .order-shell { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .ingredient-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 62px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(244,248,252,.98);
    backdrop-filter: blur(16px);
    padding: .5rem 1.2rem 1.4rem;
    border-bottom: 1px solid rgba(206,216,227,.6);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    z-index: 55;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { padding: .95rem .4rem; border-bottom: 1px solid rgba(206,216,227,.5); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: .8rem 0 0; text-align: center; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .philosophy-grid,
  .ingredient-grid,
  .foot-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.4rem; }
  .foot-bottom { flex-direction: column; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
}

/* ---------- Accessibilité : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Focus visible global ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 2px;
}
