/* ==========================================================================
   Bio Gold — Dr M'hamdi Wijden
   Feuille de style principale
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — repris du logo (dégradé vert → or) */
  --ink:        #0A0F0B;
  --ink-2:      #111A13;
  --green-900:  #0E3A26;
  --green-800:  #145134;
  --green-700:  #1A7A4B;
  --green-500:  #2F9B62;
  --green-100:  #E4F0E9;

  --gold-800:   #7A5C14;
  --gold-700:   #856416;   /* >= 4.6:1 sur crème et sur sable — lisible en petit corps */
  --gold-600:   #B4892C;
  --gold-500:   #C9A227;
  --gold-300:   #E3C874;
  --gold-100:   #F6EDD5;

  --cream:      #FBF8EF;   /* fond unique, blanc cassé chaud */
  --cream-2:    #F4EFE2;   /* nuance à peine plus chaude, usage rare */
  --paper:      #FFFFFF;

  --text:       #1A1C16;   /* presque noir, légèrement olive */
  --muted:      #59604F;   /* texte secondaire */
  --muted-soft: #6A7160;   /* >= 4.5:1 sur crème */
  --line:       rgba(26, 28, 22, .14);
  --hair:       rgba(26, 28, 22, .10);   /* filets de séparation */
  --line-soft:  rgba(26, 28, 22, .06);

  /* Sur fond sombre */
  --on-dark:        #F4F1E6;
  --on-dark-muted:  #B9C4BB;
  --on-dark-soft:   #9AA79E;   /* 7.7:1 sur --ink — mentions légales, crédits */
  --line-dark:      rgba(244, 241, 230, .16);

  /* Typo */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espacement */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  --container: 1180px;
  --radius:    0px;    /* coins nets, style éditorial */
  --radius-lg: 0px;
  --header-h:  77px;   /* 76px de hauteur + 1px de bordure */

  /* Ombres discrètes — le design repose sur les filets, pas sur l'ombre */
  --shadow-sm: 0 1px 2px rgba(26, 28, 22, .05);
  --shadow-md: 0 1px 2px rgba(26, 28, 22, .05), 0 10px 24px rgba(26, 28, 22, .06);
  --shadow-lg: 0 2px 4px rgba(26, 28, 22, .05), 0 18px 40px rgba(26, 28, 22, .08);

  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Échelle z-index */
  --z-base: 1; --z-sticky: 10; --z-header: 20; --z-drawer: 30; --z-modal: 50;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  position: relative;        /* bloc conteneur du repli mouvement réduit */
  font-family: var(--font-body);
  font-size: 1.0625rem;      /* 17px */
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 var(--sp-4);
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 var(--sp-4); max-width: 68ch; }

a { color: var(--green-800); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-700); }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15rem; }
li { margin-bottom: var(--sp-2); }

button { font: inherit; cursor: pointer; }

::selection { background: var(--gold-300); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: var(--sp-4); top: -100px;
  z-index: var(--z-modal);
  background: var(--ink); color: var(--on-dark);
  padding: var(--sp-3) var(--sp-5); border-radius: var(--radius);
  transition: top .18s var(--ease);
}
.skip-link:focus { top: var(--sp-4); color: var(--on-dark); }
.skip-link:hover { color: var(--on-dark); }

/* --------------------------------------------------------------------------
   3. Utilitaires de mise en page
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: 820px; }

/* Les sections sont transparentes : le fond fixe (photo + branche, voilé de
   crème) reste visible derrière le contenu, qui défile par-dessus. */
.section { padding-block: clamp(3.5rem, 8vw, 7rem); background: transparent; position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.section--forest,
.section--dark,
.section--paper,
.section--sand   { background: transparent; color: var(--text); }

/* Filet discret entre deux sections consécutives */
main > .section + .section { border-top: 1px solid var(--hair); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.stack > * + * { margin-top: var(--sp-4); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* En-tête de section */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: .74rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold-600); flex: none;
}

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   4. Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-3);
  min-height: 48px;
  padding: var(--sp-3) var(--sp-6);
  font-size: .92rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }

