/* =====================================================================
   Lieu-D'Hibiscus — styles socle
   Direction visuelle « affiche aquarelle » : parchemin crème, titres bleu
   ardoise calligraphiés, hibiscus rose, panneaux pastel, touches dorées.
   Bootstrap 5 intégré en local ; tout est servi en 'self' (CSP stricte).
   ===================================================================== */

/* Petit Formal Script (Google Fonts, hébergée en local — la CSP interdit les CDN).
   Calligraphie fine et posée, dans l'esprit du titre de l'affiche. */
@font-face {
  font-family: "Petit Formal Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/petit-formal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Petit Formal Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/petit-formal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Borel — réservée au seul encart enfants (module VR du dragon) : son trait
   rond et joueur y est un atout, alors qu'il détonnerait ailleurs. */
@font-face {
  font-family: "Borel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/borel-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Borel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/borel-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ldh-bg: #faf5ec;           /* parchemin crème (affiche) */
  --ldh-surface: #fffdf8;
  --ldh-text: #43403c;
  --ldh-muted: #7a736c;
  --ldh-border: #eadfd2;
  --ldh-encre: #3e6b8c;        /* bleu ardoise des titres */
  --ldh-hibiscus: #d96f8b;     /* rose hibiscus */
  --ldh-hibiscus-dark: #b95571;
  --ldh-soleil: #dfa64a;       /* or des étoiles */
  --ldh-feuillage: #5a9e8f;    /* vert d'eau feuillage */
  --ldh-pastel-bleu: #e3eef6;
  --ldh-pastel-rose: #fbe4e8;
  --ldh-pastel-lavande: #ece6f5;
  --ldh-pastel-peche: #fbeedd;
  --ldh-danger: #b3261e;
  --ldh-ok: #2f7d52;
  --ldh-radius: 18px;
  --ldh-shadow: 0 10px 30px rgba(93, 64, 82, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ldh-text);
  background: var(--ldh-bg);
  line-height: 1.55;
}

a { color: var(--ldh-feuillage); text-decoration: none; }
a:hover { text-decoration: none; color: var(--ldh-hibiscus-dark); }
/* Aucun soulignement nulle part (y compris liens Bootstrap) */
a, a:hover, a:focus, .ldh-site a, .ldh-site a:hover { text-decoration: none; }
/* Liens stylés en bouton : jamais de soulignement, aspect bouton net */
.btn, a.btn, .ldh-btn, .ldh-btn-primary, .ldh-btn-outline { text-decoration: none !important; }

.ldh-shell { display: flex; min-height: 100vh; }

/* --- Barre latérale admin --- */
.ldh-side {
  width: 248px;
  background: var(--ldh-surface);
  border-right: 1px solid var(--ldh-border);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.ldh-brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ldh-hibiscus-dark);
  padding: .25rem .5rem 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.ldh-brand img { object-fit: contain; }
.ldh-logo { object-fit: contain; }
.ldh-nav a {
  display: block;
  padding: .55rem .65rem;
  border-radius: 10px;
  color: var(--ldh-text);
}
.ldh-nav a:hover { background: #f4ece7; text-decoration: none; }
.ldh-nav a.is-active { background: #f7dee5; color: var(--ldh-hibiscus-dark); font-weight: 600; }
.ldh-side form { margin-top: auto; }

/* --- Zone principale --- */
.ldh-main { flex: 1; padding: 1.5rem clamp(1rem, 4vw, 2.5rem); }
.ldh-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.ldh-topbar h1 { font-size: 1.4rem; margin: 0; }

/* --- Carte centrée (login, 2FA) --- */
.ldh-center { min-height: 100vh; display: grid; place-items: center; padding: 1.5rem; }
.ldh-card {
  background: var(--ldh-surface);
  border: 1px solid var(--ldh-border);
  border-radius: var(--ldh-radius);
  box-shadow: var(--ldh-shadow);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
}
.ldh-card h1 { margin-top: 0; font-size: 1.35rem; color: var(--ldh-hibiscus-dark); }
.ldh-card .ldh-sub { color: var(--ldh-muted); margin-top: -.25rem; }

.ldh-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
/* min-width:0 : autorise les colonnes à rétrécir pour qu'un tableau large ne
   déborde pas sur la colonne voisine (piège classique de CSS Grid). */
.ldh-grid > * { min-width: 0; }
.ldh-grid .ldh-table { display: block; overflow-x: auto; }
.ldh-panel {
  background: var(--ldh-surface);
  border: 1px solid var(--ldh-border);
  border-radius: var(--ldh-radius);
  padding: 1.25rem;
}
.ldh-panel h2 { margin: 0 0 .5rem; font-size: 1.05rem; }
.ldh-panel p { margin: .25rem 0; color: var(--ldh-muted); }

/* --- Formulaires --- */
.ldh-field { margin-bottom: 1rem; }
.ldh-field label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .92rem; }
.ldh-field input[type="text"],
.ldh-field input[type="email"],
.ldh-field input[type="password"],
.ldh-field input[type="number"] {
  width: 100%;
  padding: .6rem .75rem;
  border: 1px solid var(--ldh-border);
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
}
.ldh-field input:focus {
  outline: 2px solid var(--ldh-soleil);
  border-color: var(--ldh-soleil);
}

.ldh-btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  padding: .65rem 1.1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--ldh-hibiscus);
  color: #fff;
}
.ldh-btn:hover { background: var(--ldh-hibiscus-dark); }
.ldh-btn--ghost { background: transparent; color: var(--ldh-text); border: 1px solid var(--ldh-border); }
.ldh-btn--ghost:hover { background: #f4ece7; }
.ldh-btn--danger { background: var(--ldh-danger); }
.ldh-btn--block { width: 100%; }

/* --- Alertes --- */
.ldh-alert { padding: .75rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-size: .95rem; }
.ldh-alert--error { background: #fbe3e1; color: var(--ldh-danger); }
.ldh-alert--info { background: #e3f1ea; color: var(--ldh-ok); }

.ldh-code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  background: #f2ece4;
  padding: .5rem .65rem;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: .04em;
  word-break: break-all;
}
.ldh-badge { font-size: .8rem; padding: .15rem .55rem; border-radius: 999px; }
.ldh-badge--on { background: #e3f1ea; color: var(--ldh-ok); }
.ldh-badge--off { background: #f7dee5; color: var(--ldh-hibiscus-dark); }

/* --- Vitrine publique (placeholder Lot 0) --- */
.ldh-hero { text-align: center; padding: clamp(3rem, 10vw, 7rem) 1.5rem; }
.ldh-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--ldh-hibiscus-dark); margin-bottom: .5rem; }
.ldh-hero p { color: var(--ldh-muted); max-width: 40ch; margin: 0 auto 1.5rem; }
.ldh-footer { text-align: center; padding: 2rem; color: var(--ldh-muted); font-size: .9rem; }

@media (max-width: 720px) {
  .ldh-shell { flex-direction: column; }
  .ldh-side { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .ldh-side form { margin-top: 0; margin-left: auto; }
}

/* --- Tables admin --- */
.ldh-table { width: 100%; border-collapse: collapse; }
.ldh-table th, .ldh-table td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--ldh-border); vertical-align: top; }
.ldh-table th { font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ldh-muted); }
.ldh-table tbody tr:hover { background: #f7f1e7; }
.ldh-row-inactif { opacity: .6; }

/* --- Avatar initiales --- */
.ldh-avatar {
  display: inline-grid; place-items: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: #f7dee5; color: var(--ldh-hibiscus-dark);
  font-size: .85rem; font-weight: 700; margin-right: .4rem; vertical-align: middle;
}

/* --- Onglets fiche --- */
.ldh-tabs { display: flex; flex-wrap: wrap; gap: .25rem; border-bottom: 1px solid var(--ldh-border); margin-bottom: 1.25rem; }
.ldh-tab { padding: .55rem .9rem; border-radius: 10px 10px 0 0; color: var(--ldh-text); border-bottom: 2px solid transparent; }
.ldh-tab:hover { background: #f4ece7; text-decoration: none; }
.ldh-tab.is-active { color: var(--ldh-hibiscus-dark); border-bottom-color: var(--ldh-hibiscus); font-weight: 600; }

/* --- Grille de formulaire --- */
.ldh-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 560px) { .ldh-form-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Vitrine (Lot 1) — thème hibiscus appliqué par-dessus Bootstrap 5.
   ===================================================================== */
.ldh-site { background: var(--ldh-bg); color: var(--ldh-text); }
.ldh-site a { color: var(--ldh-feuillage); }
.ldh-site a:hover { color: var(--ldh-hibiscus-dark); }

.ldh-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ldh-border);
}
.ldh-navbar .navbar-brand { color: var(--ldh-hibiscus-dark); }
.ldh-navbar .nav-link { color: var(--ldh-text); }
.ldh-navbar .nav-link:hover,
.ldh-navbar .nav-link.active { color: var(--ldh-hibiscus-dark); }

