@charset "UTF-8";
/* ══════════════════════════════════════════════════
   HOME.CSS — Styles spécifiques à la page d'accueil
   Chargé uniquement sur is_front_page()
   Séparé de main.css (Batch-128, #1)
══════════════════════════════════════════════════ */

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  line-height: 1.25; /* Harmonisé avec LP/Parcours (Bug fix 20260325) */
  margin-bottom: 1.5rem;
}

.hero-text h1 em { font-style: italic; }

/* Photo inline mobile (hidden on desktop) */
.hero-photo-mobile { display: none; }
.hero-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text-secondary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.6em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-contact {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.hero-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--trans);
}
.hero-contact a:hover { color: var(--taupe-mid); }

.hero-photo {
  position: relative;
  max-width: 450px;
  margin-bottom: 4rem;
}

.hero-photo-portrait {
  width: 100%;
  border-radius: 200px 200px 0 0;
  box-shadow: 0 30px 70px rgba(61,50,40,0.15);
}

.hero-photo-cabinet {
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 180px;
  height: 250px;
  object-fit: cover;
  border-radius: 90px 90px 0 0;
  border: 5px solid white;
  box-shadow: 0 20px 50px rgba(61,50,40,0.25);
}

.floating-rdv {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--taupe);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(61,50,40,0.4);
  transition: all var(--trans);
  z-index: 10;
  white-space: nowrap;
}

.floating-rdv:hover {
  background: var(--earth);
  transform: translateX(-50%) translateY(-2px);
}

/* ══════════════════════════════════════════════════
   7. CITATION BAND
══════════════════════════════════════════════════ */

.citation {
  background: var(--earth);
  color: white;
  padding: 3rem;
  text-align: center;
}

.citation blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  max-width: var(--max-w-prose);
  margin: 0 auto;
}

.citation cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.65;
}

/* ══════════════════════════════════════════════════
   9. ACCOMPAGNEMENT / SITUATIONS GRID
══════════════════════════════════════════════════ */

.accompagnement {
  padding: 5rem 3rem;
  background: var(--warm-white);
}

.accompagnement-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.accompagnement h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.accompagnement-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.situation-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans);
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.situation-card.clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(61,50,40,0.1);
  border-color: var(--gold-soft);
}

.situation-card.non-clickable {
  cursor: default;
  opacity: 0.85;
}

/* Icônes SVG situation (remplacement emojis) */
.situation-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-light);
  border-radius: var(--radius-sm);
  color: var(--gold);
  flex-shrink: 0;
}

.situation-icon svg { width: 22px; height: 22px; }

.situation-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.situation-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   10. FAQ
══════════════════════════════════════════════════ */

.faq-section {
  padding: 5rem 3rem;
  background: var(--warm-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--max-w-prose);
  margin: 2rem 0 0 0;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 1.2rem 0;
  background: none;
  border-radius: 0;
  transition: all var(--trans);
}

.faq-item:first-child { border-top: 1px solid var(--sand); }
.faq-item[open] { border-color: var(--sand); }

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all var(--trans);
}

.faq-item[open] .faq-icon { background: var(--gold); color: white; transform: rotate(45deg); }

.faq-answer {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-top: 0.8rem;
  margin-top: 0;
}

.faq-answer a {
  color: var(--taupe);
  text-decoration: none;
}
.faq-answer a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════
   11. INFOS PRATIQUES
══════════════════════════════════════════════════ */

.practical {
  padding: 5rem 3rem;
  background: var(--cream);
}

.practical-photo-wrapper {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
  box-shadow: 0 16px 48px rgba(61,50,40,0.15);
}

.practical-photo-wrapper img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 35%;
}

.practical-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(61,50,40,0.72) 0%, rgba(61,50,40,0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 2.5rem 3rem;
}

.practical-photo-text p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.practical-photo-text p:last-child {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
}

.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-block {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.info-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-item .ico {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.info-item p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.info-item a {
  color: var(--taupe);
  text-decoration: none;
}
.info-item a:hover { text-decoration: underline; }

.tarif-box {
  background: var(--sand-light);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  flex: 1;
}

.tarif-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--taupe);
}