/* Deux styles seulement : plein (vert) et contour (encre). */
.btn--primary,
.btn--gold { background: var(--green-800); color: var(--cream); border-color: var(--green-800); }
.btn--primary:hover,
.btn--gold:hover { background: var(--green-900); color: var(--cream); border-color: var(--green-900); }

.btn--ghost,
.btn--ghost-light { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover,
.btn--ghost-light:hover { background: var(--text); color: var(--cream); border-color: var(--text); }

.btn--sm { min-height: 40px; padding: var(--sp-2) var(--sp-4); font-size: .78rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .88rem; font-weight: 500; letter-spacing: .05em;
  text-transform: uppercase; text-decoration: none;
  color: var(--green-800);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .22s var(--ease); }
.link-arrow:hover { color: var(--gold-700); border-color: var(--gold-600); }
.link-arrow:hover svg { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) {
  .link-arrow:hover svg { transform: none; }
}

/* --------------------------------------------------------------------------
   5. En-tête / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(251, 248, 239, .9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.site-header__bar {
  display: flex; align-items: center; gap: var(--sp-5);
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: var(--sp-3); margin-right: auto; text-decoration: none; }
.brand img { width: 128px; height: auto; }
.brand__sub {
  display: none;
  font-family: var(--font-body);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  padding-left: var(--sp-3);
  border-left: 1px solid var(--line);
}
@media (min-width: 992px) { .brand__sub { display: block; } }

.nav { display: none; }
@media (min-width: 992px) { .nav { display: flex; align-items: center; gap: var(--sp-5); } }
@media (min-width: 1200px) { .nav { gap: var(--sp-6); } }

.nav a {
  position: relative;
  font-size: .84rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding-block: var(--sp-2);
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--green-900); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--gold-700); }

.header-cta { display: none; }
@media (min-width: 992px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin-left: auto;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--green-900);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.nav-toggle:hover { border-color: var(--green-700); background: rgba(20,81,52,.06); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }
@media (min-width: 992px) { .nav-toggle { display: none; } }

/* Menu mobile */
.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding-block: var(--sp-3) var(--sp-5);
}
.mobile-nav.is-open { display: block; }
@media (min-width: 992px) { .mobile-nav { display: none !important; } }

.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li { margin: 0; }
/* :not(.btn) pour ne pas écraser la couleur du bouton CTA du menu */
.mobile-nav a:not(.btn) {
  display: block;
  padding: var(--sp-3) 0;
  font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:not(.btn):hover, .mobile-nav a:not(.btn)[aria-current="page"] { color: var(--gold-700); }
.mobile-nav .btn { margin-top: var(--sp-5); }

/* Bandeau d'annonce — crème, filet discret */
.topbar {
  background: var(--cream);
  color: var(--muted);
  font-size: .78rem; letter-spacing: .08em;
  border-bottom: 1px solid var(--hair);
}
.topbar__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: var(--sp-2) var(--sp-6);
  min-height: 40px; padding-block: var(--sp-2);
  text-align: center;
}
.topbar a {
  display: inline-flex; align-items: center;
  min-height: 40px; padding-inline: 2px;
  color: var(--green-800); text-decoration: none;
}
.topbar a:hover { color: var(--gold-800); text-decoration: underline; }
.topbar span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.topbar svg { width: 14px; height: 14px; flex: none; color: var(--green-700); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
/* ---- Fond fixe : l'image et la branche restent immobiles, le contenu
   défile par-dessus. Empilement interne : photo → voile crème → branche. ---- */
.scroll-bg {
  position: fixed; inset: 0; z-index: -1;
  background: var(--cream);              /* repli si l'image ne charge pas */
  overflow: hidden;
}
.scroll-bg__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 66% 38%;
}
/* Voile crème : dense à gauche (lisibilité du texte et de la branche),
   dégagé à droite pour laisser respirer les plantes. */
