/*
Theme Name:   Twenty Twenty-Five SH
Description:  Thème enfant de Twenty Twenty-Five pour Stéphanie Hotton Hypnose. 100% blocs natifs WordPress (FSE).
Author:       Rémy Guillon
Template:     twentytwentyfive
Version:      1.0.0
Text Domain:  twentytwentyfive-sh
Tags:         block-theme, full-site-editing, dark-mode
*/

/* ═══════════════════════════════════════════════════
   TOKENS — DARK / LIGHT
   ═══════════════════════════════════════════════════ */
:root,
[data-theme="dark"] {
  --sh-bg:          #0e1117;
  --sh-bg-alt:      #151c2c;
  --sh-bg-card:     rgba(21, 28, 44, 0.75);
  --sh-bg-nav:      rgba(14, 17, 23, 0.99);
  --sh-bg-footer:   #0e1117;
  --sh-border:      rgba(168, 184, 204, 0.12);
  --sh-border-card: rgba(201, 169, 110, 0.22);
  --sh-gold:        #c9a96e;
  --sh-gold-deco:   #c9a96e;
  --sh-gold-light:  #e8d5b0;
  --sh-silver:      #a8b8cc;
  --sh-heading:     #f0eff0;
  --sh-body:        #c8cdd8;
  --sh-footer-text: #a8b8cc;
  --sh-orb1:        rgba(45, 64, 96, 0.6);
  --sh-step-line:   rgba(201, 169, 110, 0.3);
  --sh-ghost-border:rgba(168, 184, 204, 0.45);
  --sh-ghost-color: #a8b8cc;
  --sh-ghost-hover: #f0eff0;
  --sh-cta-border:  rgba(201, 169, 110, 0.22);
}

[data-theme="light"] {
  --sh-bg:          #ffffff;
  --sh-bg-alt:      #f9fafb;
  --sh-bg-card:     #f3f4f6;
  --sh-bg-nav:      rgba(255, 255, 255, 0.99);
  --sh-bg-footer:   #111827;
  --sh-border:      #d1d5db;
  --sh-border-card: #9ca3af;
  --sh-gold:        #92400e;
  --sh-gold-deco:   #b8860b;
  --sh-gold-light:  #111827;
  --sh-silver:      #4b5563;
  --sh-heading:     #111827;
  --sh-body:        #374151;
  --sh-footer-text: #d1d5db;
  --sh-orb1:        rgba(184, 134, 11, 0.06);
  --sh-step-line:   rgba(146, 64, 14, 0.25);
  --sh-ghost-border:rgba(75, 85, 99, 0.4);
  --sh-ghost-color: #4b5563;
  --sh-ghost-hover: #111827;
  --sh-cta-border:  rgba(146, 64, 14, 0.22);
}

/* ═══════════════════════════════════════════════════
   BASE — surcharge le body Twenty Twenty-Five
   ═══════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }

body.wp-singular,
body {
  background: var(--sh-bg) !important;
  color: var(--sh-body) !important;
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading {
  color: var(--sh-heading);
}

a { color: var(--sh-gold); }
a:hover { color: var(--sh-gold-light); }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
/* Wrapper externe du template-part — c'est lui qu'on rend sticky */
.wp-site-blocks > header.wp-block-template-part {
  position: sticky !important;
  top: var(--wp-admin--admin-bar--position-offset, 0px) !important;
  z-index: 100;
}

.sh-header {
  background: var(--sh-bg-nav) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sh-border);
  padding-block: 1.125rem;
  /* inner header : position relative dans le wrapper sticky */
  position: relative !important;
  top: auto !important;
}

.nav-logo,
.wp-block-site-title.nav-logo,
p.nav-logo,
.nav-logo a {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.05rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
  color: var(--sh-gold-light) !important;
  text-decoration: none !important;
  margin: 0;
}

.nav-logo em {
  font-style: italic;
  color: var(--sh-gold);
}

/* Nav menu */
.sh-nav .wp-block-navigation__container,
.sh-nav ul.wp-block-navigation__container {
  gap: 1.8rem !important;
}

.sh-nav .wp-block-navigation-item__content {
  color: var(--sh-silver) !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  transition: color 0.2s !important;
}

.sh-nav .wp-block-navigation-item__content:hover {
  color: var(--sh-gold) !important;
}

