/* ===================================================================
   ROSELINE MÉDIUM — Style principal
   Palette : Rose #c8187a | Bleu #1565c0 | Or #d4af37 | Fond blanc
   =================================================================== */
:root {
  --rose:        #c8187a;
  --rose-light:  #f9e6f2;
  --rose-dark:   #a01260;
  --bleu:        #1565c0;
  --bleu-light:  #e3f0ff;
  --gold:        #d4af37;
  --bg:          #ffffff;
  --bg-soft:     #fdfafc;
  --text:        #2c2c2c;
  --muted:       #5f5f5f;
  --card:        #ffffff;
  --border:      rgba(200,24,122,.30);
  --border-gold: rgba(212,175,55,.40);
  --shadow:      0 10px 30px rgba(44,44,44,.09);
  --shadow-soft: 0 6px 16px rgba(200,24,122,.06), 0 14px 36px rgba(44,44,44,.08);
  --shadow-rose: 0 5px 12px rgba(200,24,122,.22), 0 12px 28px rgba(200,24,122,.15);
  --shadow-rose-hover: 0 7px 16px rgba(200,24,122,.30), 0 16px 34px rgba(200,24,122,.22);
  --shadow-bleu: 0 6px 14px rgba(21,101,192,.28), 0 14px 30px rgba(21,101,192,.20);
  --img-shadow:  0 4px 10px rgba(44,44,44,.10), 0 10px 24px rgba(44,44,44,.07);
  --serif:       Georgia,"Times New Roman",Times,serif;
  --cta-height:  3rem;
  --cta-radius:  12px;
  --radius:      14px;
  --maxw:        1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--maxw), 92vw); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #000; color: #fff;
  padding: 0.65rem 0.9rem; z-index: 10000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 5000;
  border-bottom: 2px solid rgba(200,24,122,.30);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 8px rgba(200,24,122,.08);
}

.topline {
  font-size: .82rem; color: var(--muted);
  border-bottom: 1px solid rgba(200,24,122,.18);
  background: var(--rose-light);
}
.topline .container {
  display: block; text-align: center;
  min-height: 2rem; padding: .3rem 0;
}
.topline .container span {
  display: block; width: 100%; text-align: center; font-weight: 600;
}

.nav-wrap {
  min-height: 4.2rem;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; padding: .55rem 0;
  position: relative; z-index: 7000;
}

/* Logo image */
.brand-logo { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo img { height: 56px; width: auto; border: none; box-shadow: none; border-radius: 0; }

/* Fallback texte si logo absent */
.brand .brand-name {
  margin: 0;
  font-size: clamp(1.02rem,2.6vw,1.38rem);
  line-height: 1.2;
  color: var(--rose);
  font-family: var(--serif);
}
.brand p { margin: .18rem 0 0; color: var(--muted); font-size: .86rem; }

/* ── Navigation desktop ── */
.nav { display: none; }
/* UNIQUEMENT l'ul direct (pas le .submenu imbriqué) */
.nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .1rem; flex-wrap: nowrap; }
.nav > ul > li > a {
  display: block; padding: .4rem .55rem;
  font-size: .84rem; font-weight: 600; color: var(--text);
  border-radius: 8px; transition: background .18s, color .18s; white-space: nowrap;
}
.nav > ul > li > a:hover, .nav > ul > li > a.active {
  background: var(--rose-light); color: var(--rose);
}

/* Dropdown submenu */
.menu-has-children { position: relative; }
.dropdown-toggle {
  display: flex; align-items: center; gap: .2rem;
  background: none; border: none; cursor: pointer;
  padding: .4rem .55rem; font-size: .84rem; font-weight: 600;
  color: var(--text); border-radius: 8px; font-family: inherit;
  transition: background .18s, color .18s; white-space: nowrap;
}
.dropdown-toggle:hover { background: var(--rose-light); color: var(--rose); }
.submenu {
  display: none; position: absolute; top: 100%; right: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(44,44,44,.14);
  min-width: 220px; padding: .35rem 0; z-index: 9000;
}
.submenu li a {
  display: block; padding: .55rem 1.1rem;
  font-size: .88rem; font-weight: 500; color: var(--text);
  border-radius: 0; transition: background .15s;
}
.submenu li a:hover { background: var(--rose-light); color: var(--rose); }
.menu-has-children.open > .submenu { display: block; }

