/* =========================================================
   Clélia Sellier — Ostéopathe Nanteuil-le-Haudouin
   Charte : crème + vert foncé (actions) + mauve/violet (accents)
   + touches terracotta + feuillages violets au trait.
   ========================================================= */

:root {
  /* Fonds */
  --cream: #F7F3EC;
  --cream-2: #F1E9DB;
  --peach: #F8E7DA;
  --lavender: #EFE7F4;
  --sagebg: #E6EDE1;
  --white: #FFFFFF;

  /* Vert (couleur d'action, boutons) */
  --green: #5C6A4E;
  --green-dark: #464F3A;
  --green-soft: #E9EDE3;

  /* Mauve / violet (accents, titres italiques, fleurs) */
  --mauve: #9A83AC;
  --mauve-deep: #7B6690;
  --mauve-soft: #F0EAF5;

  /* Terracotta (petit accent : filets, puces) */
  --terra: #CC7B57;

  /* Texte */
  --head: #3C372F;
  --ink: #4C463E;
  --ink-soft: #726A5D;

  --gold: #C58F4F;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 12px 34px rgba(60, 55, 47, 0.08);
  --shadow-lift: 0 20px 48px rgba(123, 102, 144, 0.16);
  --font-head: "Cormorant Garamond", Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0 0 .4em; color: var(--head); letter-spacing: .01em; }
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
em, .accent { font-style: italic; color: var(--mauve); font-weight: 500; }
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { padding-left: 1.15em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 76px 0; position: relative; overflow: hidden; }

/* Fonds de section */
.bg-peach { background: var(--peach); }
.bg-lavender { background: var(--lavender); }
.bg-sage { background: var(--sagebg); }
.bg-cream2 { background: var(--cream-2); }

/* Eyebrow + filet terracotta */
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mauve);
  font-weight: 700;
  margin-bottom: 14px;
}
.divider { width: 64px; height: 3px; background: var(--terra); border-radius: 3px; margin: 6px 0 24px; }
.divider.center { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .divider { margin-left: auto; margin-right: auto; }

/* ===== Feuillages / fleurs violettes (décor) ===== */
.botanical { position: absolute; color: var(--mauve); opacity: .45; pointer-events: none; z-index: 0; }
.botanical svg { display: block; width: 100%; height: 100%; }
section > .container { position: relative; z-index: 1; }

/* ===== Boutons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  white-space: nowrap; font-family: var(--font-body);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 26px rgba(70,79,58,.28); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-mauve { background: var(--mauve); color: #fff; box-shadow: 0 12px 26px rgba(123,102,144,.26); }
.btn-mauve:hover { background: var(--mauve-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--mauve); color: var(--mauve-deep); }
.btn-outline:hover { background: var(--mauve-soft); }
.btn-ghost { background: #fff; color: var(--green-dark); box-shadow: var(--shadow); }
.btn-ghost:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(123,102,144,.10);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; max-width: var(--maxw); margin: 0 auto; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .brand-mark { flex-shrink: 0; color: var(--mauve); }
.brand-word { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--head); line-height: .9; }
.brand-word span { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-top: 4px; }
.main-nav { display: none; }
.main-nav ul { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; }
.main-nav a { font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--head); position: relative; padding-bottom: 4px; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--mauve); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.main-nav a:hover { color: var(--mauve-deep); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--mauve-deep); }
.header-cta { display: none; align-items: center; gap: 12px; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(123,102,144,.22); background: #fff; flex-direction: column; gap: 4px; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; background: var(--head); }
.mobile-nav { display: none; flex-direction: column; gap: 2px; background: #fff; border-top: 1px solid rgba(123,102,144,.1); padding: 8px 24px 16px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid rgba(123,102,144,.08); }
.header-social { display: none; gap: 12px; align-items: center; }
.header-social a { color: var(--mauve); display: inline-flex; }

/* ===== Hero ===== */
.hero { padding: 60px 0 72px; background:
  radial-gradient(760px 420px at 92% 4%, var(--mauve-soft), transparent 62%),
  radial-gradient(680px 380px at -4% 90%, var(--peach), transparent 60%); }
.hero-inner { max-width: 640px; position: relative; z-index: 1; }
.hero h1 { font-size: 3.1rem; margin-bottom: .1em; }
.hero .subline { font-size: 1.05rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mauve); font-weight: 600; margin: 8px 0 0; }
.hero-lead { font-size: 1.12rem; max-width: 44ch; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ===== Rangée "features" (4 colonnes) ===== */
.features { display: grid; grid-template-columns: 1fr; gap: 24px; }
.feature { text-align: center; padding: 8px; }
.feature .f-ic { width: 54px; height: 54px; margin: 0 auto 12px; color: var(--mauve); }
.feature h3 { font-size: 1.3rem; margin-bottom: 6px; }
.feature p { font-size: .95rem; margin: 0; }
.feature .hl { color: var(--mauve); font-weight: 700; }
@media (min-width: 720px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .features { grid-template-columns: repeat(4, 1fr); } }

/* ===== Split (image + texte) ===== */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.split.rev .split-media { order: -1; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split.rev .split-media { order: 0; }
}

/* Cadre photo / placeholder */
.photo-frame { position: relative; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; background: linear-gradient(150deg, var(--mauve-soft), var(--peach)); aspect-ratio: 4/3; }
.photo-frame.tall { aspect-ratio: 4/5; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px; color: var(--mauve-deep); }
.photo-frame .ph span { font-size: .82rem; font-weight: 700; opacity: .8; }

.pill-list { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 13px; }
.pill-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 600; }
.pill-list li::before { content: ""; flex-shrink: 0; margin-top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--terra); }