/* CTA "Prendre RDV" — détecté via lien #contact ou label */
.sh-nav a[href*="#contact"] {
  border: 1px solid var(--sh-gold) !important;
  border-radius: 3px;
  padding: 0.45rem 1.1rem !important;
  color: var(--sh-gold) !important;
  transition: background 0.2s, color 0.2s !important;
}
.sh-nav a[href*="#contact"]:hover {
  background: var(--sh-gold) !important;
  color: var(--sh-bg) !important;
}

.nav-right {
  gap: 1.2rem;
  align-items: center;
}

/* ═══════════════════════════════════════════════════
   THEME TOGGLE
   ═══════════════════════════════════════════════════ */
button.theme-toggle,
button.theme-toggle:hover,
button.theme-toggle:focus,
button.theme-toggle:active,
.theme-toggle,
.theme-toggle:hover,
.theme-toggle:focus,
.theme-toggle:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
  text-decoration: none !important;
  padding: 0 !important;
}

.theme-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  cursor: pointer !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--sh-silver) !important;
  transition: color 0.2s !important;
}

.theme-toggle:hover { color: var(--sh-gold) !important; }

button.theme-toggle:focus-visible,
.theme-toggle:focus-visible {
  outline: 1px solid var(--sh-gold) !important;
  outline-offset: 4px !important;
  border-radius: 2px;
}

.t-icon { font-size: 0.82rem; line-height: 1; width: 1rem; text-align: center; }
.i-moon { display: inline; }
.i-sun  { display: none; }
[data-theme="light"] .i-moon { display: none; }
[data-theme="light"] .i-sun  { display: inline; }

.toggle-track {
  width: 34px; height: 17px;
  border-radius: 9px;
  background: rgba(138, 155, 176, 0.18);
  border: 1px solid var(--sh-border-card);
  position: relative;
  transition: all 0.35s;
  flex-shrink: 0;
  display: inline-block;
}

[data-theme="light"] .toggle-track { background: rgba(184, 134, 11, 0.12); }

.toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--sh-gold-deco);
  transition: transform 0.35s;
}

[data-theme="light"] .toggle-thumb { transform: translateX(17px); }

.t-label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-silver);
  white-space: nowrap;
}

@media (max-width: 640px) { .t-label { display: none; } }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.sh-footer {
  background: var(--sh-bg-footer) !important;
  color: var(--sh-footer-text);
  border-top: 1px solid var(--sh-border);
  margin-top: 0;
}

.sh-footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--sh-gold-light);
  letter-spacing: 0.02em;
}

.sh-footer .footer-logo em { font-style: italic; }

.sh-footer .footer-mid,
address.footer-mid {
  font-style: normal;
  font-size: 0.6875rem;
  color: var(--sh-footer-text);
  text-align: center;
  line-height: 1.7;
}

.sh-footer .wp-block-navigation__container,
.footer-links ul {
  gap: 1.5rem !important;
}

.sh-footer .wp-block-navigation-item__content {
  font-size: 0.7rem !important;
  color: var(--sh-footer-text) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.sh-footer .wp-block-navigation-item__content:hover {
  color: var(--sh-gold) !important;
}

/* ═══════════════════════════════════════════════════
   SECTIONS / UTILITAIRES
   ═══════════════════════════════════════════════════ */
.section-bg   { background: var(--sh-bg) !important; }
.section-alt  { background: var(--sh-bg-alt) !important; }
.section-card { background: var(--sh-bg-card) !important; }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero-section {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--sh-bg) !important;
  padding: 4rem 2rem !important;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sh-orb1) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none; z-index: 0;
}

.hero-section > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sh-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sh-gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  color: var(--sh-heading) !important;
  margin-bottom: 1.5rem !important;
}

.hero-title em { font-style: italic; color: var(--sh-gold); }

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--sh-silver);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

/* Hero photo frame (placeholder + future image) */
.hero-section .hero-photo-frame {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  background: var(--sh-bg-card) !important;
  border: 1px solid var(--sh-border-card) !important;
  aspect-ratio: 3/4 !important;
  color: var(--sh-silver);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 1rem;
}

.hero-section .hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 10px; bottom: 10px;
  border: 1px solid var(--sh-gold-deco);
  z-index: -1;
}

/* ═══════════════════════════════════════════════════
   LABELS, TITRES, BODY
   ═══════════════════════════════════════════════════ */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 1.2rem;
  display: inline-block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  color: var(--sh-heading) !important;
  margin-bottom: 2rem !important;
}

