/* =========================================================================
   Maison Doré — Boulangerie & Pâtisserie
   Site démo créé par GridCore — gridcore.lu
   Feuille de style unique : tokens, layout, composants, responsive, motion.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Palette de marque */
  --terracotta: #875146;
  --terracotta-dark: #6E4038;
  --cream: #FAF9F6;
  --beige: #D1BE9A;
  --gold: #C9A35B;
  --gold-ink: #8A6A2C;        /* dourado escuro p/ texto/ícones pequenos sobre claro (AA) */
  --gold-light: #F0C46B;      /* dourado claro p/ texto pequeno sobre fundo escuro (AA) */
  --ink: #1D1E20;
  --white: #FFFFFF;
  --wa-green: #128C7E;        /* WhatsApp green (contraste AA p/ glifo branco) */
  --wa-green-dark: #0E7268;

  /* Dérivés */
  --terracotta-soft: rgba(135, 81, 70, 0.08);
  --gold-soft: rgba(201, 163, 91, 0.16);
  --beige-soft: #E7DBC4;
  --ink-60: rgba(29, 30, 32, 0.62);
  --ink-45: rgba(29, 30, 32, 0.62);  /* relevé à AA (≥4.5:1 sur crème) */
  --line: rgba(110, 64, 56, 0.14);
  --overlay: linear-gradient(180deg, rgba(29, 30, 32, 0) 28%, rgba(29, 30, 32, 0.78) 100%);

  /* Ombres (échelle d'élévation cohérente) */
  --shadow-sm: 0 1px 2px rgba(110, 64, 56, 0.06), 0 2px 8px rgba(110, 64, 56, 0.06);
  --shadow-md: 0 6px 18px rgba(110, 64, 56, 0.12), 0 2px 6px rgba(110, 64, 56, 0.08);
  --shadow-lg: 0 18px 48px rgba(110, 64, 56, 0.20), 0 6px 16px rgba(110, 64, 56, 0.10);

  /* Typographie */
  --font-display: "Marcellus", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1080px;
  --pad-x: 24px;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 76px;

  /* Mouvement */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 160ms;
  --t-base: 220ms;

  /* Z-index */
  --z-header: 100;
  --z-drawer: 1000;
}

/* -------------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-soft); color: var(--terracotta-dark); }

/* Accessibilité : lien d'évitement */
.skip-link {
  position: absolute;
  left: 12px;
  top: -64px;
  z-index: calc(var(--z-drawer) + 1);
  background: var(--white);
  color: var(--terracotta-dark);
  padding: 10px 18px;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: top var(--t-base) var(--ease);
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------------------
   3. Typographie
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--terracotta);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.4em;
  letter-spacing: 0.2px;
  text-wrap: balance;   /* évite les orphelins, équilibre les titres (tous idiomes) */
}

h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(26px, 3.6vw, 38px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.5;
  color: var(--terracotta-dark);
}

.muted { color: var(--ink-60); }

/* Étiquette « eyebrow » au-dessus des titres */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
/* Contraste AA selon le fond */
.section--beige .eyebrow { color: var(--terracotta-dark); }
.section--ink .eyebrow,
.on-dark .eyebrow { color: var(--gold-light); }

/* -------------------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--wide { max-width: 1264px; }

.section { padding-block: clamp(56px, 8vw, 96px); }
.section--cream { background: var(--cream); }
.section--beige { background: var(--beige); }
.section--ink { background: var(--terracotta-dark); color: var(--cream); }
/* Costura entre deux sections de même couleur (ex. Processus → Avis) : moins de vide */
.section--cream + .section--cream { padding-top: clamp(24px, 4vw, 48px); }