.scroll-bg__veil {
  position: absolute; inset: 0;
  background: linear-gradient(94deg,
    rgba(251,248,239,.95) 0%, rgba(251,248,239,.9) 40%,
    rgba(251,248,239,.82) 70%, rgba(251,248,239,.76) 100%);
}
/* Fleurs (camomille) — décor fixe en bas à gauche.
   Sur mobile : plus petit et un peu plus discret pour ne pas gêner le texte. */
.scroll-bg__branch {
  display: block; position: absolute; left: -1.25rem; bottom: -1rem;
  width: min(46vw, 210px); height: auto; opacity: .6; pointer-events: none;
}
@media (min-width: 1000px) {
  .scroll-bg__branch {
    left: -1.75rem; bottom: -1.5rem; width: min(26vw, 360px); opacity: .82;
  }
}
/* Repli mouvement réduit : le fond redevient un simple en-tête qui défile
   normalement avec la page, sans effet de fixation. */
@media (prefers-reduced-motion: reduce) {
  .scroll-bg { position: absolute; inset: 0 0 auto 0; height: 100svh; }
}

/* Le hero est transparent : il laisse voir l'image de fond fixe (.scroll-bg).
   Le contenu défile par-dessus, l'image reste immobile. */
.hero {
  position: relative;
  display: flex; flex-direction: column;
  min-height: min(90vh, 800px);
  background: transparent;
}
.hero > .container {
  flex: 1 1 auto;
  display: flex; align-items: center;
  padding-block: clamp(3.5rem, 10vw, 7rem);
}
.hero__inner { max-width: 660px; }
.hero h1 { color: var(--text); margin-bottom: var(--sp-5); }
.hero h1 em {
  font-style: italic;
  color: var(--gold-700);
}
.hero__lede {
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 400; color: var(--muted);
  max-width: 46ch; margin-bottom: var(--sp-6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* Bandeau de valeurs en pied de hero — crème sobre, séparé par un filet */
.hero-features {
  position: relative; z-index: 1;
  margin-top: auto;
  background: var(--cream);
  border-top: 1px solid var(--hair);
}
.hero-features__grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: 1fr;
  padding-block: var(--sp-5);
}
@media (min-width: 620px) { .hero-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .hero-features__grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .hero-feature + .hero-feature { border-left: 1px solid var(--hair); padding-left: var(--sp-6); }
}
.hero-feature { display: flex; align-items: center; gap: var(--sp-3); }
.hero-feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex: none;
  color: var(--green-800);
}
.hero-feature__icon svg { width: 24px; height: 24px; }
.hero-feature__title {
  font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  letter-spacing: .02em; color: var(--text); margin: 0 0 1px;
}
.hero-feature p {
  font-size: .82rem; color: var(--muted); margin: 0; max-width: none;
}

/* Bandeau intérieur (pages secondaires) — transparent : révèle le fond fixe */
.page-hero {
  position: relative;
  background: transparent;
  color: var(--text);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  border-bottom: 1px solid var(--hair);
}
.page-hero__media { display: none; }
.page-hero h1 { color: var(--text); max-width: 16ch; }
.page-hero p { color: var(--muted); max-width: 58ch; margin-bottom: 0; }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  list-style: none; margin: 0 0 var(--sp-5); padding: 0;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb li { margin: 0; }
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before { content: '/'; margin-right: var(--sp-2); opacity: .5; }
.breadcrumb a {
  display: inline-flex; align-items: center; min-height: 40px;
  color: var(--muted); text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold-800); }

/* --------------------------------------------------------------------------
   7. Grilles
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.split {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--media-last .split__media { order: -1; }
@media (min-width: 900px) { .split--media-last .split__media { order: 0; } }

.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   8. Cartes « univers »
   -------------------------------------------------------------------------- */