.section-title em { font-style: italic; color: var(--sh-gold); }

.body-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--sh-silver);
  margin-bottom: 1.2rem;
}

.body-text strong { color: var(--sh-heading); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════════ */
.wp-block-button.btn-gold .wp-block-button__link,
.btn-gold {
  background: var(--sh-gold) !important;
  color: var(--sh-bg) !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 0.85rem 2rem !important;
  min-width: 220px !important;
  font-family: 'Lato', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: opacity 0.2s, transform 0.2s !important;
  display: inline-block;
}

.wp-block-button.btn-gold .wp-block-button__link:hover,
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

.wp-block-button.btn-ghost .wp-block-button__link,
.btn-ghost {
  background: transparent !important;
  color: var(--sh-ghost-color) !important;
  border: 1px solid var(--sh-ghost-border) !important;
  border-radius: 3px !important;
  padding: 0.85rem 2rem !important;
  min-width: 220px !important;
  font-family: 'Lato', sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: color 0.2s, border-color 0.2s !important;
}

.wp-block-button.btn-ghost .wp-block-button__link:hover,
.btn-ghost:hover {
  color: var(--sh-ghost-hover) !important;
  border-color: var(--sh-ghost-hover) !important;
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about-card {
  border: 1px solid var(--sh-border-card);
  border-left: 3px solid var(--sh-gold) !important;
  background: var(--sh-bg-card);
  padding: 2.5rem;
  position: relative;
  border-radius: 4px;
}

.about-card::before {
  content: '◈';
  position: absolute;
  top: -0.8rem;
  left: 1.2rem;
  background: var(--sh-bg);
  padding: 0 0.6rem;
  color: var(--sh-gold-deco);
  font-size: 0.9rem;
}

.about-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--sh-heading);
  margin-bottom: 1.5rem;
}

.about-card-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sh-gold) !important;
}

.about-card-author::before { content: '— '; color: var(--sh-gold-deco); }

.about-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--sh-silver);
  margin-bottom: 1rem;
}

.about-credentials {
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--sh-border-card);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.credential {
  display: flex;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--sh-silver);
}

.credential::before {
  content: '◈';
  color: var(--sh-gold-deco);
  font-size: 0.65rem;
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════════
   SERVICES (cards)
   ═══════════════════════════════════════════════════ */
.service-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border-card);
  border-radius: 4px;
  padding: 2rem !important;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.08);
}

.service-icon-text {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 1.2rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  color: var(--sh-heading) !important;
  margin-bottom: 1rem !important;
  line-height: 1.3 !important;
}

.service-title em { font-style: italic; color: var(--sh-gold); }

.service-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--sh-silver);
  margin-bottom: 1.5rem;
}

.service-divider {
  height: 1px;
  background: var(--sh-border-card);
  margin: 1.2rem 0;
}

.service-details {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-silver);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════ */
.process-step { text-align: center; padding: 1rem; }

.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--sh-gold-deco);
  background: var(--sh-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--sh-gold);
  margin: 0 auto 1.5rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--sh-heading);
  margin-bottom: 0.6rem;
}

.step-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--sh-silver);
}

/* ═══════════════════════════════════════════════════
   FAQ — <details> natif
   ═══════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--sh-border);
  background: transparent;
}

.faq-item summary.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--sh-heading);
  position: relative;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; display: none; }

.faq-item .faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border: 1px solid var(--sh-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sh-gold);
  transition: transform 0.3s, background 0.2s;
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] .faq-q::after {
  content: '−';
  background: rgba(201, 169, 110, 0.08);
}

.faq-item:hover .faq-q { color: var(--sh-gold); }

.faq-item .faq-a {
  padding: 0 3rem 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--sh-silver);
}

/* ═══════════════════════════════════════════════════
   CTA bloc
   ═══════════════════════════════════════════════════ */
.cta-block {
  background: linear-gradient(135deg, #1f2d40 0%, #151c2c 100%);
  border: 1px solid var(--sh-cta-border);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 6px;
}

.cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 300 !important;
  color: var(--sh-heading) !important;
  margin-bottom: 1rem !important;
}

.cta-title em { font-style: italic; color: var(--sh-gold); }

.cta-sub { color: var(--sh-silver); margin-bottom: 2rem; }