/* Menu toggle (mobile) */
.menu-toggle {
  display: flex; align-items: center; gap: .4rem;
  background: none; border: 1.5px solid var(--border);
  border-radius: 8px; padding: .45rem .75rem;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  color: var(--rose); font-family: inherit;
}
.menu-toggle:hover { background: var(--rose-light); }

/* Mobile nav overlay */
@media (max-width: 899px) {
  .nav.open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(44,44,44,.12);
    z-index: 6000; padding: .5rem 0;
  }
  .nav.open > ul { flex-direction: column; gap: 0; padding: 0 .75rem; flex-wrap: wrap; }
  .nav.open > ul > li > a { padding: .7rem .6rem; font-size: .95rem; border-bottom: 1px solid rgba(200,24,122,.08); white-space: normal; }
  .nav.open .submenu { position: static; box-shadow: none; border: none; background: var(--rose-light); border-radius: 8px; padding: .2rem 0; margin: .25rem 0; }
  .nav.open .dropdown-toggle { width: 100%; padding: .7rem .6rem; border-bottom: 1px solid rgba(200,24,122,.08); white-space: normal; }
}
@media (min-width: 900px) {
  .nav { display: block !important; }
  .menu-toggle { display: none; }
}

/* ── Urgent bar ── */
.urgent-bar {
  border-top: 1px solid rgba(200,24,122,.18);
  border-bottom: 1px solid rgba(200,24,122,.20);
  background: #fff; padding: .5rem 0;
}
.urgent-actions { display: grid; grid-template-columns: 1fr; gap: 5px; }
@media (min-width: 560px) { .urgent-actions { grid-template-columns: repeat(2,minmax(0,1fr)); } }