.universe {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 420px;
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  overflow: hidden; isolation: isolate;
  color: var(--on-dark);
  text-decoration: none;
  transition: box-shadow .3s var(--ease);
}
.universe img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.universe::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,15,11,.25) 0%, rgba(10,15,11,.55) 45%, rgba(10,15,11,.93) 100%);
}
.universe:hover { box-shadow: var(--shadow-lg); color: var(--on-dark); }
.universe:hover img { transform: scale(1.04); }
.universe__body { margin-top: auto; }
.universe h3 { color: #fff; margin-bottom: var(--sp-2); }
.universe p { color: var(--on-dark-muted); margin-bottom: var(--sp-4); font-size: .97rem; }
.universe .link-arrow { color: var(--gold-300); border-color: rgba(227,200,116,.4); }

@media (prefers-reduced-motion: reduce) {
  .universe img { transition: none; }
  .universe:hover img { transform: none; }
}

/* --------------------------------------------------------------------------
   9. Cartes de service
   -------------------------------------------------------------------------- */
.service-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
a.service-card { text-decoration: none; color: inherit; }
.service-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-2); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.5rem; margin-bottom: var(--sp-2); }
.service-card p { font-size: .95rem; color: var(--muted); margin-bottom: var(--sp-4); }
.service-card .link-arrow { margin-top: auto; align-self: flex-start; }

.service-card__index {
  font-family: var(--font-display);
  font-size: .95rem; letter-spacing: .18em;
  color: var(--gold-700);
  margin-bottom: var(--sp-3);
}

/* Article de service détaillé */
.service-detail {
  display: grid; gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) { .service-detail { grid-template-columns: 0.9fr 1.1fr; } }
.service-detail:first-of-type { border-top: 0; padding-top: 0; }
.service-detail__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.service-detail h3 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.service-detail ul { list-style: none; padding: 0; }
.service-detail ul li {
  position: relative; padding-left: var(--sp-5);
  color: var(--muted); font-size: .97rem;
}
.service-detail ul li::before {
  content: ''; position: absolute; left: 0; top: .7em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500);
}
.service-detail--media-last .service-detail__media { order: -1; }
@media (min-width: 900px) { .service-detail--media-last .service-detail__media { order: 1; } }

/* Liste à puces réutilisable (mêmes points dorés que .service-detail ul) */
.bullet-list { list-style: none; padding: 0; margin: 0; }
.bullet-list li {
  position: relative; padding-left: var(--sp-5);
  color: var(--muted); font-size: .95rem;
  margin-bottom: var(--sp-2);
}
.bullet-list li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500);
}

/* Fiche de service compacte (texte seul, sans média) — page « Nos services » */
.service-text { padding-block: var(--sp-6); border-top: 1px solid var(--line); }
.service-text:first-child { border-top: 0; padding-top: 0; }
.service-text__index {
  font-family: var(--font-display); font-size: .95rem; letter-spacing: .18em;
  color: var(--gold-700); margin-bottom: var(--sp-2);
}
.service-text h3 { font-size: 1.35rem; margin-bottom: var(--sp-2); }
.service-text > p:not([class]) { font-size: .96rem; color: var(--muted); }
.service-text__label {
  font-size: .8rem; font-weight: 500; letter-spacing: .06em;
  color: var(--text); margin: var(--sp-4) 0 var(--sp-2);
}
.service-text .bullet-list { column-gap: var(--sp-5); }
@media (min-width: 640px) { .service-text .bullet-list { columns: 2; } }

/* Ligne « philosophie » mise en avant */
.philosophy-line {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold-700); text-align: center;
  letter-spacing: .02em;
}