.cta-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact-info {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.ci {
  display: flex;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--sh-silver);
}

.ci::before {
  content: '◈';
  color: var(--sh-gold-deco);
  font-size: 0.65rem;
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════════
   FORM CF7
   ═══════════════════════════════════════════════════ */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--sh-border-card);
  background: var(--sh-bg-card);
  padding: 2.5rem;
  border-radius: 6px;
}

.wpcf7-form .fg { display: flex; flex-direction: column; gap: 0.4rem; }

.wpcf7-form .fl {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-gold) !important;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  display: block;
}

.wpcf7-form .fi,
.wpcf7-form .ft {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 0 !important;
  padding: 0.75rem 0 !important;
  color: var(--sh-heading) !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.9rem !important;
}

[data-theme="light"] .wpcf7-form .fi,
[data-theme="light"] .wpcf7-form .ft {
  background: transparent !important;
  border-bottom-color: rgba(0,0,0,0.15) !important;
}

.wpcf7-form .ft {
  resize: vertical !important;
  height: 100px !important;
}

.wpcf7-form .fi:focus, .wpcf7-form .ft:focus {
  outline: none !important;
  border-color: var(--sh-gold) !important;
}

.wpcf7-form .fi::placeholder, .wpcf7-form .ft::placeholder {
  color: rgba(168,184,204,0.4) !important;
  opacity: 1 !important;
}

.wpcf7-form .fck {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--sh-silver);
  line-height: 1.6;
}

.wpcf7-form input[type="submit"] {
  background: var(--sh-gold) !important;
  color: var(--sh-bg) !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 0.95rem 2.5rem !important;
  font-family: 'Lato', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (sous-pages)
   ═══════════════════════════════════════════════════ */
.page-hero {
  padding: 6rem 2rem 4rem !important;
  background: var(--sh-bg) !important;
}

.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sh-silver);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--sh-silver); text-decoration: none; }
.breadcrumb a:hover { color: var(--sh-gold); }
.breadcrumb-sep { margin: 0 0.6rem; color: var(--sh-gold-deco); }
.breadcrumb-current { color: var(--sh-gold); }

.page-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 1.5rem;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  color: var(--sh-heading) !important;
  margin-bottom: 1.5rem !important;
}

.page-hero-title em { font-style: italic; color: var(--sh-gold); }

.page-hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--sh-silver);
  max-width: 720px;
}

/* ═══════════════════════════════════════════════════
   QUI SUIS-JE — composants spécifiques
   ═══════════════════════════════════════════════════ */
.portrait-img {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border-card);
  aspect-ratio: 2/3;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-silver);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}

.portrait-sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--sh-gold);
  margin-top: 1.5rem;
}

.valeur-card, .method {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border-card);
  padding: 2rem 1.8rem !important;
  border-radius: 6px;
}

.valeur-num, .method-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--sh-gold);
  opacity: 0.7;
  margin-bottom: 0.8rem;
}

.valeur-name, .method-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--sh-heading);
  margin-bottom: 0.8rem;
}

.valeur-text, .method-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--sh-silver);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 1.8rem;
  border-left: 1px solid var(--sh-step-line);
}

.tl-item { position: relative; padding-bottom: 2rem; }

.tl-dot {
  position: absolute;
  left: -2.3rem;
  top: 0.4rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--sh-gold-deco);
  border: 2px solid var(--sh-bg);
}

.tl-year {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 0.4rem;
}

.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sh-heading);
  margin-bottom: 0.4rem;
}

.tl-text { font-size: 0.85rem; line-height: 1.7; color: var(--sh-silver); }

/* Formations */
.formations-list { display: flex; flex-direction: column; gap: 1.2rem; }

.formation {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--sh-border);
  border-radius: 4px;
  background: var(--sh-bg-card);
}

.formation-icon { color: var(--sh-gold-deco); font-size: 0.8rem; }
.formation-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--sh-heading); margin-bottom: 0.3rem; }
.formation-detail { font-size: 0.82rem; line-height: 1.6; color: var(--sh-silver); }

/* Engagements */
.engagement {
  padding: 0.8rem 1rem 0.8rem 2rem;
  border-left: 2px solid var(--sh-gold-deco);
  background: var(--sh-bg-card);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--sh-silver);
  position: relative;
}

.engagement::before {
  content: '◈';
  position: absolute;
  left: 0.6rem;
  top: 0.85rem;
  color: var(--sh-gold-deco);
  font-size: 0.65rem;
}