.section-head { max-width: 660px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.center { text-align: center; }
.mt-48 { margin-top: 48px; }
.stack-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.stack-cta--center { justify-content: center; }

/* -------------------------------------------------------------------------
   5. Boutons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  transition: background-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--terracotta); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(1px); }

.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn--outline:hover { background: var(--terracotta); color: var(--cream); }

/* Sur fond foncé */
.on-dark .btn--outline,
.section--ink .btn--outline { color: var(--cream); border-color: rgba(250, 249, 246, 0.5); }
.on-dark .btn--outline:hover,
.section--ink .btn--outline:hover { background: var(--cream); color: var(--terracotta-dark); border-color: var(--cream); }

.btn--ghost-gold { background: var(--gold); color: var(--ink); }
.btn--ghost-gold:hover { background: var(--cream); color: var(--terracotta-dark); }

/* -------------------------------------------------------------------------
   5b. Barre promo (au-dessus du header) — démo GridCore
   ------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: rgba(250, 249, 246, 0.82);
  font-size: 13.5px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  min-height: 44px;
  padding-block: 8px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar-text { margin: 0; }
.topbar-text strong { color: var(--gold); font-weight: 600; }
.topbar-text a { color: inherit; }
.topbar-text a:hover strong { text-decoration: underline; }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  min-height: 36px;
  border: 1px solid rgba(250, 249, 246, 0.32);
  border-radius: 9999px;
  color: var(--cream);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: background-color var(--t-base) var(--ease), border-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.topbar-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.topbar-cta svg { width: 15px; height: 15px; transition: transform var(--t-base) var(--ease); }
.topbar-cta:hover svg { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   6. Header & navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--terracotta);
  color: var(--cream);
  transition: box-shadow var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); background: var(--terracotta-dark); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.brand {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand .brand-dot { color: var(--gold); }
.brand-mark { width: 32px; height: 32px; flex: none; }

/* Sélecteur de langue (pilule FR / EN / PT / DE) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 9999px;
  background: rgba(250, 249, 246, 0.14);
  border: 1px solid rgba(250, 249, 246, 0.22);
}
.lang-opt {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(250, 249, 246, 0.78);
  padding: 6px 12px;
  border-radius: 9999px;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lang-opt:hover { color: #fff; }
.lang-opt.is-active { background: var(--cream); color: var(--terracotta-dark); }
.lang-switch--drawer { display: none; }

/* Sélecteur de langue compact (dropdown) — desktop */
.lang-dd { position: relative; }
.lang-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 9999px;
  background: rgba(250, 249, 246, 0.12);
  border: 1px solid rgba(250, 249, 246, 0.22);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.lang-dd-trigger:hover { background: rgba(250, 249, 246, 0.2); }
.lang-dd-trigger .lang-globe { width: 18px; height: 18px; opacity: 0.9; }
.lang-dd-trigger .lang-caret { width: 14px; height: 14px; transition: transform var(--t-base) var(--ease); }
.lang-dd-trigger[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 132px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transform-origin: top right;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease), visibility var(--t-base) var(--ease);
  z-index: calc(var(--z-header) + 1);
}
.lang-dd.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu .lang-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--ink);
  text-align: left;
}
.lang-menu .lang-opt:hover { background: var(--terracotta-soft); color: var(--terracotta-dark); }
.lang-menu .lang-opt.is-active { background: var(--terracotta); color: var(--cream); }
.lang-menu .lang-opt .check { width: 16px; height: 16px; opacity: 0; }
.lang-menu .lang-opt.is-active .check { opacity: 1; }

/* Bouton WhatsApp flottant (toujours visible) */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 58px;
  padding: 0;
  border-radius: 9999px;
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.40), 0 4px 10px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background-color var(--t-fast) var(--ease);
}
.wa-fab-icon {
  width: 58px; height: 58px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.wa-fab-icon svg { width: 30px; height: 30px; }
.wa-fab-label {
  max-width: 0;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  transition: max-width var(--t-base) var(--ease), opacity var(--t-base) var(--ease), padding var(--t-base) var(--ease);
}
.wa-fab:hover { transform: translateY(-2px); background: var(--wa-green-dark); box-shadow: 0 14px 34px rgba(18, 140, 126, 0.48), 0 6px 14px rgba(0, 0, 0, 0.2); }
.wa-fab:hover .wa-fab-label { max-width: 180px; opacity: 1; padding-right: 22px; }
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.5);
  animation: wa-pulse 2.6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(18, 140, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0); }
}

.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 9999px;
  position: relative;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: #fff; }