.tarif-detail {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.tarif-secu {
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 0.5rem;
}

.tarif-note {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════
   12. SECTION PRATIQUE / CITATION
══════════════════════════════════════════════════ */

.pratique-section {
  background: var(--warm-white);
  padding: 5rem 3rem;
}

.pratique-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--taupe-mid);
  line-height: 1.5;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 14px 14px 0;
  margin: 1.5rem 0;
}

/* ══════════════════════════════════════════════════
   13. BOOKING / CONTACT
══════════════════════════════════════════════════ */

.booking {
  padding: 5rem 3rem;
  background: var(--warm-white);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: var(--max-w-wide);
  margin: 2rem auto 0;
}

.booking-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.booking-info a {
  color: var(--taupe);
  text-decoration: none;
}

.booking-info p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.booking-info-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--taupe-mid);
  line-height: 1.5;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.contact-line svg { color: var(--gold); flex-shrink: 0; }

.contact-line a {
  color: var(--taupe);
  text-decoration: none;

}
.contact-line a:hover { text-decoration: underline; }

.booking-contact-panel {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-contact-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;

}

.booking-contact-panel p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.booking-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


/* ══════════════════════════════════════════════════
   14. LOCALISATION
══════════════════════════════════════════════════ */

.localisation {
  padding: 5rem 3rem;
  background: var(--earth);
  color: white;
}

.localisation-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.localisation h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: white;
}

.localisation-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.localisation .info-item {
  align-items: flex-start;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.localisation .info-item svg { opacity: 0.9; margin-top: 3px; color: white; }

.localisation .info-item,
.localisation .info-item p,
.localisation a.info-item {
  color: white;
}

.localisation .info-item a,
.localisation a.info-item {
  color: white;
  text-decoration: none;
  transition: opacity var(--trans);
}
.localisation .info-item a:hover,
.localisation a.info-item:hover { opacity: 0.75; }

.localisation .info-item small {
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
  color: white;
  margin-top: 0.2rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════════
   15. SEO BLOCK (bas de page)
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   16. STRIP BAS DE PAGE
══════════════════════════════════════════════════ */

.page-strip {
  background: var(--cream);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  border-top: 1px solid var(--sand);
}

/* ══════════════════════════════════════════════════
   17. FOOTER
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   18. BOUTON TÉLÉPHONE FLOTTANT (mobile)
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════

/* ── Classes structurelles manquantes ── */
.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.booking-info { display: flex; flex-direction: column; gap: 1.5rem; }
.localisation-map { border-radius: var(--radius-lg, 16px); overflow: hidden; }
.practical-photo-text {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  max-width: 320px;
  color: white;
  z-index: 2;
}
.practical-photo-text p { font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.85); margin-bottom: 0.5rem; }
.practical-photo-text a { color: rgba(255,255,255,0.7); text-decoration: none; }
.practical-photo-text a:hover { color: white; }

.clickable { cursor: pointer; }
.tarif-offert { font-size: 0.9rem; color: var(--gold); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 0.4rem; }

/* ── Booking v2 : 1 colonne épurée ── */
.booking-v2 { padding: 5rem 3rem; background: var(--warm-white); text-align: left; }
.booking-v2 .section-container { max-width: var(--max-w-wide); margin: 0 auto; }
.bv2-layout {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--max-w-prose) 1fr;
  gap: 3rem;
  align-items: center;
}
.bv2-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(61,50,40,0.12);
}
.booking-v2 .section-tag { font-weight: 500; margin-bottom: 0.75rem; }
.booking-v2 .section-title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 1.5rem; }
.bv2-sub { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 2rem; }
.bv2-sub a { color: var(--taupe); text-decoration: none; font-weight: 500; }
.bv2-actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 2rem; }
.bv2-divider { border: none; border-top: 1px solid var(--sand); margin: 1.5rem 0; max-width: 200px; }
.bv2-address { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }
.bv2-quote { border-left: 3px solid var(--gold); padding: 1.5rem 2rem; margin: 1.5rem 0; max-width: var(--max-w-prose); font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; color: var(--taupe-mid); line-height: 1.5; text-align: left; background: var(--cream); border-radius: 0 14px 14px 0; }
/* Ajustements tarif block flex */
.info-block--tarif { display: flex; flex-direction: column; }
.info-block--tarif .tarif-box { flex: 1; }
.tarif-mention {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.5;
  font-style: italic;
}
/* Booking contact lines */
.booking-contact-lines { margin-top: 1.5rem; }
/* FAQ cta */
.faq-cta-wrap { margin-top: 2rem; text-align: center; }
/* Pratique section inner */
.pratique-inner { max-width: var(--max-w-prose); margin: 0; text-align: left; }
.pratique-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 1.2rem;
}
.pratique-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}