.urgent-btn {
  display: inline-flex; justify-content: center; align-items: center;
  text-align: center; min-height: 3rem; padding: .3rem .45rem;
  border-radius: 12px; border: 1px solid transparent;
  font-weight: 800; font-size: clamp(.78rem,2.7vw,.96rem); white-space: nowrap;
  cursor: pointer; transition: filter .18s, transform .1s;
}
.urgent-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.urgent-btn.audiotel { background: linear-gradient(135deg,#fce4f1,#f09ec4); color: #6b0038; border-color: rgba(200,24,122,.3); }
.urgent-btn.prive    { background: linear-gradient(135deg,#1a4fa0,var(--bleu)); color: #fff; }

/* Pulse */
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,24,122,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(200,24,122,0); }
}
.pulse { animation: pulse 2.4s ease infinite; }

/* ── Sections hero ── */
.hero { padding: 2.8rem 0 2.3rem; background: var(--bg); }
.hero-copy { text-align: center; max-width: 900px; margin-inline: auto; }
.hero-title-wrap { display: flex; align-items: flex-start; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.hero h1 {
  margin: .62rem 0; line-height: 1.16;
  font-size: clamp(1.28rem,5.6vw,2.2rem);
  color: var(--rose); font-family: var(--serif);
}
.hero h2 { font-size: clamp(1rem,3.2vw,1.5rem); color: var(--bleu); font-family: var(--serif); }
.hero h3 { margin: .2rem 0 1rem; font-size: clamp(.96rem,3.9vw,1.35rem); line-height: 1.3; color: var(--muted); }
.hero-avatar {
  width: 70px; height: 70px; object-fit: cover;
  border: 2px solid var(--rose); border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(200,24,122,.15);
}
.eyebrow {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--rose); margin-bottom: .4rem;
}

/* ── CTA buttons ── */
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-top: 1.2rem; }
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--cta-height); padding: .55rem 1.6rem;
  border-radius: var(--cta-radius); font-weight: 800;
  font-size: clamp(.88rem,3vw,1.04rem); transition: filter .18s, transform .1s;
  border: 1.5px solid transparent;
}
.cta:hover { filter: brightness(1.06); transform: translateY(-2px); }
.cta.primary {
  background: linear-gradient(135deg,#e8418c,#c8187a);
  color: #fff; box-shadow: var(--shadow-rose);
}
.cta.secondary {
  background: linear-gradient(135deg,#1e6bbf,var(--bleu));
  color: #fff; box-shadow: var(--shadow-bleu);
}
.cta.outline {
  background: transparent; color: var(--rose);
  border-color: var(--rose);
}

/* Phone buttons */
.phone-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 3rem; border-radius: 12px;
  font-size: clamp(1.06rem,3.8vw,1.28rem); font-weight: 900;
  background: linear-gradient(135deg,#e8418c,#c8187a); color: #fff;
  box-shadow: var(--shadow-rose); transition: filter .18s;
  margin: .5rem 0;
}
.phone-btn:hover { filter: brightness(1.08); }
.phone-btn.bleu {
  background: linear-gradient(135deg,#1e6bbf,var(--bleu));
  box-shadow: var(--shadow-bleu);
}
.planning-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 2.5rem; padding: .4rem .8rem;
  border-radius: 10px; font-size: .9rem; font-weight: 700;
  background: var(--rose-light); color: var(--rose);
  border: 1px solid rgba(200,24,122,.3);
  transition: background .15s;
  margin: .3rem 0;
}
.planning-btn:hover { background: #f2c5df; }

/* ── Cards grid ── */
.grid { display: grid; gap: 1.5rem; }
.cards { grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .cards { grid-template-columns: repeat(3,1fr); } }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: var(--shadow-rose); transform: translateY(-3px); }
.card h2, .card h3 { color: var(--rose); font-family: var(--serif); margin-top: 0; }

.media-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .media-grid { grid-template-columns: 1fr 1fr; } }

.banner {
  background: linear-gradient(135deg, #fdf0f7 0%, #f3e8ff 100%);
  border: 1px solid rgba(200,24,122,.25);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.banner h2, .banner h3 { color: var(--rose); font-family: var(--serif); }

/* ── Section titles ── */
.section-title {
  font-size: clamp(1.2rem,4.5vw,1.7rem);
  color: var(--rose); font-family: var(--serif);
  border-bottom: 2px solid rgba(200,24,122,.25);
  padding-bottom: .5rem; margin-bottom: 1.2rem;
}
section { padding: 1.5rem 0; }

/* ── Planning Vocadia iframe ── */
.planning-embed { padding: 1rem 0 2.5rem; }
.iframe-shell {
  width: min(100%,860px); margin: 0 auto; padding: .5rem;
  background: #fff; border: 1px solid rgba(200,24,122,.30);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(44,44,44,.10), 0 16px 34px rgba(44,44,44,.08);
}
.planning-iframe {
  width: 100%; border: none; display: block;
  margin: 0 auto; min-height: 600px; height: 80vh;
  max-width: 860px; border-radius: 10px;
}
@media (max-width: 600px) {
  .iframe-shell { padding: 0; border: none; border-radius: 12px; box-shadow: none; background: transparent; }
  .planning-iframe { min-height: 600px; height: 80vh; border-radius: 0; }
}

/* ── Service image ── */
.service-img {
  width: 100%; height: auto; border-radius: 10px;
  border: 1px solid rgba(200,24,122,.20);
  box-shadow: var(--img-shadow);
  margin-top: .75rem;
}
.hero-portrait {
  width: min(100%,360px); height: auto;
  border-radius: 16px; margin: 1.2rem auto;
  box-shadow: 0 8px 24px rgba(200,24,122,.18), 0 16px 40px rgba(44,44,44,.10);
  border: 2px solid rgba(200,24,122,.25);
}
.img-ethics {
  width: min(100%,260px); height: auto; border-radius: 12px;
  margin: 1rem auto; box-shadow: var(--img-shadow);
  border: 1px solid rgba(200,24,122,.20);
}

/* ── Highlights / feature list ── */
.feature-list { list-style: none; padding: 0; margin: 1rem 0; }
.feature-list li {
  padding: .55rem 0 .55rem 1.8rem; position: relative;
  border-bottom: 1px solid rgba(200,24,122,.10);
  font-size: .97rem;
}
.feature-list li::before {
  content: "✨"; position: absolute; left: 0; top: .5rem;
}

/* ── Testimonial / quote ── */
blockquote {
  margin: 1.5rem 0; padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--rose);
  background: var(--rose-light);
  border-radius: 0 10px 10px 0;
  font-style: italic; color: var(--text);
}
blockquote cite { display: block; margin-top: .6rem; font-weight: 700; color: var(--rose); font-style: normal; }

/* ── Card badge ── */
.card-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .86rem; font-weight: 700; margin-bottom: .8rem;
}
.card-badge.rose { background: var(--rose-light); color: var(--rose); border: 1px solid rgba(200,24,122,.3); }
.card-badge.bleu { background: var(--bleu-light); color: var(--bleu); border: 1px solid rgba(21,101,192,.3); }
.card-badge.gold { background: #fff9e6; color: #896b00; border: 1px solid rgba(212,175,55,.3); }

/* ── Cartouche Audiotel réglementaire ── */
.cartouche-audiotel {
  display: flex; align-items: stretch;
  border: 1px solid #bbb; border-radius: 4px;
  overflow: hidden; max-width: min(320px,100%); width: 100%;
  margin: .8rem auto 0; background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.10);
}
.ca-num {
  flex: 1 1 54%; min-width: 0;
  font-family: Arial,sans-serif; font-weight: bold;
  font-size: clamp(12px,3.8vw,18px); color: #a50f78; background: #fff;
  display: flex; align-items: center;
  padding: 6px 6px 6px 10px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.ca-tarif {
  flex: 0 0 auto; width: 44%; min-width: 100px;
  background: #a50f78; color: #fff;
  font-family: Arial,sans-serif; font-weight: bold;
  font-size: clamp(9px,2.4vw,11px);
  display: flex; align-items: center;
  padding: 5px 8px 5px 16px; position: relative; line-height: 1.3;
}
.ca-tarif::before {
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  border: 9px solid transparent; border-left-color: #fff;
  width: 0; height: 0;
}
.ca-tarif p { margin: 0; }
/* Mobile : police réduite */
@media (max-width: 400px) {
  .ca-num  { font-size: 12px; padding: 5px 4px 5px 8px; }
  .ca-tarif { font-size: 9px; padding: 5px 6px 5px 14px; min-width: 88px; }
}

/* ── FAQ accordion ── */
details {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 1rem; margin-bottom: .8rem;
  background: var(--bg-soft);
}
details summary {
  font-weight: 700; cursor: pointer; color: var(--rose);
  font-size: .97rem; list-style: none; display: flex;
  align-items: center; justify-content: space-between;
}
details summary::after { content: "+"; font-size: 1.3rem; font-weight: 700; }
details[open] summary::after { content: "−"; }
details p { margin: .7rem 0 0; color: var(--text); line-height: 1.65; }

/* ── Footer ── */
.site-footer {
  background: linear-gradient(135deg,#f9e6f2 0%,#ede8f5 100%);
  border-top: 2px solid rgba(200,24,122,.25);
  padding: 2.5rem 0 1.5rem; margin-top: 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3,1fr); } }
.site-footer h3 { font-size: .95rem; font-weight: 800; color: var(--rose); margin-bottom: .6rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .35rem; }
.site-footer ul li a { font-size: .88rem; color: var(--muted); transition: color .15s; }
.site-footer ul li a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(200,24,122,.15);
  padding-top: 1rem; text-align: center;
  font-size: .8rem; color: var(--muted);
}

/* ── Divers ── */
.center-copy { display: block; width: 100%; text-align: center; margin-inline: auto; }
.text-muted { color: var(--muted); }
.text-rose  { color: var(--rose); }
.text-bleu  { color: var(--bleu); }
.font-serif { font-family: var(--serif); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }

/* ── Print ── */
@media print {
  .site-header, .urgent-bar, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}