.nav-link[aria-current="page"]::after { transform: scaleX(1); background: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
/* Le bouton WhatsApp dans le drawer reste masqué en desktop (affiché en mobile) */
.primary-nav .btn--whatsapp { display: none; }
.btn--whatsapp {
  background: var(--gold);
  color: var(--ink);
  min-height: 44px;
  padding: 10px 22px;
  box-shadow: var(--shadow-sm);
}
.btn--whatsapp:hover { background: var(--cream); color: var(--terracotta-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--cream);
}
.nav-toggle:hover { background: rgba(250, 249, 246, 0.12); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Drawer mobile */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(29, 30, 32, 0.55);
  opacity: 0; visibility: hidden;
  z-index: calc(var(--z-drawer) - 1);
  transition: opacity var(--t-base) var(--ease), visibility var(--t-base) var(--ease);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -8%, var(--gold-soft), transparent 62%),
    radial-gradient(720px 400px at 4% 112%, rgba(135, 81, 70, 0.06), transparent 60%),
    var(--cream);
  padding-block: clamp(60px, 8vw, 104px) clamp(20px, 4vw, 40px);
}
.hero .container { max-width: 1200px; }
/* Moins d'espace mort entre le hero et la section suivante */
.hero + .section { padding-top: clamp(44px, 6vw, 72px); }   /* plus d'espace pour le visuel */
.hero-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;   /* ~43% texte / ~57% visuel */
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-copy { max-width: 520px; }
.hero-copy h1 { margin-bottom: 0.34em; }
.hero-sub { font-size: 18px; color: var(--ink-60); margin-bottom: 30px; max-width: 46ch; }
/* Mini-preuve sous les CTA (adresse / artisanat) */
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 26px; font-size: 14px; font-weight: 500; color: rgba(29, 30, 32, 0.74);
}
.hero-meta .hm-item { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 17px; height: 17px; color: var(--terracotta); flex: none; }
.hero-meta .hm-sep { width: 1px; height: 16px; background: var(--line); }