.epione-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border-card);
  border-left: 3px solid var(--sh-gold);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sh-heading);
}

/* En dehors */
.dehors-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.dehors-icon { font-size: 1.5rem; }
.dehors-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--sh-heading); margin-bottom: 0.4rem; }
.dehors-text { font-size: 0.85rem; line-height: 1.7; color: var(--sh-silver); }

/* Témoignage */
.temoignage {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.temoignage blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--sh-heading);
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}

.temoignage cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sh-silver);
}

/* ═══════════════════════════════════════════════════
   MES SÉANCES — composants
   ═══════════════════════════════════════════════════ */
.panel-intro-img {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border-card);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-silver);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  padding: 2rem;
}

.accroche {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--sh-gold-deco);
  background: var(--sh-bg-card);
}

.accroche p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--sh-heading);
  margin: 0;
}

.indications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.indication {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
}

.indication-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--sh-heading); margin-bottom: 0.3rem; }
.indication-detail { font-size: 0.8rem; color: var(--sh-silver); line-height: 1.5; }

.theme-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }

.theme-tag {
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  background: rgba(201, 169, 110, 0.1);
  color: var(--sh-gold);
  border: 1px solid var(--sh-cta-border);
  border-radius: 999px;
}

.deroulement-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.ds-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2rem; color: var(--sh-gold); opacity: 0.5; min-width: 50px; }
.ds-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--sh-heading); margin-bottom: 0.4rem; }
.ds-text { font-size: 0.88rem; line-height: 1.7; color: var(--sh-silver); }

.tarif-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border-card);
  padding: 2rem;
  border-radius: 6px;
}

.tarif-type { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sh-gold); margin-bottom: 1rem; }
.tarif-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--sh-heading); margin-bottom: 1rem; }
.tarif-price { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--sh-gold); margin-bottom: 1rem; }
.tarif-price span { font-size: 0.85rem; color: var(--sh-silver); font-style: italic; vertical-align: super; }
.tarif-divider { height: 1px; background: var(--sh-border-card); margin: 1rem 0; }
.tarif-detail { font-size: 0.88rem; line-height: 1.7; color: var(--sh-silver); margin-bottom: 1rem; }
.tarif-note { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sh-silver); opacity: 0.75; }

.mutuelle-note {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.8rem;
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 4px;
  margin-top: 2rem;
}

.mutuelle-note p { font-size: 0.85rem; line-height: 1.7; color: var(--sh-silver); margin: 0; }

/* ═══════════════════════════════════════════════════
   PAGES JURIDIQUES (sidebar nav + content)
   ═══════════════════════════════════════════════════ */
.legal-cols { gap: 3rem; }

.legal-sidebar-inner .sb-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 1rem;
  display: block;
}

.legal-sidebar {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 4px;
  padding: 1.5rem 1.2rem !important;
  position: sticky;
  top: 6rem;
}

.legal-nav .wp-block-navigation__container {
  flex-direction: column !important;
  gap: 0.4rem !important;
}

.legal-nav .wp-block-navigation-item__content {
  padding: 0.6rem 0.8rem !important;
  color: var(--sh-silver) !important;
  font-size: 0.85rem !important;
  border-left: 2px solid transparent !important;
  border-radius: 4px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  display: block !important;
}

.legal-nav .wp-block-navigation-item__content:hover {
  background: rgba(168, 184, 204, 0.05) !important;
  color: var(--sh-heading) !important;
}

.legal-nav .current-menu-item .wp-block-navigation-item__content {
  color: var(--sh-gold) !important;
  border-left-color: var(--sh-gold) !important;
  background: rgba(201, 169, 110, 0.10) !important;
}

.lsec { margin-bottom: 4rem; }
.lsec-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--sh-gold);
  opacity: 0.6;
  margin-bottom: 0.8rem;
}

.lsec-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.8rem !important;
  font-weight: 300 !important;
  color: var(--sh-heading) !important;
  margin-bottom: 1.5rem !important;
}

.lsec-title em { font-style: italic; color: var(--sh-gold); }

.update-badge {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sh-gold);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--sh-cta-border);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.page-meta { font-size: 0.8rem; color: var(--sh-silver); margin-bottom: 3rem; }

