/* ==========================================================================
   Pâtisserie Cappa Mariette — « Arcades Garibaldi »
   Palette : crème beurre, ocre des façades Garibaldi, brun chocolat,
   framboise gourmande, pistache discrète.
   ========================================================================== */

:root {
  --creme: #FAF3E7;
  --creme-2: #F1E4CE;
  --carte: #FFFBF2;
  --ocre: #C8722F;        /* graphique / gros titres seulement (3.2:1) */
  --ocre-texte: #9A5417;  /* petit texte, liens (5.2:1 sur crème) */
  --ocre-clair: #E8B080;  /* sur fond sombre (8.7:1) */
  --brun: #3E2A1E;        /* texte principal (12.2:1) */
  --brun-nuit: #2A1B12;   /* section contact sombre */
  --framboise: #B4304A;   /* accent gourmand (5.5:1 sur crème) */
  --framboise-fonce: #97243C;
  --pistache: #6E7D52;    /* décoratif */
  --or: #DFA320;          /* étoiles (décoratif) */
  --ombre: 0 18px 40px -18px rgba(62, 42, 30, .35);
  --radius-arche: 999px 999px 20px 20px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--brun);
  background: var(--creme);
  overflow-x: clip;
}

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

a { color: var(--ocre-texte); }

section[id], footer[id] { scroll-margin-top: 92px; }

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Typographie
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--brun);
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--framboise);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: .8;
}

.lead { font-size: 1.15rem; max-width: 58ch; }

.accent-italic {
  font-style: italic;
  font-weight: 450;
  color: var(--framboise);
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn svg { flex: none; }

.btn--primary {
  background: var(--framboise);
  color: var(--creme);
  box-shadow: 0 10px 24px -12px rgba(180, 48, 74, .8);
}

.btn--primary:hover { background: var(--framboise-fonce); transform: translateY(-2px); }

.btn--ghost {
  border-color: var(--brun);
  color: var(--brun);
  background: transparent;
}

.btn--ghost:hover { background: var(--brun); color: var(--creme); transform: translateY(-2px); }

.btn--light {
  border-color: var(--creme);
  color: var(--creme);
  background: transparent;
}

.btn--light:hover { background: var(--creme); color: var(--brun-nuit); transform: translateY(-2px); }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--framboise);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 243, 231, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(62, 42, 30, .1);
  transition: box-shadow .25s ease;
}

.header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(62, 42, 30, .4); }

.header-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: .7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--brun);
  margin-right: auto;
}

.brand svg, .brand img { width: 46px; height: 46px; flex: none; }

/* Le sélecteur de langue du panneau nav ne sert que sur mobile */
.nav .lang-switch { display: none; }

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name .brand-over {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ocre-texte);
}

.brand-name .brand-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  white-space: nowrap;
}

.nav-link {
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  color: var(--brun);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.nav-link:hover { color: var(--framboise); border-bottom-color: var(--framboise); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.lang-switch [aria-current] { color: var(--brun); }

.lang-switch a {
  color: var(--ocre-texte);
  text-decoration: none;
}

.lang-switch a:hover { color: var(--framboise); text-decoration: underline; }

.lang-switch .lang-sep { color: rgba(62, 42, 30, .4); }

.header-call {
  padding: .55rem 1.15rem;
  font-size: .95rem;
  white-space: nowrap;
}

.header-call .header-call-num { display: inline; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--brun);
  transition: transform .25s ease, opacity .2s ease;
}

.nav-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1150px) {
  .header-call .header-call-num { display: none; }
  .header-call { padding: .55rem .8rem; }
}