/* ── Réduction monotonie mobile — bordures accent entre sections ── */
/* ══════════════════════════════════════════════════
   RESPONSIVE — Homepage (≤ 900px)
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   RESPONSIVE — Homepage Mobile (≤ 480px)
══════════════════════════════════════════════════ */

/* ══ MAP FACADE ══ */
.map-facade { position: relative; cursor: pointer; }
.map-facade img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.map-facade-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--taupe);
  color: white;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--trans);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.map-facade-btn:hover { background: var(--earth); }

/* ══ Limite prose à 2/3 (--max-w-prose) — page d'accueil ══ */
.pratique-inner p,
.pratique-quote,
.bv2-sub,
.bv2-address,
.bv2-quote,
.info-block p,
.info-block .tarif-box {
  max-width: var(--max-w-prose);
}

/* ══ Alignement conteneurs homepage à 1200px ══ */
.accompagnement-inner,
.autorite-grid,
.faq-section .section-container,
.practical .section-container,
.pratique-section .section-container,
.booking-v2 .section-container {
  max-width: var(--max-w-wide);
}

/* ══ Limite prose à 2/3 — sections basses homepage ══ */
.faq-list,
.pratique-inner {
  max-width: var(--max-w-prose);
}


/* ══ RESPONSIVE 900px ══ */
@media (max-width: 900px) {
  .hero-photo-mobile {
    display: block;
    margin: 1rem auto 1.5rem;
    max-width: 320px;
  }
  .hero-photo-mobile img {
    width: 100%;
    border-radius: 200px 200px 0 0;
    box-shadow: 0 20px 50px rgba(61,50,40,0.15);
  }
  /* Homepage hero reorder */
  .hero-text { display: contents; }
  .hero-text .section-tag { order: 1; }
  .hero-text h1 { order: 2; }
  .hero-text .hero-h2 { order: 3; }
  .hero-text p { order: 5; }
  .hero-text .hero-ctas { order: 6; }
  .hero-text .hero-contact { order: 7; }
  .hero-photo-cabinet { display: none; }
  /* Homepage sections padding */
  .accompagnement,
  .faq-section,
  .practical,
  .booking,
  .localisation,
  .pratique-section { padding: 3.5rem 1.5rem; }
  /* Homepage grids → 1 col */
  .situations-grid { grid-template-columns: 1fr; }
  .localisation-inner { grid-template-columns: 1fr; }
  .autorite-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .booking-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .infos-grid { grid-template-columns: 1fr; }
  .map-container { height: 240px; }
  /* Booking v2 */
  .bv2-layout { grid-template-columns: 1fr; gap: 2rem; }
  .bv2-photo { order: -1; }
  .bv2-photo img { max-height: 260px; object-fit: cover; border-radius: var(--radius-md); }
  /* Homepage overflow fixes */
  .hero-photo { width: 100%; max-width: 100%; margin: 0; display: none !important; order: 4; }
  .hero-photo-portrait {
    width: 100%;
    max-width: 100%;
    border-radius: 100px 100px 0 0;
  }
  .floating-rdv { position: static; transform: none; width: 100%; justify-content: center; margin: 1rem 0; bottom: auto; left: auto; display: inline-flex; }
  /* Accent borders */
  .autorite { border-top: 3px solid var(--gold); }
  .accompagnement { background: var(--sand-light); }
  .booking-v2 { border-top: 3px solid var(--gold); }
}

/* ══ RESPONSIVE 480px ══ */
@media (max-width: 480px) {
  nav { padding: 0.8rem 1rem; }
  .hero-h2 { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .accompagnement,
  .faq-section,
  .practical,
  .booking,
  .localisation,
  .pratique-section,
  .autorite { padding: 2.5rem 1rem; }
  .situation-card { padding: 1.4rem; }
  .booking-v2 { padding: 3rem 1.2rem; }
  .bv2-actions { flex-direction: column; align-items: flex-start; }
}