/* Trio de photos illustrant un même passage de texte */
.image-trio { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
.image-trio img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: block;
}
@media (min-width: 640px) and (max-width: 899px) {
  .image-trio { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   10. Piliers / valeurs
   -------------------------------------------------------------------------- */
.pillar { padding-right: var(--sp-4); }
.pillar__icon {
  display: inline-flex; align-items: center; justify-content: flex-start;
  width: 30px; height: 30px; margin-bottom: var(--sp-3);
  color: var(--green-800);
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: var(--sp-2); }
.pillar p { font-size: .93rem; margin-bottom: 0; }

/* Étapes numérotées */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 4rem;
  padding-bottom: var(--sp-6);
  margin: 0;
}
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -.15em;
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--gold-600);
}
.steps li::after {
  content: ''; position: absolute; left: 1.05rem; top: 2.4em; bottom: .4rem;
  width: 1px; background: var(--line);
}
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: var(--sp-2); }
.steps p { font-size: .95rem; color: var(--muted); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   11. Boutique
   -------------------------------------------------------------------------- */
.shop-toolbar {
  position: sticky; top: var(--header-h); z-index: var(--z-sticky);
  background: rgba(250, 246, 236, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-block: var(--sp-4);
}
.shop-toolbar__row {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
}

.filters { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: 0; padding: 0; list-style: none; }
.filters li { margin: 0; }

/* Mobile : la liste de catégories (9 boutons) ne doit pas empiler tout l'écran
   au-dessus des produits — elle défile horizontalement sur une seule ligne. */
@media (max-width: 767px) {
  .shop-toolbar__row { flex-wrap: wrap; }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filters li { flex: none; }
  .chip { white-space: nowrap; }
  .search-field { flex-basis: 100%; max-width: none; margin-left: 0; }
}
.chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  min-height: 40px;
  padding: var(--sp-2) var(--sp-4);
  font-size: .82rem; font-weight: 400; letter-spacing: .04em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip[aria-pressed="true"] {
  background: var(--text); border-color: var(--text); color: var(--cream);
}
.chip__count { opacity: .65; font-size: .76rem; }

.search-field { position: relative; margin-left: auto; min-width: 240px; flex: 1 1 240px; max-width: 340px; }
.search-field svg {
  position: absolute; left: var(--sp-3); top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted-soft); pointer-events: none;
}
.search-field input {
  width: 100%; min-height: 44px;
  padding: var(--sp-2) var(--sp-4) var(--sp-2) 2.75rem;
  font: inherit; font-size: .92rem; color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 0;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.search-field input::placeholder { color: var(--muted-soft); }
.search-field input:focus { outline: none; border-color: var(--text); box-shadow: none; }

.results-count { font-size: .86rem; color: var(--muted); margin: 0; }

/* Grille produits */
.product-grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.product-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover { border-color: var(--line); box-shadow: var(--shadow-md); }

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream-2);
  overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }

.product-card__badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  padding: 3px var(--sp-3);
  font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); background: var(--text);
  border-radius: 0;
}

.product-card__badge--out {
  left: auto; right: var(--sp-3);
  background: #7a2a2a; color: #fff;
}

.product-card__body { padding: var(--sp-4); display: flex; flex-direction: column; flex: 1; }
.product-card__cat {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: var(--sp-2);
}
.product-card h3 {
  font-size: 1.22rem; line-height: 1.25; margin-bottom: var(--sp-1);
}
.product-card__ar {
  font-size: .95rem; color: var(--muted-soft);
  margin-bottom: var(--sp-3); direction: rtl; unicode-bidi: isolate;
}
.product-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); margin-top: auto;
  padding-top: var(--sp-3); border-top: 1px solid var(--line-soft);
}
.product-card__price {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--green-900);
}
.product-card__price s { color: var(--muted-soft); font-size: .85rem; margin-right: var(--sp-2); }
.product-card__price--ask { font-size: .82rem; font-family: var(--font-body); color: var(--muted); }