.lp { font-size: 0.9rem; line-height: 1.85; color: var(--sh-silver); margin-bottom: 1rem; }
.lp strong { color: var(--sh-heading); font-weight: 600; }
.lp a { color: var(--sh-gold); text-decoration: underline; text-underline-offset: 3px; }

.lcard {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border-card);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.lcard-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sh-gold); margin-bottom: 1rem; }
.lcard p { font-size: 0.88rem; line-height: 1.8; color: var(--sh-silver); margin: 0 0 0.5rem 0; }
.lcard p strong { color: var(--sh-heading); }

.lsub { margin-top: 1.5rem; padding-left: 1rem; border-left: 2px solid var(--sh-gold); }
.lsub-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--sh-heading); margin-bottom: 0.8rem; }

.ll { list-style: none; padding: 0; margin: 0 0 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.ll li { position: relative; padding-left: 1.4rem; font-size: 0.9rem; line-height: 1.7; color: var(--sh-silver); }
.ll li::before { content: '◈'; position: absolute; left: 0; top: 0.3rem; color: var(--sh-gold-deco); font-size: 0.6rem; }
.ll li strong { color: var(--sh-heading); }

.ltable { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.85rem; }
.ltable thead { border-bottom: 1px solid var(--sh-gold-deco); }
.ltable th { text-align: left; padding: 0.8rem 1rem; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sh-gold); }
.ltable td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--sh-border); color: var(--sh-silver); line-height: 1.6; }
.ltable code { background: rgba(201, 169, 110, 0.08); padding: 0.15rem 0.4rem; border-radius: 3px; font-size: 0.82rem; color: var(--sh-gold); }

.lcontact {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  padding: 1.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lcontact span { font-size: 0.88rem; color: var(--sh-silver); }
.lcontact strong { color: var(--sh-heading); }

/* ═══════════════════════════════════════════════════
   LISTES À PUCES DORÉES ◆
   ═══════════════════════════════════════════════════ */
.sh-feature-list { list-style: none; padding: 0; margin: 0; }
.sh-feature-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--sh-silver);
}
.sh-feature-list li::before {
  content: "◆";
  color: var(--sh-gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════════════
   TABS STICKY — MES SÉANCES
   ═══════════════════════════════════════════════════ */
.seances-tabs {
  position: sticky;
  top: 72px;
  z-index: 50;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.75rem 2rem;
  background: var(--sh-bg-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sh-border);
}

.stab {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-silver);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.stab:hover { color: var(--sh-gold); border-color: var(--sh-gold); }

.stab--active {
  background: var(--sh-gold) !important;
  color: var(--sh-bg) !important;
  border-color: var(--sh-gold) !important;
}

#adulte, #enfant { scroll-margin-top: 120px; }

/* ═══════════════════════════════════════════════════
   KADENCE TABS — MES SÉANCES
   ═══════════════════════════════════════════════════ */

/* Fix: les panels n'ont pas wp-block-kadence-tab en contexte FSE — cacher les inactifs */
.kt-tab-inner-content:not(.kt-inner-tab-active) { display: none; }

/* Restyle titres d'onglets selon design tokens */
.wp-block-kadence-tabs .kt-tabs-title-list {
  gap: 0.5rem;
  border-bottom: 1px solid var(--sh-border);
  padding: 0 2rem;
}
.wp-block-kadence-tabs .kt-tabs-title-list li { margin: 0; }
.wp-block-kadence-tabs .kt-tabs-title-list li .kt-tab-title {
  padding: 0.5rem 1.25rem !important;
  border: 1px solid rgba(201,169,110,0.3) !important;
  border-radius: 2px !important;
  background: transparent !important;
  color: var(--sh-silver) !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.wp-block-kadence-tabs .kt-tabs-title-list li .kt-tab-title:hover {
  color: var(--sh-gold) !important;
  border-color: var(--sh-gold) !important;
}
.wp-block-kadence-tabs .kt-tabs-title-list li.kt-tab-title-active .kt-tab-title {
  background: var(--sh-gold) !important;
  color: var(--sh-bg) !important;
  border-color: var(--sh-gold) !important;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .legal-cols { flex-direction: column; }
  .legal-sidebar { position: static; }
}

@media (max-width: 767px) {
  .hero-section { padding: 3rem 1.5rem !important; }
  .indications-grid { grid-template-columns: 1fr; }
  .deroulement-step { flex-direction: column; gap: 0.5rem; }
}