@media (max-width: 940px) {
  .burger { display: flex; }

  .header .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--creme);
    border-bottom: 1px solid rgba(62, 42, 30, .12);
    box-shadow: 0 24px 40px -20px rgba(62, 42, 30, .35);
    padding: 1rem 1.4rem 1.5rem;
  }

  .nav-open .header .nav { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: .3rem;
  }

  .nav-list li { width: 100%; }

  .nav-link {
    display: block;
    padding: .65rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(62, 42, 30, .08);
  }

  .nav .lang-switch { display: inline-flex; margin-top: 1rem; font-size: 1rem; }

  .header-bar > .lang-switch { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { position: relative; padding: 3.5rem 0 4.5rem; }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy > * + * { margin-top: 1.35rem; }

.hero h1 .accent-italic { display: block; font-size: .72em; margin-top: .18em; }

.badge-avis {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1rem;
  background: var(--carte);
  border: 1px solid rgba(200, 114, 47, .35);
  border-radius: 999px;
  text-decoration: none;
  color: var(--brun);
  font-weight: 700;
  font-size: .95rem;
  transition: transform .18s ease, box-shadow .18s ease;
}

.badge-avis:hover { transform: translateY(-2px); box-shadow: var(--ombre); }

.badge-avis .stars { display: inline-flex; gap: 2px; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ocre-texte);
  list-style: none;
}

.hero-notes li { display: inline-flex; align-items: center; gap: .45rem; }

.hero-notes svg { flex: none; }

.hero-media {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  width: 100%;
}

.arch-frame {
  position: relative;
  padding: 13px;
  border: 2px solid var(--ocre);
  border-radius: var(--radius-arche);
  background: transparent;
}

.arch-frame::before {
  content: "";
  position: absolute;
  inset: -22px -16px auto auto;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(200, 114, 47, .45);
  border-radius: 999px 999px 0 0;
  border-bottom: 0;
  z-index: -1;
}

.arch-photo {
  border-radius: var(--radius-arche);
  overflow: hidden;
  box-shadow: var(--ombre);
}

.arch-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 3.9;
  object-fit: cover;
}

.hero-echo {
  position: absolute;
  left: -64px;
  bottom: -36px;
  width: 168px;
  border: 6px solid var(--creme);
  border-radius: var(--radius-arche);
  overflow: hidden;
  box-shadow: var(--ombre);
  display: none;
}

.hero-echo img {
  width: 100%;
  height: auto; /* neutralise l'attribut height : sans ça la vignette fait 1600px de haut */
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
}

.hero-chip {
  position: absolute;
  right: -14px;
  bottom: 34px;
  background: var(--carte);
  border: 1px solid rgba(200, 114, 47, .35);
  padding: .5rem .95rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ocre-texte);
  box-shadow: var(--ombre);
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .hero-echo { display: block; }
}

/* --------------------------------------------------------------------------
   Colonnade — séparateur en arcature (signature)
   -------------------------------------------------------------------------- */

.colonnade {
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='46' viewBox='0 0 80 46'%3E%3Cpath d='M8 46V26C8 13 20 9 40 9s32 4 32 17v20' fill='none' stroke='%23C8722F' stroke-width='2' opacity='.4'/%3E%3Ccircle cx='40' cy='3.5' r='2.4' fill='%23B4304A' opacity='.45'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center bottom;
}

.colonnade--sombre { background-color: var(--brun-nuit); }

/* --------------------------------------------------------------------------
   Sections génériques
   -------------------------------------------------------------------------- */

.section { padding: 4.8rem 0; }

.section--alt { background: var(--creme-2); }

.section-head { max-width: 640px; margin-bottom: 2.8rem; }

.section-head > * + * { margin-top: .9rem; }

/* --------------------------------------------------------------------------
   La maison (histoire)
   -------------------------------------------------------------------------- */

.maison-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.maison-copy > * + * { margin-top: 1.1rem; }

.maison-media { max-width: 420px; margin-inline: auto; width: 100%; }

.milestones {
  display: grid;
  gap: 1.2rem;
  margin-top: 3.2rem;
  list-style: none;
}

.milestone {
  background: var(--carte);
  border: 1px solid rgba(200, 114, 47, .28);
  border-radius: 64px 64px 16px 16px;
  padding: 1.7rem 1.4rem 1.4rem;
  text-align: center;
}

.milestone strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ocre-texte);
  margin-bottom: .35rem;
}

.milestone span { font-size: .97rem; }