.btn-order {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  min-height: 40px; padding: var(--sp-2) var(--sp-4);
  font-size: .76rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--green-800);
  border: 0; border-radius: var(--radius);
  text-decoration: none;
  transition: background-color .2s var(--ease);
}
.btn-order:hover { background: var(--green-900); color: #fff; }
.btn-order svg { width: 15px; height: 15px; flex: none; }
.btn-order--out { background: var(--cream-2); color: var(--muted-soft); cursor: default; }
.btn-order--out:hover { background: var(--cream-2); color: var(--muted-soft); }

.empty-state {
  padding: var(--sp-8) var(--sp-5);
  text-align: center; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--radius-lg);
}
.empty-state h2 { font-size: 1.5rem; margin-bottom: var(--sp-3); }
.empty-state p { margin-inline: auto; }

/* Bandeau promo — carte claire */
.promo {
  display: grid; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}
@media (min-width: 860px) { .promo { grid-template-columns: 1fr 1fr; } }
.promo__media { min-height: 280px; background: var(--cream-2); }
.promo__media img { width: 100%; height: 100%; object-fit: cover; }
.promo__body { padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.promo__body h2 { color: var(--green-900); }
.promo__body p { color: var(--muted); }
.promo__price {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--sp-3);
  font-family: var(--font-display); font-size: clamp(1.7rem, 6vw, 2.4rem); color: var(--gold-800);
  margin-bottom: var(--sp-5);
  white-space: nowrap;
}
.promo__price s { font-size: .55em; color: var(--muted-soft); white-space: nowrap; }

/* --------------------------------------------------------------------------
   12. Contact
   -------------------------------------------------------------------------- */
.info-card {
  padding: var(--sp-6);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.map-embed {
  position: relative; width: 100%; padding-bottom: 40%;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  filter: grayscale(.15) contrast(1.02);
}
.map-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
@media (max-width: 640px) { .map-embed { padding-bottom: 75%; } }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex; gap: var(--sp-4);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
}
.info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list li:first-child { padding-top: 0; }
.info-list svg { width: 20px; height: 20px; color: var(--green-700); flex: none; margin-top: .3em; }
.info-list dt, .info-list strong {
  display: block;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-soft); font-weight: 500;
  margin-bottom: 2px;
}
.info-list a { color: var(--text); text-decoration: none; }
.info-list a:hover { color: var(--gold-700); text-decoration: underline; }

.form-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); } }

.field label {
  display: block;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--sp-2);
}
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px;
  padding: var(--sp-3) var(--sp-4);
  font: inherit; font-size: .97rem; color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(47,155,98,.15);
}
.field__hint { font-size: .8rem; color: var(--muted-soft); margin: var(--sp-2) 0 0; }

.form-note {
  font-size: .84rem; color: var(--muted); background: var(--cream-2);
  padding: var(--sp-4);
  border: 1px solid var(--line);
}
.form-note p { margin: 0; }

/* --------------------------------------------------------------------------
   13. Appel à l'action final
   -------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { margin-inline: auto; margin-bottom: var(--sp-6); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* --------------------------------------------------------------------------
   14. Pied de page
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--cream);
  color: var(--muted);
  padding-block: var(--sp-8) var(--sp-5);
  font-size: .92rem;
  border-top: 1px solid var(--line);
}
.site-footer h3 {
  color: var(--text);
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--line);
}
.footer-grid > :first-child { grid-column: 1 / -1; }
@media (min-width: 860px) { .footer-grid > :first-child { grid-column: auto; max-width: 320px; } }

.site-footer p { color: var(--muted); font-size: .92rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: var(--sp-2); }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--gold-800); }
/* Cibles tactiles confortables sur mobile */
.site-footer ul a {
  display: inline-flex; align-items: center;
  min-height: 44px; padding-block: var(--sp-1);
}
.site-footer img.footer-logo { width: 130px; margin-bottom: var(--sp-4); }

.socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; min-height: 44px;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--green-800);
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.socials a:hover { color: #fff; background: var(--green-800); border-color: var(--green-800); }
.socials svg { width: 19px; height: 19px; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  align-items: center; justify-content: space-between;
  padding-top: var(--sp-5);
  font-size: .8rem; color: var(--muted-soft);
}
.footer-bottom p { margin: 0; font-size: .8rem; color: var(--muted-soft); }

.disclaimer {
  margin-top: var(--sp-5); padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  font-size: .78rem; line-height: 1.6; color: var(--muted-soft);
  max-width: 90ch;
}

/* --------------------------------------------------------------------------
   15. Bouton WhatsApp flottant
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed; right: var(--sp-4); bottom: var(--sp-4);
  z-index: var(--z-drawer);
  display: inline-flex; align-items: center; gap: var(--sp-3);
  min-height: 52px; padding: var(--sp-3) var(--sp-5);
  background: var(--green-800); color: #fff;
  border-radius: 999px; text-decoration: none;
  font-size: .84rem; font-weight: 500; letter-spacing: .06em;
  box-shadow: var(--shadow-lg);
  transition: background-color .22s var(--ease);
}
.whatsapp-fab:hover { background: var(--green-900); color: #fff; }
.whatsapp-fab svg { width: 22px; height: 22px; flex: none; }
.whatsapp-fab span { display: none; }
@media (min-width: 560px) { .whatsapp-fab span { display: inline; } }

/* --------------------------------------------------------------------------
   16. Apparition au défilement
   -------------------------------------------------------------------------- */
/* Le contenu est visible par défaut : l'animation n'est activée que si le
   script d'amorçage a posé la classe `js` sur <html>. Sans JavaScript,
   ou si le script échoue, la page reste entièrement lisible. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------------------
   17. Impression
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .whatsapp-fab, .shop-toolbar, .topbar { display: none; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
}

/* ==========================================================================
   18. Boutique dynamique — panier, page produit, commande
   ========================================================================== */

/* Lien panier dans l'en-tête */
.cart-link {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: var(--text); text-decoration: none;
  border-radius: var(--radius); transition: color .2s var(--ease), background-color .2s var(--ease);
}
.cart-link:hover { color: var(--green-900); background: rgba(20,81,52,.06); }
.cart-link svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: 3px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-800); color: var(--cream);
  font-family: var(--font-body); font-size: .68rem; font-weight: 600; line-height: 1;
  border-radius: 999px;
}
.cart-badge.is-empty { display: none; }
.mobile-nav .cart-line { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav .cart-line .cart-badge { position: static; }

/* Contrôle de quantité */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); background: var(--paper); }
.qty__btn {
  width: 42px; height: 46px; border: 0; background: transparent; font-size: 1.2rem; line-height: 1;
  color: var(--text); cursor: pointer; transition: background-color .15s var(--ease);
}
.qty__btn:hover { background: var(--cream-2); }
.qty__input {
  width: 52px; height: 46px; text-align: center; border: 0; border-inline: 1px solid var(--line);
  font: inherit; font-size: 1rem; color: var(--text); background: transparent;
  -moz-appearance: textfield;
}
.qty__input::-webkit-outer-spin-button, .qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* --------------------------------------------------------- Page produit */
.pd { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 820px) { .pd { grid-template-columns: 1fr 1fr; } }
.pd__media { position: relative; background: var(--paper); border: 1px solid var(--line); }
.pd__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.pd__body h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: var(--sp-3); }
.pd__ar { font-size: 1.1rem; color: var(--muted-soft); margin-bottom: var(--sp-3); }
.pd__price { font-family: var(--font-display); font-size: 1.8rem; color: var(--green-900); margin-bottom: var(--sp-3); }
.pd__price s { color: var(--muted-soft); font-size: 1.1rem; margin-right: var(--sp-3); }
.pd__vol { color: var(--muted); font-size: .95rem; margin-bottom: var(--sp-4); }
.pd__stock--out {
  display: inline-block; margin-bottom: var(--sp-4);
  padding: var(--sp-2) var(--sp-3);
  font-size: .82rem; font-weight: 500;
  color: #7a2a2a; background: rgba(122,42,42,.08); border: 1px solid rgba(122,42,42,.25);
}
.pd__block { margin-bottom: var(--sp-5); }
.pd__block--desc { margin-top: var(--sp-6); }
.pd__block h2 { font-size: 1rem; font-weight: 500; letter-spacing: .02em; margin-bottom: var(--sp-2); color: var(--text); }
.pd__block p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.pd__buy { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: stretch; margin-bottom: var(--sp-4); }
.pd__buy .btn { min-height: 46px; }
.pd__wa { margin: 0 0 var(--sp-5); }
.pd__wa .btn svg { width: 18px; height: 18px; margin-right: var(--sp-2); vertical-align: -3px; }
.pd__back { margin: 0; }