.ldh-btn-primary {
  background: var(--ldh-hibiscus);
  border: 1px solid var(--ldh-hibiscus);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(217, 111, 139, 0.26);
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.ldh-btn-primary:hover,
.ldh-btn-primary:focus {
  background: var(--ldh-hibiscus-dark);
  border-color: var(--ldh-hibiscus-dark);
  color: #fff;
  box-shadow: 0 9px 22px rgba(185, 85, 113, 0.32);
}
.ldh-btn-primary:active { transform: translateY(1px); }
.ldh-btn-outline {
  border: 1px solid var(--ldh-hibiscus);
  color: var(--ldh-hibiscus-dark);
  background: transparent;
}
.ldh-btn-outline:hover { background: #f7dee5; color: var(--ldh-hibiscus-dark); }

/* Un bouton qui est un lien doit garder sa couleur de bouton : `.ldh-site a`
   (0-2-0) l'emporterait sinon sur `.ldh-btn-primary` (0-1-0) et le texte
   passerait en vert d'eau sur fond rose. */
.ldh-site a.ldh-btn-primary,
.ldh-site a.ldh-btn-primary:hover,
.ldh-site a.ldh-btn-primary:focus,
.ldh-site a.ldh-btn-primary:active { color: #fff; }
.ldh-site a.ldh-btn-outline,
.ldh-site a.ldh-btn-outline:hover,
.ldh-site a.ldh-btn-outline:focus { color: var(--ldh-hibiscus-dark); }

/* Héros */
.ldh-hero-site {
  background:
    radial-gradient(1200px 400px at 80% -10%, #fbe3e9 0%, rgba(251,227,233,0) 60%),
    radial-gradient(900px 380px at 0% 0%, #e3eef6 0%, rgba(227,238,246,0) 55%),
    var(--ldh-bg);
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.ldh-hero-site h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--ldh-encre);
  line-height: 1.15;
}
.ldh-hero-site .ldh-lede { font-size: 1.15rem; color: var(--ldh-muted); max-width: 46ch; }
.ldh-hero-emoji { font-size: clamp(6rem, 18vw, 12rem); line-height: 1; filter: drop-shadow(0 12px 24px rgba(93,64,82,.14)); }
.ldh-hero-logo { max-width: min(360px, 80%); height: auto; filter: drop-shadow(0 14px 28px rgba(93,64,82,.12)); }

/* Orbe « respirant » (aperçu du module VR) */
.ldh-vr-orb { display: grid; place-items: center; min-height: 240px; }
.ldh-vr-orb span {
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fdf6ea, var(--ldh-soleil) 55%, var(--ldh-hibiscus) 105%);
  box-shadow: 0 0 60px rgba(244, 183, 64, 0.5);
  animation: ldh-breathe 8s ease-in-out infinite;
}
@keyframes ldh-breathe {
  0%, 100% { transform: scale(0.78); box-shadow: 0 0 36px rgba(244,183,64,.35); }
  45%, 60% { transform: scale(1.06); box-shadow: 0 0 70px rgba(244,183,64,.55); }
}
@media (prefers-reduced-motion: reduce) { .ldh-vr-orb span { animation: none; } }

/* Sections & cartes */
.ldh-section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.ldh-section--soft { background: #fff; border-block: 1px solid var(--ldh-border); }
/* Marqueur de section façon affiche : filets latéraux autour d'un texte rose */
.ldh-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  color: var(--ldh-hibiscus-dark); font-size: 1.02rem; letter-spacing: .02em;
}
.ldh-eyebrow::before, .ldh-eyebrow::after {
  content: ""; width: 30px; height: 1px;
  background: currentColor; opacity: .45; flex: none;
}

.ldh-feature {
  background: var(--ldh-surface);
  border: 1px solid var(--ldh-border);
  border-radius: var(--ldh-radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--ldh-shadow);
}
.ldh-feature .ldh-feature-icon { font-size: 2rem; }

/* Cartes tarifs */
.ldh-price {
  background: var(--ldh-surface);
  border: 1px solid var(--ldh-border);
  border-radius: var(--ldh-radius);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--ldh-shadow);
}
.ldh-price .ldh-amount { font-size: 2.4rem; font-weight: 700; color: var(--ldh-hibiscus-dark); }
.ldh-price--highlight { border-color: var(--ldh-soleil); box-shadow: 0 12px 34px rgba(217,111,139,.20); }

/* FAQ (accordéon Bootstrap, accents) */
.ldh-site .accordion-button:not(.collapsed) { background: #f7dee5; color: var(--ldh-hibiscus-dark); }
.ldh-site .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(223,166,74,.4); }

/* Pages légales / contenu long */
.ldh-prose { max-width: 760px; }
.ldh-prose h2 { font-size: 1.3rem; margin-top: 2rem; color: var(--ldh-encre); }
.ldh-prose h3 { font-size: 1.08rem; margin-top: 1.25rem; }
.ldh-placeholder { background: #fdf3e3; border: 1px dashed var(--ldh-soleil); border-radius: 8px; padding: .1rem .4rem; }

/* Bandeau cookies / RGPD */
.ldh-rgpd {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1030;
  max-width: 780px; margin: 0 auto;
  background: var(--ldh-surface); border: 1px solid var(--ldh-border);
  border-radius: 14px; box-shadow: 0 12px 34px rgba(93,64,82,.16);
  padding: .9rem 1.1rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.ldh-rgpd p { margin: 0; flex: 1 1 320px; font-size: .9rem; color: var(--ldh-text); }
.ldh-rgpd .btn { white-space: nowrap; }

.ldh-footer-site { background: var(--ldh-surface); border-top: 1px solid var(--ldh-border); }
.ldh-footer-site a { color: var(--ldh-feuillage); text-decoration: none; }
.ldh-footer-site a:hover { text-decoration: none; color: var(--ldh-hibiscus-dark); }

/* Sélecteur de créneaux (prise de RDV) */
.ldh-slots { display: flex; flex-direction: column; gap: 1rem; max-height: 60vh; overflow-y: auto; padding-right: .25rem; }
.ldh-slot-day { background: var(--ldh-surface); border: 1px solid var(--ldh-border); border-radius: var(--ldh-radius); padding: 1rem; }
.ldh-slot-daylabel { font-weight: 600; margin-bottom: .6rem; color: var(--ldh-encre); }
.ldh-slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: .5rem; }
.ldh-slot { position: relative; }
.ldh-slot input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.ldh-slot span {
  display: block; text-align: center; padding: .5rem .25rem;
  border: 1px solid var(--ldh-border); border-radius: 10px; cursor: pointer;
  font-variant-numeric: tabular-nums; transition: background .12s, border-color .12s;
}
.ldh-slot input:hover + span { border-color: var(--ldh-soleil); }
.ldh-slot input:checked + span { background: var(--ldh-hibiscus); border-color: var(--ldh-hibiscus); color: #fff; font-weight: 600; }
.ldh-slot input:focus-visible + span { outline: 2px solid var(--ldh-soleil); outline-offset: 2px; }

/* Barre de navigation basse (PWA espace consultant) */
.ldh-appbar {
  position: sticky; bottom: 0; z-index: 1020;
  display: flex; justify-content: space-around;
  background: var(--ldh-surface); border-top: 1px solid var(--ldh-border);
  padding: .35rem 0 calc(.35rem + env(safe-area-inset-bottom));
}
.ldh-appbar a {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  font-size: .72rem; color: var(--ldh-muted); text-decoration: none; padding: .25rem .75rem; border-radius: 10px;
}
.ldh-appbar a span { font-size: 1.3rem; line-height: 1; }
.ldh-appbar a.is-active { color: var(--ldh-hibiscus-dark); font-weight: 600; }

/* Messagerie (bulles) */
.ldh-chat { display: flex; flex-direction: column; gap: .5rem; }
.ldh-bulle { max-width: 78%; padding: .55rem .8rem; border-radius: 14px; line-height: 1.4; }
.ldh-bulle small { display: block; font-size: .72rem; opacity: .7; margin-top: .2rem; }
.ldh-bulle--moi { align-self: flex-end; background: var(--ldh-hibiscus); color: #fff; border-bottom-right-radius: 4px; }
.ldh-bulle--autre { align-self: flex-start; background: #fff; border: 1px solid var(--ldh-border); border-bottom-left-radius: 4px; }
.ldh-urgence { background: #fdf3e3; border: 1px solid var(--ldh-soleil); border-radius: 10px; padding: .6rem .9rem; font-size: .9rem; }

/* Humeur (journal) */
.ldh-humeur { font-size: 1.4rem; }

/* Citation éditoriale (pages vitrine) */
.ldh-quote {
  border-left: 3px solid var(--ldh-hibiscus);
  padding: .25rem 0 .25rem 1rem;
  font-size: 1.15rem; font-style: italic; color: var(--ldh-hibiscus-dark);
}

/* Étiquettes (motifs de consultation) */
.ldh-tags { padding-left: 0; }
.ldh-tag {
  background: #f7dee5; color: var(--ldh-hibiscus-dark);
  font-weight: 500; font-size: .85rem; padding: .4rem .8rem;
}

/* Bloc dépliable discret (aide installation) */
.ldh-details { border-top: 1px solid var(--ldh-border); padding-top: .75rem; }
.ldh-details > summary {
  cursor: pointer; font-size: .9rem; list-style: none;
}
.ldh-details > summary::-webkit-details-marker { display: none; }
.ldh-details > summary::before { content: "› "; color: var(--ldh-hibiscus); font-weight: 700; }
.ldh-details[open] > summary::before { content: "⌄ "; }

/* Calendrier FullCalendar — accents */
.fc .fc-button-primary { background: var(--ldh-hibiscus); border-color: var(--ldh-hibiscus); }
.fc .fc-button-primary:hover { background: var(--ldh-hibiscus-dark); border-color: var(--ldh-hibiscus-dark); }
.fc .fc-button-primary:not(:disabled).fc-button-active { background: var(--ldh-hibiscus-dark); border-color: var(--ldh-hibiscus-dark); }
.fc .fc-col-header-cell-cushion, .fc .fc-timegrid-axis-cushion { color: var(--ldh-text); }
.fc-event { cursor: grab; }
.fc-event:active { cursor: grabbing; }

/* =====================================================================
   Typographie « affiche » — calligraphie réservée aux titres, marqueurs
   de section et citations. Le corps de texte reste en sans-serif : sur
   les pages longues (approche, mentions), une écriture manuscrite
   intégrale devient fatigante et pénalise la lisibilité.
   ===================================================================== */
.ldh-site h1, .ldh-site h2, .ldh-site h3,
.ldh-site .h1, .ldh-site .h2, .ldh-site .h3, .ldh-site .h4,
.ldh-site .ldh-eyebrow, .ldh-site .ldh-quote,
.ldh-site .navbar-brand, .ldh-site .ldh-amount {
  font-family: "Petit Formal Script", "Segoe UI", system-ui, cursive;
  font-weight: 400;
  letter-spacing: .01em;
}
.ldh-site h1, .ldh-site .h1, .ldh-site h2, .ldh-site .h2,
.ldh-site h3, .ldh-site .h3 {
  color: var(--ldh-encre);
  line-height: 1.35;
}
.ldh-hero-site h1 { color: var(--ldh-encre); font-size: clamp(2.1rem, 4.8vw, 3.4rem); }
.ldh-site .navbar-brand { font-size: 1.35rem; }
.ldh-site .ldh-quote { font-style: normal; font-size: 1.3rem; }
.ldh-site .ldh-amount { font-size: 2.6rem; }
.ldh-site .btn { border-radius: 999px; }

/* Panneaux pastel alternés, comme les deux encarts de l'affiche */
.ldh-site .ldh-feature { border-color: #dbe7f0; }
.ldh-site .row > div:nth-child(even) .ldh-feature { background: #f4f8fb; }
.ldh-site .row > div:nth-child(odd) .ldh-feature { background: #fdf6f4; border-color: #f0dde2; }
.ldh-price--highlight { background: var(--ldh-pastel-rose); border-color: #f0cdd6; }
.ldh-tag { background: var(--ldh-pastel-bleu); color: var(--ldh-encre); }

/* =====================================================================
   Encart enfants « le dragon qui souffle le feu » — tout le cadre en
   Borel. Borel assoit ses glyphes bas dans le cadratin : interlignage
   généreux et compensations verticales sur le bouton.
   ===================================================================== */
.ldh-site .ldh-dragon-kids,
.ldh-site .ldh-dragon-kids p,
.ldh-site .ldh-dragon-kids strong,
.ldh-site .ldh-dragon-kids a {
  font-family: "Borel", "Segoe UI", system-ui, cursive;
}
.ldh-dragon-kids {
  line-height: 1.95;
  border: 2px dashed var(--ldh-soleil);
  border-radius: 16px;
  background: rgba(223, 166, 74, .08);
}
.ldh-dragon-titre { font-size: 1.2rem; color: var(--ldh-hibiscus-dark); }
.ldh-dragon-kids p:first-child { line-height: 1.6; }
.ldh-dragon-kids strong { font-weight: 400; color: var(--ldh-hibiscus-dark); }
.ldh-dragon-kids .btn { padding-top: .7rem; padding-bottom: .55rem; line-height: 1.5; }

/* Texte réservé aux lecteurs d'écran : nomme les commandes qui n'affichent
   qu'une icône (crayon de modification, etc.). */
.ldh-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Pastille de messages non lus sur la barre de navigation de la PWA */
.ldh-appbar-icone { position: relative; display: inline-block; }
.ldh-pastille {
  position: absolute; top: -.35rem; right: -.55rem;
  min-width: 1.15rem; padding: 0 .28rem;
  background: var(--ldh-hibiscus); color: #fff;
  border-radius: 999px;
  font-size: .68rem; font-weight: 700; line-height: 1.15rem;
  text-align: center;
  box-shadow: 0 0 0 2px var(--ldh-surface);
}
.ldh-pastille[hidden] { display: none; }