/* Composition premium d'images (layered) + cartes flottantes */
.hero-media { position: relative; }
.hero-media::before {          /* glow chaud très discret derrière le cluster */
  content: "";
  position: absolute;
  inset: -10% -6% -12% -4%;
  background: radial-gradient(58% 58% at 62% 42%, var(--gold-soft), transparent 72%);
  filter: blur(30px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
/* Image cinématographique principale (vitrine panoramique) */
.hero-cine {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 16 / 10;   /* large, cinématographique, dominant */
  border-radius: 24px;
  overflow: hidden;
  /* ombre douce et cinématographique (pas un "card") */
  box-shadow: 0 34px 64px -26px rgba(110, 64, 56, 0.42), 0 14px 30px -18px rgba(110, 64, 56, 0.28);
}
.hero-cine::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.hero-cine img {
  width: 100%; height: 100%; object-fit: cover; object-position: 40% 52%; display: block;
  animation: hero-kenburns 24s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
@keyframes hero-kenburns { from { transform: scale(1.03); } to { transform: scale(1.11); } }

/* Vignette flottante (pain au four) — profondeur + micro-parallax via --px/--py */
.hero-accent {
  position: absolute;
  left: auto; right: -84px; bottom: 32px;   /* détail accroché à droite, hors-cadre */
  z-index: 3;
  width: 26%; max-width: 158px;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: translate(var(--px, 0px), var(--py, 0px));
  will-change: transform;
}
.hero-accent::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 2px var(--cream), inset 0 0 0 3px rgba(255, 255, 255, 0.35);
}
.hero-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Pilule d'état ouvert / fermé (remplie par main.js) */
.status-pill {
  position: absolute;
  left: 16px; top: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 9999px;
  background: rgba(29, 30, 32, 0.72);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(250, 249, 246, 0.12);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  transform: translate(var(--px, 0px), var(--py, 0px));
  will-change: transform;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #9aa0a6; flex: none; }
.status-pill.is-open .status-dot { background: #2ec16b; }
.status-pill.is-closed .status-dot { background: #e1574c; }
.status-text { white-space: nowrap; }
@keyframes status-ping {
  0% { box-shadow: 0 0 0 0 rgba(46, 193, 107, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(46, 193, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 193, 107, 0); }
}

/* Badge de notation flottant */
.hero-rating {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(110, 64, 56, 0.10);
  box-shadow: 0 2px 8px rgba(110, 64, 56, 0.10);
  transform: translate(var(--px, 0px), var(--py, 0px));
  will-change: transform;
}
.hero-rating .stars-mini { display: inline-flex; gap: 1px; color: var(--gold-ink); }
.hero-rating .stars-mini svg { width: 13px; height: 13px; }
.hero-rating .rating-num { font-family: var(--font-display); color: var(--terracotta); font-size: 14px; line-height: 1; }
.hero-rating .rating-sub { display: block; color: var(--ink-60); font-size: 11px; margin-top: 1px; }

/* -------------------------------------------------------------------------
   8. Cartes produit
   ------------------------------------------------------------------------- */
.card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  background: var(--terracotta-dark);
}
.card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0;
  background: var(--overlay);
}
.card-label {
  position: absolute;
  inset-inline: 0; bottom: 0;
  padding: 22px 18px;
  text-align: center;
  z-index: 1;
}
.card-label .title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
  letter-spacing: 0.02em;
  margin: 0;
}
.card-label .sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(250, 249, 246, 0.82);
}
a.card:hover, a.card:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
a.card:hover img, a.card:focus-visible img { transform: scale(1.06); }

/* -------------------------------------------------------------------------
   9. Colonnes « valeurs » (Détails qui Enchantent)
   ------------------------------------------------------------------------- */
.value {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-media { aspect-ratio: 16 / 10; overflow: hidden; }
.value-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.value:hover .value-media img { transform: scale(1.06); }
.value-body { padding: 26px 24px 30px; }
.value-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: var(--terracotta-soft);
  color: var(--terracotta);
  margin-bottom: 14px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-body h3 { margin-bottom: 0.35em; }
.value-body p { color: var(--ink-60); margin: 0; }

/* Variante simple (sans image) pour blocs « Pourquoi choisir » */
.feature {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature .value-icon { margin-bottom: 16px; }
.feature p { color: var(--ink-60); margin: 0; }
.section--beige .feature,
.section--beige .value { background: var(--white); border-color: rgba(110, 64, 56, 0.1); }

/* -------------------------------------------------------------------------
   10. Témoignages
   ------------------------------------------------------------------------- */
.testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.section--beige .testimonial { border-color: rgba(110, 64, 56, 0.1); }
/* Grand guillemet décoratif */
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 2px; right: 20px;
  font-family: var(--font-display);
  font-size: 62px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.20;
  pointer-events: none;
}
.stars { display: inline-flex; gap: 3px; margin-bottom: 12px; color: var(--gold-ink); }
.stars svg { width: 17px; height: 17px; }
.stars .star-empty { color: rgba(138, 106, 44, 0.30); }
.testimonial blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.6;
  color: var(--terracotta-dark);
}
.testimonial figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.tm-avatar {
  width: 42px; height: 42px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
}
.tm-meta { display: flex; flex-direction: column; }
.tm-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.tm-role { font-size: 13px; color: var(--ink-45); }

/* Ligne d'agrégat des avis (démo) */
.avis-agg {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 10px; font-size: 15px; color: var(--ink-60);
}
.avis-agg .stars { margin: 0; }
.avis-agg strong { color: var(--terracotta); font-family: var(--font-display); font-size: 19px; }
/* Mention démo : avis non réels */
.avis-note { margin-top: 8px; font-size: 13px; font-style: italic; color: var(--ink-45); }

/* -------------------------------------------------------------------------
   10b. Processus (3 étapes)
   ------------------------------------------------------------------------- */
.step-num {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.step-icon { color: var(--terracotta); margin-left: 10px; }
.step-icon svg { width: 22px; height: 22px; vertical-align: middle; }

/* Bloc « Votre commande en 3 étapes » — version premium */
.process { position: relative; }
.process .feature {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 28px 34px;
}
.process .feature h3 { margin-bottom: 0.4em; }
.process .feature p {
  color: rgba(29, 30, 32, 0.72);
  max-width: 30ch;
  margin-inline: auto;
}
.process .step-num {
  position: relative;
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  font-size: 26px;
  box-shadow: 0 8px 20px -6px rgba(135, 81, 70, 0.5);
}
.process .step-num::after {       /* anneau doré discret autour du médaillon */
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0.55;
}
/* Connexion subtile entre les étapes (desktop) — visible dans les gouttières */
@media (min-width: 861px) {
  .process::before {
    content: "";
    position: absolute;
    top: 70px;            /* padding-top 40 + rayon du médaillon 30 */
    left: 16%; right: 16%;
    height: 2px;
    background: var(--gold);
    opacity: 0.38;
    z-index: 0;
  }
}

/* -------------------------------------------------------------------------
   10c. FAQ (accordéon accessible <details>)
   ------------------------------------------------------------------------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.section--beige .faq-item { border-color: rgba(110, 64, 56, 0.1); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--terracotta-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.faq-item .faq-icon { width: 22px; height: 22px; flex: none; color: var(--terracotta); transition: transform var(--t-base) var(--ease); }
.faq-item[open] summary .faq-icon { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--ink-60); line-height: 1.6; }
.faq-item .faq-body p { margin: 0; }

/* -------------------------------------------------------------------------
   11. Vu dans la presse
   ------------------------------------------------------------------------- */
.press {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 72px);
}
.press li {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--terracotta);
  opacity: 0.78;
  letter-spacing: 0.02em;
  transition: opacity var(--t-base) var(--ease);
}
.press li:hover { opacity: 1; }

/* -------------------------------------------------------------------------
   12. Bandeau CTA
   ------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(250, 249, 246, 0.82); max-width: 52ch; margin-inline: auto; margin-bottom: 28px; }
.cta-band .cta-info {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 16px;
  font-size: 14px; color: rgba(250, 249, 246, 0.72); margin-top: -8px; margin-bottom: 26px;
}
.cta-band .cta-info svg { width: 16px; height: 16px; color: var(--gold); vertical-align: -3px; margin-right: 6px; }
.cta-band .cta-info .ci-sep { width: 1px; height: 14px; background: rgba(250, 249, 246, 0.28); }

/* -------------------------------------------------------------------------
   13. Menu — saveurs, prix, tailles
   ------------------------------------------------------------------------- */
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.section--beige .panel { border-color: rgba(110, 64, 56, 0.1); }

.flavors { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 8px; }
.flavor {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 9999px;
  background: var(--terracotta-soft);
  border: 1px solid var(--line);
  color: var(--terracotta-dark);
  font-size: 14px;
  font-weight: 500;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.flavor:hover { background: var(--terracotta); color: var(--cream); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.info-tile {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.info-tile .num {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}
.info-tile .unit { font-size: 13px; color: var(--ink-60); }

.price-row {
  display: flex; flex-wrap: wrap; gap: 16px; margin: 22px 0;
}
.price-pill {
  flex: 1 1 220px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--terracotta-soft);
  border: 1px solid var(--line);
}
.price-pill .label { font-weight: 600; color: var(--ink); }
.price-pill .amount { font-family: var(--font-display); font-size: 24px; color: var(--terracotta); }

.checklist { display: grid; gap: 12px; margin: 4px 0 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.checklist li svg {
  width: 22px; height: 22px; flex: none; margin-top: 2px;
  color: var(--terracotta);
}
.checklist li strong { color: var(--terracotta-dark); }

.note {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 8px;
  color: var(--terracotta-dark);
  font-size: 15px;
}
.note svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--gold); }

/* -------------------------------------------------------------------------
   14. Tableau Kit de Fête (responsive -> cartes)
   ------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.kit-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-variant-numeric: tabular-nums;
  min-width: 640px;
}
.kit-table caption { text-align: left; padding: 18px 22px; color: var(--ink-60); font-size: 14px; }
.kit-table thead th {
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  padding: 16px 22px;
  letter-spacing: 0.02em;
}
.kit-table tbody td { padding: 16px 22px; border-top: 1px solid var(--line); font-size: 15px; }
.kit-table tbody tr:nth-child(even) { background: var(--cream); }
.kit-table tbody tr:hover { background: var(--terracotta-soft); }
.kit-table .col-people { font-weight: 600; color: var(--terracotta-dark); }
.kit-table .col-price { font-family: var(--font-display); color: var(--terracotta); font-size: 17px; }

/* -------------------------------------------------------------------------
   15. Contact — infos, carte, formulaire
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }

.contact-list { display: grid; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci-icon {
  width: 46px; height: 46px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: var(--terracotta-soft); color: var(--terracotta);
}
.contact-item .ci-icon svg { width: 22px; height: 22px; }
.contact-item h3 { font-size: 18px; margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--ink-60); margin: 0; }
.contact-item a:hover { color: var(--terracotta); }

.map-frame {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field .req { color: var(--terracotta); }
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  min-height: 48px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field .help { display: block; margin-top: 6px; font-size: 13px; color: var(--ink-45); }
.field .error-msg { display: none; margin-top: 6px; font-size: 13px; font-weight: 600; color: #B4231B; }

.field.has-error input, .field.has-error textarea { border-color: #B4231B; background: #FCF3F1; }
.field.has-error input:focus, .field.has-error textarea:focus { box-shadow: 0 0 0 3px rgba(180, 35, 27, 0.16); }
.field.has-error .error-msg { display: flex; align-items: center; gap: 6px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(86, 138, 92, 0.12);
  border: 1px solid rgba(86, 138, 92, 0.4);
  color: #3F6B47;
  font-weight: 600;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; color: #4E8B57; }

/* -------------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--terracotta); color: var(--cream); padding-block: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.04em; margin-bottom: 12px; color: var(--cream); }
.footer-brand .brand-dot { color: var(--gold); }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.site-footer p, .site-footer li { color: rgba(250, 249, 246, 0.82); margin: 0 0 8px; }
.site-footer a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(250, 249, 246, 0.28);
  color: var(--cream);
  transition: background-color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(250, 249, 246, 0.18);
  padding-block: 22px;
  text-align: center;
  font-size: 14px;
  color: rgba(250, 249, 246, 0.7);
}
.footer-bottom a { color: var(--gold); font-weight: 600; }

/* -------------------------------------------------------------------------
   16b. Split image + texte (réutilisable : événements, kit de fête)
   ------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split--reverse .media-card { order: 2; }
.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.split-copy h2 { margin-bottom: 0.45em; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .media-card { order: 0; }
}

/* -------------------------------------------------------------------------
   17. Scroll reveal
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }

/* -------------------------------------------------------------------------
   18. Responsive
   ------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  :root { --pad-x: 48px; }
}

@media (max-width: 940px) {
  /* Bascule en navigation drawer */
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn--whatsapp { display: none; }
  .nav-actions .lang-switch,
  .nav-actions .lang-dd { display: none; }
  .primary-nav .lang-switch--drawer { display: inline-flex; align-self: center; margin-top: 24px; }

  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: var(--terracotta-dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 16px) 24px 32px;
    transform: translateX(100%);
    transition: transform var(--t-base) var(--ease);
    z-index: var(--z-drawer);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .nav-link { font-size: 19px; padding: 14px 12px; border-bottom: 1px solid rgba(250, 249, 246, 0.12); border-radius: 0; }
  .nav-link::after { display: none; }
  .nav-link[aria-current="page"] { color: var(--gold); }
  .primary-nav .btn--whatsapp { display: inline-flex; margin-top: 20px; width: 100%; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-cine { aspect-ratio: 16 / 10; }
  .hero .container { max-width: var(--container); }
  .hero-accent { display: none; }   /* détail secondaire masqué en mobile (hero propre) */
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  /* Pilules / vignette du hero plus compactes sur très petits écrans */
  .status-pill { left: 10px; top: 10px; padding: 7px 11px; font-size: 11.5px; }
  .hero-rating { top: 10px; right: 10px; padding: 6px 10px; }
}

@media (max-width: 600px) {
  .topbar-tail { display: none; }
  .topbar { font-size: 13px; }
  .wa-fab { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); height: 54px; }
  .wa-fab-icon { width: 54px; height: 54px; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-head { margin-bottom: 36px; }

  /* Tableau Kit -> cartes empilées */
  .table-wrap { overflow: visible; box-shadow: none; }
  .kit-table { min-width: 0; box-shadow: none; background: transparent; }
  .kit-table caption { padding: 0 0 16px; }
  .kit-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .kit-table tbody tr {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    padding: 6px 18px 12px;
  }
  .section--beige .kit-table tbody tr { border-color: rgba(110, 64, 56, 0.12); }
  .kit-table tbody tr:nth-child(even) { background: var(--white); }
  .kit-table tbody td {
    display: flex; justify-content: space-between; gap: 16px;
    border-top: 1px solid var(--line);
    padding: 11px 0;
    text-align: right;
  }
  .kit-table tbody td:first-child { border-top: none; }
  .kit-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--ink-60);
    text-align: left;
    font-family: var(--font-body);
    font-size: 14px;
  }
  .kit-table .col-people, .kit-table .col-price { font-size: 16px; }
}

/* -------------------------------------------------------------------------
   19. Préférence de mouvement réduit
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