/* --------------------------------------------------------- Page panier */
.cart-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .cart-grid { grid-template-columns: 1fr 340px; } }
.cart-list { display: flex; flex-direction: column; }
.cart-row {
  display: grid; gap: var(--sp-4); align-items: center;
  grid-template-columns: 80px 1fr auto; 
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--hair);
}
.cart-row:first-child { padding-top: 0; }
.cart-row__media { display: block; }
.cart-row__media img { width: 80px; height: 80px; object-fit: cover; border: 1px solid var(--line); background: var(--cream-2); }
.cart-row__info a { text-decoration: none; color: var(--text); }
.cart-row__info a:hover { color: var(--gold-800); }
.cart-row__unit { font-size: .85rem; color: var(--muted); margin-top: 2px; }
.cart-row__line { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-900); min-width: 90px; text-align: right; }
.cart-row__rm { border: 0; background: transparent; color: var(--muted-soft); font-size: 1rem; cursor: pointer; padding: 6px; line-height: 1; }
.cart-row__rm:hover { color: var(--text); }
@media (max-width: 560px) {
  .cart-row { grid-template-columns: 64px 1fr; grid-template-areas: 'media info' 'media qty' 'line rm'; row-gap: var(--sp-2); }
  .cart-row__media { grid-area: media; } .cart-row__info { grid-area: info; }
  .cart-row .qty { grid-area: qty; } .cart-row__line { grid-area: line; text-align: left; }
  .cart-row__rm { grid-area: rm; justify-self: end; }
  .cart-row__media img { width: 64px; height: 64px; }
}
.cart-side { background: var(--paper); border: 1px solid var(--line); padding: var(--sp-5); position: sticky; top: calc(var(--header-h) + 1rem); }
.cart-side h2 { font-size: 1.4rem; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; padding: var(--sp-3) 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); margin-bottom: var(--sp-3); }
.cart-total strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-900); }
.hint { font-size: .82rem; color: var(--muted-soft); margin: var(--sp-2) 0; }

.checkout { margin-top: clamp(2.5rem, 6vw, 4rem); max-width: 640px; }
.checkout h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.co-error { background: #f9e9e6; border: 1px solid #ecccc6; color: #8f3327; padding: 10px 14px; border-radius: var(--radius); font-size: .9rem; }

.order-done { text-align: center; max-width: 560px; margin: clamp(2rem,6vw,4rem) auto; }
.order-done__icon { width: 64px; height: 64px; margin: 0 auto var(--sp-4); border-radius: 50%; background: var(--green-100); color: var(--green-800); display: flex; align-items: center; justify-content: center; }
.order-done__icon svg { width: 32px; height: 32px; }
.order-done h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 88px; transform: translate(-50%, 20px);
  z-index: var(--z-modal); background: var(--text); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: var(--radius); font-size: .9rem;
  box-shadow: var(--shadow-lg); opacity: 0; transition: opacity .28s var(--ease), transform .28s var(--ease);
  max-width: 90vw; pointer-events: none;
}
.toast.is-in { opacity: 1; transform: translate(-50%, 0); }