@media (min-width: 800px) {
  .maison-grid { grid-template-columns: .9fr 1.1fr; }
  .milestones { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   Nos douceurs
   -------------------------------------------------------------------------- */

.douceurs-grid {
  display: grid;
  gap: 1.4rem;
}

.douceur-card {
  position: relative;
  background: var(--carte);
  border: 1px solid rgba(62, 42, 30, .1);
  border-radius: 20px;
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: 0 8px 26px -20px rgba(62, 42, 30, .5);
  transition: transform .2s ease, box-shadow .2s ease;
}

.douceur-card:hover { transform: translateY(-5px); box-shadow: var(--ombre); }

.douceur-badge {
  position: absolute;
  top: -0.85rem;
  right: 1.1rem;
  background: var(--framboise);
  color: var(--creme);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 999px;
}

.douceur-niche {
  width: 84px;
  height: 92px;
  margin-bottom: 1.15rem;
  display: grid;
  place-items: center;
  background: var(--creme-2);
  border: 1.5px solid rgba(200, 114, 47, .4);
  border-radius: 999px 999px 12px 12px;
}

.section--alt .douceur-niche { background: var(--creme); }

.douceur-card h3 { margin-bottom: .5rem; }

.douceur-card p { font-size: .98rem; }

@media (min-width: 640px) { .douceurs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .douceurs-grid { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   Avis Google
   -------------------------------------------------------------------------- */

.avis-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.6rem;
}

.avis-head .section-head { margin-bottom: 0; }

.avis-cols {
  columns: 1;
  column-gap: 1.4rem;
}

.avis-card {
  break-inside: avoid;
  background: var(--carte);
  border: 1px solid rgba(62, 42, 30, .1);
  border-radius: 18px;
  padding: 1.5rem 1.45rem 1.3rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 26px -20px rgba(62, 42, 30, .5);
}

.avis-card .stars { display: inline-flex; gap: 3px; margin-bottom: .7rem; }

.avis-card blockquote {
  font-size: .99rem;
  border: 0;
}

.avis-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ocre-texte);
}

.avis-meta .g-logo { flex: none; }

.avis-meta time { font-weight: 400; color: rgba(62, 42, 30, .65); }

.avis-note-en {
  font-size: .9rem;
  color: rgba(62, 42, 30, .7);
  font-style: italic;
  margin-bottom: 1.6rem;
}

@media (min-width: 700px) { .avis-cols { columns: 2; } }
@media (min-width: 1060px) { .avis-cols { columns: 3; } }

/* --------------------------------------------------------------------------
   Galerie (teaser + page)
   -------------------------------------------------------------------------- */

.teaser-grid {
  display: grid;
  gap: 1.3rem;
  margin-bottom: 2.2rem;
}

.teaser-grid .arch-photo img { aspect-ratio: 3 / 3.6; }

@media (min-width: 700px) { .teaser-grid { grid-template-columns: repeat(3, 1fr); } }

.galerie-filtres {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 2.4rem;
}

.chip {
  border: 2px solid var(--brun);
  background: transparent;
  color: var(--brun);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 700;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}

.chip:hover { background: rgba(62, 42, 30, .08); }

.chip[aria-pressed="true"] {
  background: var(--brun);
  color: var(--creme);
}

.chip .chip-count { font-weight: 400; opacity: .75; }

.galerie-grid {
  columns: 3 300px;
  column-gap: 1.1rem;
}

.galerie-item {
  break-inside: avoid;
  position: relative;
  margin: 0 0 1.1rem;
}

.galerie-item[hidden] { display: none; }

.galerie-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--brun-nuit);
  cursor: zoom-in;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px -18px rgba(62, 42, 30, .55);
}

.galerie-btn img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease;
}

.galerie-btn:hover img, .galerie-btn:focus-visible img { transform: scale(1.045); }

.galerie-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem .95rem .75rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--creme);
  text-shadow: 0 1px 3px rgba(42, 27, 18, .6);
  background: linear-gradient(to top, rgba(42, 27, 18, .82), rgba(42, 27, 18, 0));
  border-radius: 0 0 16px 16px;
  pointer-events: none;
}

.page-hero { padding: 3.2rem 0 2.6rem; }

.page-hero > .container > * + * { margin-top: 1rem; }

.galerie-note {
  margin-top: 2.4rem;
  font-size: .9rem;
  font-style: italic;
  color: rgba(62, 42, 30, .65);
}

/* Lightbox */

.lightbox {
  margin: auto; /* le reset global écrase le margin:auto natif du dialog */
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(94vw, 1000px);
}