/* ===== Profils (cartes avec icône mauve) ===== */
.profiles { display: grid; grid-template-columns: 1fr; gap: 22px; }
.profile { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; border: 1px solid rgba(123,102,144,.07); }
.profile .p-ic { width: 58px; height: 58px; border-radius: 50%; background: var(--mauve-soft); color: var(--mauve-deep); display: flex; align-items: center; justify-content: center; }
.profile .p-ic svg { width: 32px; height: 32px; }
.profile h3 { font-size: 1.4rem; margin: 4px 0 2px; }
@media (min-width: 640px) { .profile h2 { min-height: 2.4em; } }
.profile ul { margin: 4px 0 8px; padding-left: 1.05em; }
.profile li { color: var(--ink-soft); font-size: .93rem; margin-bottom: 4px; }
.profile ul { flex: 1; }
.profile .p-cap { margin-top: 14px; font-style: italic; color: var(--mauve); font-size: .92rem; }
@media (min-width: 640px) { .profile .p-cap { min-height: 5em; } }
@media (min-width: 640px) { .profiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .profiles.five { grid-template-columns: repeat(5, 1fr); } .profiles.three { grid-template-columns: repeat(3, 1fr); } }

/* ===== Cartes "pour qui" compactes (icônes) ===== */
.icon-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.icon-card { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 24px 16px; text-align: center; color: var(--mauve-deep); font-weight: 700; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.icon-card svg { width: 46px; height: 46px; margin: 0 auto 10px; color: var(--mauve); }
.icon-card small { display: block; color: var(--ink-soft); font-weight: 400; font-size: .82rem; margin-top: 4px; }
@media (min-width: 860px) { .icon-cards { grid-template-columns: repeat(4, 1fr); } }

/* ===== Soins complémentaires ===== */
.care-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.care { position: relative; background: #fff; border: 1px solid rgba(123,102,144,.14); border-top: 4px solid var(--mauve); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); }
.care h3 { font-size: 1.5rem; margin-bottom: 2px; }
.care .c-sub { font-style: italic; color: var(--mauve); margin-bottom: 12px; }
.care .c-for { font-weight: 700; color: var(--head); margin-bottom: 6px; }
.care ul { list-style: none; padding: 0; margin: 0; }
.care li { color: var(--ink-soft); padding-left: 16px; position: relative; margin-bottom: 5px; font-size: .95rem; }
.care li::before { content: "–"; position: absolute; left: 0; color: var(--terra); }
@media (min-width: 800px) { .care-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Tarifs ===== */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
.price-card { border-radius: var(--radius); padding: 30px 26px; text-align: center; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.price-card.p-lav { background: var(--lavender); }
.price-card.p-sage { background: var(--sagebg); }
.price-card h3 { font-size: 1.6rem; }
.price-card .p-desc { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.price-card .p-tag { margin-top: 18px; align-self: center; background: var(--green); color: #fff; font-weight: 700; padding: 12px 22px; border-radius: 999px; }
@media (min-width: 720px) { .price-grid { grid-template-columns: 1fr 1fr; } }

/* Bloc infos (accessibilité/honoraires) */
.info-cols { display: grid; grid-template-columns: 1fr; gap: 22px; }
.info-cols h3 { color: var(--mauve-deep); font-style: italic; font-size: 1.3rem; }
.info-cols ul { padding-left: 1.1em; }
.info-cols li { color: var(--ink-soft); margin-bottom: 6px; }
@media (min-width: 760px) { .info-cols { grid-template-columns: repeat(3, 1fr); } }

/* Bandeau réassurance (RDV) */
.reassure { display: grid; grid-template-columns: 1fr; gap: 18px; background: var(--peach); border-radius: var(--radius); padding: 26px; }
.reassure .r-item { display: flex; gap: 12px; align-items: center; color: var(--head); font-weight: 600; font-size: .95rem; }
.reassure svg { width: 30px; height: 30px; color: var(--mauve-deep); flex-shrink: 0; }
@media (min-width: 760px) { .reassure { grid-template-columns: repeat(4, 1fr); } }

/* ===== Timeline (parcours) ===== */
.tl-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
.tl-card { background: var(--mauve-soft); border-radius: var(--radius); padding: 26px 24px; position: relative; overflow: hidden; }
.tl-card h3 { font-size: 1.6rem; text-align: center; color: var(--mauve-deep); margin-bottom: 16px; }
.tl-card ul { list-style: none; padding: 0; margin: 0; }
.tl-card li { color: var(--ink); font-size: .92rem; margin-bottom: 12px; padding-left: 2px; }
.tl-card li b { color: var(--head); }
@media (min-width: 860px) { .tl-cards { grid-template-columns: repeat(3, 1fr); } }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; border: 1px solid rgba(123,102,144,.07); }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--head); display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; }
.faq-q .plus { flex-shrink: 0; font-size: 1.3rem; color: var(--mauve); transition: transform .2s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; padding: 0 22px; }
.faq-a p { padding-bottom: 18px; margin: 0; }
.faq-item.open .faq-a { max-height: 480px; }

/* ===== Citation ===== */
.quote { background: var(--green); color: #fff; border-radius: var(--radius); padding: 50px 36px; text-align: center; position: relative; overflow: hidden; }
.quote .mark { font-family: var(--font-head); font-size: 3rem; line-height: .5; color: rgba(255,255,255,.4); }
.quote blockquote { margin: 10px auto 0; max-width: 66ch; font-family: var(--font-head); font-size: 1.5rem; font-style: italic; line-height: 1.45; color: #fff; }
.quote figcaption { margin-top: 18px; font-size: .9rem; color: rgba(255,255,255,.8); font-style: normal; }
.quote .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 10px; font-style: normal; }

/* ===== Approche perso (bloc 2 tons) ===== */
.duo { display: grid; grid-template-columns: 1fr; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.duo > div { padding: 34px 30px; }
.duo .d-peach { background: var(--peach); }
.duo .d-lav { background: var(--lavender); display: flex; align-items: center; }
.duo .d-lav blockquote { margin: 0; font-family: var(--font-head); font-style: italic; font-size: 1.3rem; color: var(--head); }
@media (min-width: 800px) { .duo { grid-template-columns: 1fr 1fr; } }

/* ===== Blog ===== */
.post-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.post-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(123,102,144,.07); transition: transform .16s ease, box-shadow .16s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.post-card .p-top { height: 90px; background: linear-gradient(120deg, var(--mauve-soft), var(--peach)); position: relative; }
.post-card .p-top .botanical { opacity: .6; inset: 0; }
.post-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-tag { align-self: flex-start; background: var(--mauve-soft); color: var(--mauve-deep); font-weight: 700; font-size: .74rem; letter-spacing: .04em; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; }
.post-card h3 { font-size: 1.3rem; margin: 0; }
.post-card p { font-size: .94rem; margin: 0; }
.post-card .card-link { margin-top: auto; font-weight: 700; color: var(--mauve-deep); font-size: .92rem; }
@media (min-width: 680px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Article ===== */
.article { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 1.7rem; margin-top: 1.5em; }
.article-body h3 { font-size: 1.25rem; margin-top: 1.2em; color: var(--mauve-deep); }
.article-body p, .article-body li { color: var(--ink); }
.article-body strong { color: var(--head); }
.article-cta { background: var(--mauve-soft); border-radius: var(--radius); padding: 26px; margin-top: 34px; text-align: center; }

/* ===== Crosslinks ===== */
.crosslinks { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 8px; }
.crosslink { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 18px 20px; font-weight: 700; color: var(--green-dark); display: flex; justify-content: space-between; align-items: center; gap: 10px; transition: transform .15s ease; }
.crosslink:hover { transform: translateX(4px); }
.crosslink small { display: block; font-weight: 400; color: var(--ink-soft); margin-top: 2px; }
@media (min-width: 640px) { .crosslinks { grid-template-columns: repeat(3, 1fr); } }

/* ===== CTA finale ===== */
.cta-final { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; text-align: center; border-radius: var(--radius); padding: 56px 28px; margin: 0 24px; position: relative; overflow: hidden; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,.86); max-width: 56ch; margin: 0 auto 8px; }

/* ===== Prose / pages ===== */
.breadcrumb { font-size: .82rem; color: var(--ink-soft); padding: 18px 0 0; }
.breadcrumb a { color: var(--mauve-deep); font-weight: 600; }
.breadcrumb span { margin: 0 6px; }
.page-hero { padding: 30px 0 12px; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.5em; }
.prose h3 { margin-top: 1.2em; color: var(--mauve-deep); }
.prose p, .prose li { color: var(--ink); }
.prose strong { color: var(--head); }
.legal { max-width: 760px; }
.legal h2 { font-size: 1.4rem; margin-top: 1.6em; }
.note-band { font-size: .9rem; color: var(--ink-soft); font-style: italic; border-left: 3px solid var(--mauve); padding: 6px 0 6px 16px; margin-top: 24px; max-width: 760px; }
.service-chip { display: inline-block; background: var(--mauve-soft); border: 1px solid #DDD0E6; color: var(--mauve-deep); font-weight: 700; padding: 9px 18px; border-radius: 999px; font-size: .92rem; margin: 4px 6px 4px 0; }

/* ===== Footer ===== */
.site-footer { background: var(--cream-2); color: var(--ink-soft); padding: 56px 0 100px; border-top: 1px solid rgba(123,102,144,.12); position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; position: relative; z-index: 1; }
.footer-grid h4 { color: var(--head); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a:hover { color: var(--mauve-deep); }
.footer-hours { display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; font-size: .92rem; margin-top: 10px; }
.footer-hours b { color: var(--head); font-weight: 600; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--mauve-soft); color: var(--mauve-deep); display: flex; align-items: center; justify-content: center; transition: transform .18s ease, background .18s ease; }
.footer-social a:hover { transform: translateY(-3px); background: var(--mauve); color: #fff; }
.map-embed { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 200px; border: 0; display: block; }
.footer-bottom { border-top: 1px solid rgba(123,102,144,.14); margin-top: 34px; padding-top: 20px; font-size: .82rem; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; position: relative; z-index: 1; }
.footer-links a { margin-right: 14px; }

/* ===== Barre CTA mobile ===== */
.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; display: flex; gap: 10px; padding: 10px 14px; background: #fff; box-shadow: 0 -8px 24px rgba(0,0,0,.12); }
.mobile-cta-bar .btn { flex: 1; padding: 14px; font-size: .92rem; }
.mobile-cta-bar .btn-call { background: var(--mauve-soft); color: var(--mauve-deep); }

/* ===== Responsive nav ===== */
@media (min-width: 1040px) {
  .main-nav { display: block; }
  .header-cta { display: flex; }
  .header-social { display: flex; }
  .nav-toggle { display: none; }
  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
}
@media (max-width: 1039px) { body { padding-bottom: 78px; } }

@media (min-width: 860px) {
  section { padding: 100px 0; }
  .split.wide { grid-template-columns: 1.05fr .95fr; }
  .footer-grid { grid-template-columns: 1.1fr 1fr 1fr 1.2fr; }
  h1 { font-size: 3.2rem; }
}

/* ===== Animations ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.profile, .icon-card, .care, .price-card, .post-card, .feature { transition: transform .18s ease, box-shadow .18s ease; }
.profile:hover, .icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.feature:hover .f-ic { transform: scale(1.1) rotate(-4deg); }
.f-ic { transition: transform .25s ease; }
.photo-frame img { transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.photo-frame:hover img { transform: scale(1.03); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ===== Décor floral discret, parsemé sur l'ensemble du site =====
   Motifs violets en filigrane dans les coins des sections. Faible opacité,
   derrière le contenu (z-index 0), sans gêner la lecture. */
.bg-peach, .bg-lavender, .bg-sage, .bg-cream2, .page-hero, .hero { position: relative; }
.bg-peach::before, .bg-sage::before,
.bg-lavender::after, .bg-cream2::after,
.page-hero::after, .hero::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  background-repeat: no-repeat; background-position: center; background-size: contain;
}
.bg-peach::before   { top: -12px; left: -16px; width: 120px; height: 200px; opacity: .15; transform: rotate(-12deg); background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%20200'%20fill='none'%20stroke='%239A83AC'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M60%20198C58%20150%2058%20110%2062%2066'/%3E%3Cpath%20d='M60%20150c-18-2-30-16-32-34%2018%201%2031%2015%2032%2034Z'/%3E%3Cpath%20d='M63%20124c18-4%2028-20%2028-38-17%203-27%2018-28%2038Z'/%3E%3Ccircle%20cx='62'%20cy='54'%20r='5'%20fill='%239A83AC'/%3E%3Ccircle%20cx='52'%20cy='60'%20r='4'%20fill='%239A83AC'/%3E%3Ccircle%20cx='72'%20cy='60'%20r='4'%20fill='%239A83AC'/%3E%3C/svg%3E"); }
.bg-sage::before    { top: -8px; right: -8px; width: 110px; height: 180px; opacity: .14; transform: rotate(14deg); background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%20200'%20fill='none'%20stroke='%239A83AC'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M60%20198C58%20150%2058%20110%2062%2066'/%3E%3Cpath%20d='M60%20150c-18-2-30-16-32-34%2018%201%2031%2015%2032%2034Z'/%3E%3Cpath%20d='M63%20124c18-4%2028-20%2028-38-17%203-27%2018-28%2038Z'/%3E%3Ccircle%20cx='62'%20cy='54'%20r='5'%20fill='%239A83AC'/%3E%3Ccircle%20cx='52'%20cy='60'%20r='4'%20fill='%239A83AC'/%3E%3Ccircle%20cx='72'%20cy='60'%20r='4'%20fill='%239A83AC'/%3E%3C/svg%3E"); }
.bg-lavender::after { bottom: -16px; right: -12px; width: 128px; height: 210px; opacity: .15; transform: rotate(10deg); background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%20220'%20fill='none'%20stroke='%239A83AC'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M60%20218C58%20160%2058%20110%2066%2056'/%3E%3Cpath%20d='M60%20176c-20-2-32-18-34-38%2020%201%2033%2016%2034%2038Z'/%3E%3Cpath%20d='M64%20150c20-4%2030-22%2030-42-19%203-30%2020-30%2042Z'/%3E%3Cpath%20d='M61%20120c-18-4-28-20-28-38%2018%203%2028%2018%2028%2038Z'/%3E%3C/svg%3E"); }
.bg-cream2::after   { bottom: -14px; left: -14px; width: 120px; height: 200px; opacity: .13; transform: rotate(-8deg); background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%20220'%20fill='none'%20stroke='%239A83AC'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M60%20218C58%20160%2058%20110%2066%2056'/%3E%3Cpath%20d='M60%20176c-20-2-32-18-34-38%2020%201%2033%2016%2034%2038Z'/%3E%3Cpath%20d='M64%20150c20-4%2030-22%2030-42-19%203-30%2020-30%2042Z'/%3E%3Cpath%20d='M61%20120c-18-4-28-20-28-38%2018%203%2028%2018%2028%2038Z'/%3E%3C/svg%3E"); }
.page-hero::after   { top: 4px; right: -6px; width: 96px; height: 165px; opacity: .12; transform: rotate(9deg); background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%20200'%20fill='none'%20stroke='%239A83AC'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M60%20198C58%20150%2058%20110%2062%2066'/%3E%3Cpath%20d='M60%20150c-18-2-30-16-32-34%2018%201%2031%2015%2032%2034Z'/%3E%3Cpath%20d='M63%20124c18-4%2028-20%2028-38-17%203-27%2018-28%2038Z'/%3E%3Ccircle%20cx='62'%20cy='54'%20r='5'%20fill='%239A83AC'/%3E%3Ccircle%20cx='52'%20cy='60'%20r='4'%20fill='%239A83AC'/%3E%3Ccircle%20cx='72'%20cy='60'%20r='4'%20fill='%239A83AC'/%3E%3C/svg%3E"); }
.hero::after        { top: 12px; right: -4px; width: 108px; height: 178px; opacity: .14; transform: rotate(11deg); background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%20220'%20fill='none'%20stroke='%239A83AC'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M60%20218C58%20160%2058%20110%2066%2056'/%3E%3Cpath%20d='M60%20176c-20-2-32-18-34-38%2020%201%2033%2016%2034%2038Z'/%3E%3Cpath%20d='M64%20150c20-4%2030-22%2030-42-19%203-30%2020-30%2042Z'/%3E%3Cpath%20d='M61%20120c-18-4-28-20-28-38%2018%203%2028%2018%2028%2038Z'/%3E%3C/svg%3E"); }
@media (max-width: 640px) {
  .bg-peach::before, .bg-sage::before, .bg-lavender::after,
  .bg-cream2::after, .page-hero::after, .hero::after { width: 76px; height: 126px; opacity: .10; }
}

/* ===== Galerie photos + badge logo ===== */
.gallery { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 10px; }
.gallery .photo-frame { aspect-ratio: 4/3; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.about-logo { width: 140px; height: 140px; border-radius: 50%; object-fit: contain; background: #91B29D; padding: 12px; box-shadow: var(--shadow); margin-bottom: 16px; }