.lightbox::backdrop { background: rgba(42, 27, 18, .88); }

.lightbox-inner {
  position: relative;
  background: var(--creme);
  border-radius: 18px;
  overflow: hidden;
}

.lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: var(--brun-nuit);
}

.lightbox-caption {
  padding: .85rem 3.5rem .85rem 1.2rem;
  font-size: .95rem;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(250, 243, 231, .92);
  color: var(--brun);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--creme-2); }

.lightbox-close { top: .7rem; right: .7rem; }
.lightbox-prev { top: 50%; left: .7rem; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: .7rem; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   Venir nous voir
   -------------------------------------------------------------------------- */

.visite-grid {
  display: grid;
  gap: 2.6rem;
  align-items: start;
}

.visite-info > * + * { margin-top: 1.4rem; }

.visite-adresse {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.5;
}

.visite-adresse strong { font-family: var(--font-display); font-size: 1.2rem; }

.horaires {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--carte);
  border: 1px solid rgba(62, 42, 30, .12);
  border-radius: 16px;
  font-size: .98rem;
}

.horaires caption {
  text-align: left;
  font-weight: 700;
  padding: .1rem .95rem .6rem 2px;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ocre-texte);
  overflow: visible;
}

.horaires th, .horaires td {
  text-align: left;
  padding: .5rem .95rem;
  border-bottom: 1px solid rgba(62, 42, 30, .08);
}

.horaires tr:last-child th, .horaires tr:last-child td { border-bottom: 0; }

.horaires th { font-weight: 700; }

.horaires td { text-align: right; font-variant-numeric: tabular-nums; }

.horaires .ferme td { color: var(--framboise); font-weight: 700; }

.visite-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

.visite-media { max-width: 520px; width: 100%; margin-inline: auto; }

.visite-media .arch-photo img { aspect-ratio: 4 / 3.4; }

.visite-media figcaption {
  font-size: .9rem;
  color: rgba(62, 42, 30, .7);
  padding-top: .6rem;
  text-align: center;
}

@media (min-width: 900px) {
  .visite-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* --------------------------------------------------------------------------
   Contact sombre + footer
   -------------------------------------------------------------------------- */

.contact {
  background: var(--brun-nuit);
  color: var(--creme);
  padding: 5rem 0 3.2rem;
  text-align: center;
}

.contact .eyebrow { color: var(--ocre-clair); }

.contact h2 { color: var(--creme); }

.contact-tel {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 600;
  color: var(--creme);
  text-decoration: none;
  margin: 1.4rem 0 .6rem;
  transition: color .15s ease;
}

.contact-tel:hover { color: var(--ocre-clair); }

.contact-sub {
  max-width: 52ch;
  margin-inline: auto;
  color: rgba(250, 243, 231, .85);
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 2rem;
}

.contact-adresse {
  margin-top: 2.2rem;
  font-style: normal;
  color: var(--ocre-clair);
  font-weight: 700;
}

.footer {
  background: var(--brun-nuit);
  color: rgba(250, 243, 231, .8);
  padding: 2.2rem 0 5.5rem;
  font-size: .92rem;
}

.footer-inner {
  border-top: 1px solid rgba(250, 243, 231, .18);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer a { color: var(--ocre-clair); }

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.footer-brand-lockup svg { flex: none; }

.footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--creme);
}

.footer-nav .insta-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  list-style: none;
}

.footer-nav a { text-decoration: none; color: rgba(250, 243, 231, .8); }

.footer-nav a:hover { color: var(--creme); text-decoration: underline; }

/* --------------------------------------------------------------------------
   Bouton d'appel flottant
   -------------------------------------------------------------------------- */

.call-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--framboise);
  color: var(--creme);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(180, 48, 74, .75);
  transition: transform .18s ease, background-color .18s ease;
}

.call-fab:hover { transform: scale(1.07); background: var(--framboise-fonce); }

.call-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(180, 48, 74, .55);
  animation: fab-pulse 2.6s ease-out infinite;
}

@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 1; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Reveal au scroll (gaté par .js pour rester visible sans JavaScript)
   -------------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s 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; }

  .call-fab::after { animation: none; }

  .btn, .badge-avis, .douceur-card, .galerie-btn, .call-fab { transition: none; }
}
