/* =====================================================
   SOHHAM COACHING — style.css
   Colors inspired by the AS brain logo palette
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&family=Great+Vibes&family=Dancing+Script:wght@600&display=swap');

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --navy:         #1C3A4A;
  --teal:         #4D6878;
  --teal-mid:     #3D5A6B;
  --teal-light:   #8AADB8;
  --teal-pale:    #EEF4F6;
  --rose:         #B8806A;
  --rose-pale:    #F4ECE8;
  --ivory:        #F9F6F1;
  --white:        #FFFFFF;
  --text:         #1C2F3A;
  --text-muted:   #5A7380;
  --border:       #D5E3E8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(28,58,74,.07);
  --shadow-md: 0 6px 24px rgba(28,58,74,.12);
  --shadow-lg: 0 16px 48px rgba(28,58,74,.15);

  --radius:    12px;
  --radius-lg: 24px;
  --trans:     0.3s ease;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
  transition: background var(--trans);
}
.navbar.scrolled { background: rgba(28,58,74,.97); backdrop-filter: blur(10px); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-brand-name span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all var(--trans);
}
.lang-toggle:hover { background: rgba(255,255,255,.18); }

.btn-rdv {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all var(--trans);
}
.btn-rdv:hover { background: #a06a56; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all var(--trans);
}
.mobile-nav a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.mobile-nav .mobile-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ─── PAGE WRAPPER ──────────────────────────────── */
main { padding-top: 70px; }

/* ─── PAGE HERO (inner pages) ───────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-mid) 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238AADB8' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ─── WAVE DIVIDER ──────────────────────────────── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg { display: block; width: 100%; }

/* ─── SECTIONS ──────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-ivory { background: var(--ivory); }
.section-teal-pale { background: var(--teal-pale); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.container-sm {
  max-width: 780px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  display: block;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-navy h2.section-title { color: var(--white); }
.section-teal-pale h2.section-title { color: var(--navy); }

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.section-navy .section-desc { color: rgba(255,255,255,.7); }

/* ─── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--trans);
  border: none;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: #a06a56; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,128,106,.35); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

/* ─── HOME HERO ─────────────────────────────────── */
.home-hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 5rem 3rem 5rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--rose);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ivory) 0%, transparent 30%);
}

/* ─── PILLARS (home) ────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal-light);
  transition: all var(--trans);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--rose);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── ABOUT TEASER (home) ───────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-teaser-img {
  position: relative;
}
.about-teaser-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-teaser-img::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid var(--teal-light);
  border-radius: calc(var(--radius-lg) + 4px);
  opacity: 0.35;
  z-index: -1;
}

.about-teaser-content .section-desc {
  margin-bottom: 1.5rem;
}

/* ─── CERTIFICATION BADGES ──────────────────────── */
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.cert-item::before {
  content: '🌸';
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── SKILLS GRID ───────────────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.skills-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.skills-block h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.skills-block ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.skills-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.75rem;
}

/* ─── SERVICES ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card p,
.service-card .service-points li {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.service-card .service-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  display: block;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.service-card .service-points {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card .service-points li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
.service-card .service-points li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-size: 0.5rem;
  top: 0.45em;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.temoignage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--trans);
  position: relative;
}
.temoignage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.temoignage-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal-pale);
  line-height: 1;
  font-weight: 300;
}
.temo-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-mid);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.temoignage-card blockquote {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.temo-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.temo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}
.temo-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  display: block;
}
.temo-context {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ─── PREVIEW TESTIMONIALS (home) ──────────────── */
.temo-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── FAQ ───────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--trans);
  gap: 1rem;
}
.faq-question:hover { background: var(--teal-pale); }
.faq-question.active { background: var(--teal-pale); color: var(--teal-mid); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 300;
  transition: all var(--trans);
}
.faq-question.active .faq-icon {
  background: var(--rose);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer.open { max-height: 2000px; }
.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin: 0 2rem;
}

/* ─── CONTACT ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--trans);
}
.contact-info-item a:hover { color: var(--rose); }

.contact-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--teal-mid));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.contact-cta-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--trans);
  border: none;
  width: 100%;
  text-align: left;
}
.contact-btn svg { flex-shrink: 0; }
.contact-btn-wa { background: #25D366; color: var(--white); }
.contact-btn-wa:hover { background: #20bc5a; transform: translateY(-2px); }
.contact-btn-email { background: var(--rose); color: var(--white); }
.contact-btn-email:hover { background: #a06a56; transform: translateY(-2px); }
.contact-btn-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: var(--white); }
.contact-btn-ig:hover { opacity: 0.9; transform: translateY(-2px); }

/* ─── CTA BAND ──────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(138,173,184,.1);
  top: -100px;
  right: -100px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
  position: relative;
}
.cta-band .cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* ─── QUOTE BLOCK ───────────────────────────────── */
.quote-block {
  background: linear-gradient(135deg, var(--teal-mid), var(--teal));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--white);
  margin: 3rem 0;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(255,255,255,.1);
  position: absolute;
  top: -1rem;
  left: 2rem;
  line-height: 1;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.quote-block cite {
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

/* ─── SOCIAL LINKS ──────────────────────────────── */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--trans);
  border: 1px solid rgba(255,255,255,.2);
}
.social-link:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--teal-light);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}

/* ─── BACK TO TOP ───────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans);
  z-index: 500;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ─── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s ease both;
}
.fade-up-2 { animation-delay: 0.15s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.45s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 3.5rem 2rem; }
  .hero-image-wrap { min-height: 340px; }
  .hero-image-wrap::after { background: linear-gradient(to bottom, transparent 50%, var(--ivory) 100%); }
  .pillars { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .temo-preview { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .skills-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 1.25rem; }
  .navbar { padding: 0 1.25rem; }
  .page-hero { padding: 3.5rem 1.25rem 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-band .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .contact-cta-box { padding: 2rem 1.5rem; }
  .quote-block { padding: 2.5rem 1.75rem; }
  .skills-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── LANG DROPDOWN ──────────────────────────────── */
.lang-drop { position: relative; }
.lang-drop-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}
.lang-drop-btn:hover { background: rgba(255,255,255,.18); }
.lang-drop-btn .chevron { transition: transform var(--trans); }
.lang-drop.open .lang-drop-btn .chevron { transform: rotate(180deg); }

.lang-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  overflow: hidden;
  min-width: 150px;
  z-index: 1100;
}
.lang-drop.open .lang-drop-menu { display: block; }

.lang-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text);
  text-align: left;
  transition: background var(--trans);
}
.lang-opt:hover { background: var(--teal-pale); }
.lang-opt.active { color: var(--teal-mid); font-weight: 600; }

/* Mobile lang toggle */
.lang-toggle-mobile {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
}

/* ─── TESTIMONIALS GRID FIX ──────────────────────── */
.temoignages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
  align-items: start;
}
.temoignage-full {
  grid-column: 1 / -1;
  background: var(--teal-pale);
  border-color: var(--teal-light);
}
.temoignage-full::before { color: var(--teal-light); opacity: 0.5; }

/* ─── ABOUT PAGE — BIGGER IMAGE ──────────────────── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-hero-img {
  position: relative;
}
.about-hero-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-hero-img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 18px;
  left: 18px;
  border: 2px solid var(--teal-light);
  border-radius: var(--radius-lg);
  opacity: 0.35;
  z-index: 0;
}
.about-hero-img::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.08;
  bottom: -30px;
  right: -30px;
  z-index: 0;
}

/* ─── DECORATIVE SHAPES ──────────────────────────── */
.home-hero { position: relative; }
.home-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--teal-light);
  opacity: 0.05;
  top: -100px; right: -80px;
  pointer-events: none;
  z-index: 0;
}
.home-hero::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.06;
  bottom: 60px; left: 40px;
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(138,173,184,.12);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

/* ─── SÉANCE DÉCOUVERTE SECTION ──────────────────── */
.seance-section {
  background: var(--navy);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.seance-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(138,173,184,.06);
  top: -100px; right: -100px;
}
.seance-section::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(184,128,106,.08);
  bottom: -60px; left: 10%;
}
.seance-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.seance-text .section-label { color: var(--teal-light); }
.seance-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.seance-text p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.seance-btn {
  background: var(--rose) !important;
  font-size: 0.95rem !important;
  padding: 0.9rem 2rem !important;
}
.seance-btn:hover { background: #a06a56 !important; transform: translateY(-2px); }

.seance-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.seance-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
}
.feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.seance-feature strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.seance-feature p { color: rgba(255,255,255,.6); font-size: 0.83rem; line-height: 1.5; margin: 0; }

/* ─── SERVICE CTA BUTTON ─────────────────────────── */
.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--trans);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.service-cta-link:hover { color: var(--rose); border-bottom-color: var(--rose); gap: 0.75rem; }

/* ─── CONTACT BUTTONS — REFINED ──────────────────── */
.contact-btn-wa  { background: #07a566; }
.contact-btn-wa:hover  { background: #058f58; }
.contact-btn-email { background: var(--teal-mid); }
.contact-btn-email:hover { background: var(--navy); }
.contact-btn-ig  { background: #C13584; }
.contact-btn-ig:hover  { background: #a02870; }

/* ─── CERT ITEMS ENHANCED ────────────────────────── */
.cert-item {
  background: var(--white);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--rose);
}

/* ─── LOGO ENHANCED ──────────────────────────────── */
.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  border: 1.5px solid rgba(138,173,184,.3);
}

/* ─── RESPONSIVE UPDATES ─────────────────────────── */
@media (max-width: 960px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero-img img { height: 320px; }
  .seance-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .temoignage-full { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════
   V3 UPDATES
   ═══════════════════════════════════════════════════ */

/* ─── MOBILE HEADER — NETTOYÉ ────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 0 1rem; height: 62px; }
  .nav-brand-name span { display: none; }
  .nav-brand-name { font-size: 1rem; letter-spacing: 0.02em; }
  .btn-rdv { display: none; }
  .lang-drop-btn { padding: 0.2rem 0.45rem; gap: 0.15rem; font-size: 1.1rem; background: rgba(255,255,255,.08); border-radius: 8px; border: 1px solid rgba(255,255,255,.15); }
  .lang-drop-btn .chevron { display: none; }
  .lang-drop-menu { min-width: 130px; }
  main { padding-top: 62px; }
  .hero-image-wrap { display: none; }
}
@media (max-width: 640px) {
  .nav-logo { width: 36px; height: 36px; }
  .nav-brand-name { font-size: 0.92rem; }
}

/* ─── MOBILE BOTTOM NAV ──────────────────────────── */
.mbn {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 950;
  padding: 0.4rem 0 env(safe-area-inset-bottom, 0.4rem) 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex: 1;
  color: rgba(255,255,255,.55);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.2rem;
  transition: color var(--trans);
  text-transform: uppercase;
}
.mbn-item:hover, .mbn-item.active { color: var(--white); }
.mbn-item svg { flex-shrink: 0; }
.mbn-wa {
  background: #07a566;
  border-radius: 16px;
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  margin: 0 0.4rem;
  flex: 1.3;
}
.mbn-wa:hover { background: #058f58; }

@media (max-width: 768px) {
  .mbn { display: flex; }
  footer { padding-bottom: 80px; }
  .back-to-top { bottom: 80px; }
}

/* ─── TESTIMONIALS — EQUAL HEIGHT ────────────────── */
.temoignages-grid { align-items: stretch !important; }
.temoignage-card {
  display: flex !important;
  flex-direction: column !important;
}
.temoignage-card blockquote { flex: 1 !important; }

/* ─── SERVICE CTA BUTTONS — 4 DESIGNS ───────────── */
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all var(--trans);
  border: 2px solid transparent;
  width: fit-content;
}
/* Service 1 — Rose filled */
.svc-btn-1 { background: var(--rose); color: var(--white); border-color: var(--rose); }
.svc-btn-1:hover { background: #9e6050; border-color: #9e6050; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,128,106,.3); }
/* Service 2 — Rose outline */
.svc-btn-2 { background: transparent; color: var(--rose); border-color: var(--rose); }
.svc-btn-2:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); }
/* Service 3 — Teal filled */
.svc-btn-3 { background: var(--teal); color: var(--white); border-color: var(--teal); }
.svc-btn-3:hover { background: var(--teal-mid); border-color: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(77,104,120,.3); }
/* Service 4 — Teal outline */
.svc-btn-4 { background: transparent; color: var(--teal); border-color: var(--teal); }
.svc-btn-4:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   V4 — CAHIER DE CHARGES SOHHAM
   ═══════════════════════════════════════════════════ */

/* ─── NAV SUBTITLE → BLANC PUR ───────────────────── */
.nav-brand-name span { color: var(--white) !important; opacity: 0.85; }

/* ─── HERO TITLE — MÊME COULEUR POUR LES 3 MOTS ─── */
.hero-title { color: var(--teal); }
.hero-title em, .hero-title span {
  color: var(--teal) !important;
  font-style: italic;
}

/* ─── SUPPRIMER CERCLES ABSTRAITS ────────────────── */
.home-hero::before, .home-hero::after { display: none !important; }
.seance-section::before, .seance-section::after { display: none !important; }
.page-hero::after { display: none !important; }

/* ─── CERVEAU FILIGRANE ──────────────────────────── */
.home-hero {
  background-image: url('../assets/brain-watermark.svg');
  background-repeat: no-repeat;
  background-position: center right 5%;
  background-size: 520px;
}
.seance-section {
  background-image: url('../assets/brain-watermark.svg');
  background-repeat: no-repeat;
  background-position: center right 8%;
  background-size: 420px;
}

/* ─── HERO CONTENT ALIGNMENT ─────────────────────── */
.hero-content { padding-top: 3rem; padding-bottom: 3rem; }
.hero-subtitle { margin-left: 0; padding-left: 0; }

/* ─── SÉANCE BTN — TEXTE BLEU NUIT ──────────────── */
.seance-btn { color: var(--navy) !important; }
.seance-btn:hover { color: var(--white) !important; }

/* ─── WHATSAPP BTN IN CTA BAND — OUTLINE BLANC ───── */
.cta-band .btn-whatsapp {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,.6) !important;
  color: var(--white) !important;
}
.cta-band .btn-whatsapp:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: var(--white) !important;
  box-shadow: none !important;
}

/* ─── ABOUT SUBTITLE — COULEUR FONCÉE ────────────── */
.about-teaser-content [style*="color:var(--rose)"],
.about-sub-dark {
  color: var(--navy) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
}

/* ─── FOOTER COPYRIGHT = MÊME TAILLE QUE LOCATION ── */
.footer-bottom { font-size: 0.78rem !important; }
.footer-bottom span { font-size: 0.78rem !important; }

/* ─── MOBILE BRAIN WATERMARK ──────────────────────── */
@media (max-width: 768px) {
  .home-hero { background-size: 260px; background-position: bottom right; background-opacity: 0.5; }
  .seance-section { background-size: 200px; }
}

/* ─── BRAIN WATERMARK FIX — PSEUDO-ELEMENT APPROACH ─ */
/* Reset background-image approach (ne contrôle pas opacity) */
.home-hero    { background-image: none !important; }
.seance-section { background-image: none !important; }

/* Hero — cerveau teal discret sur fond ivory */
/* ⚠️ TEST MODE: fond rouge pour vérifier que le pseudo-element existe */
.home-hero::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 4% !important; top: 50% !important;
  transform: translateY(-50%) !important;
  width: 440px !important; height: 380px !important;
  background-image: url('../assets/brain-watermark.svg') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: 5 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}

.seance-section::before { display: none !important; }

/* S'assurer que le contenu est au-dessus */
.hero-content, .seance-inner { position: relative; z-index: 1; }

/* Mobile : réduire taille */
@media (max-width: 768px) {
  .home-hero::before { width: 220px !important; height: 190px !important; opacity: 0.06 !important; right: 0 !important; top: auto !important; bottom: 10px !important; transform: none !important; }
  .seance-section::before { width: 180px !important; height: 160px !important; opacity: 0.08 !important; }
}

/* ═══════════════════════════════════════════════════
   V5 — VALEURS + HERO ALIGNMENT
   ═══════════════════════════════════════════════════ */

/* ─── HERO TITLE ALIGNMENT ───────────────────────── */
/* INSPIREZ / GRANDISSEZ / RAYONNEZ — same left edge as subtitle */
.hero-title {
  padding-left: 0 !important;
  margin-left: 0 !important;
  font-style: italic;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--teal) !important;
  font-family: var(--font-display);
  line-height: 1.05;
}
.hero-subtitle {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* ─── VALEURS SECTION ────────────────────────────── */
.valeurs-section { background: var(--white); }

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.valeur-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem;
}

.valeur-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transition: transform var(--trans);
}
.valeur-card:hover .valeur-icon { transform: translateY(-4px); }

.valeur-icon-rose  { background: linear-gradient(135deg, var(--rose), #d4a099); }
.valeur-icon-teal  { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.valeur-icon-navy  { background: linear-gradient(135deg, var(--navy), var(--teal-mid)); }

.valeur-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.valeur-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── TEMO PREVIEW — 2 columns + adapt for 4 cards ─ */
.temo-preview {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.5rem !important;
}

@media (max-width: 768px) {
  .valeurs-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .temo-preview { grid-template-columns: 1fr !important; }
}

/* Remove CTA band circle */
.cta-band::before { display: none !important; }

/* ═══════════════════════════════════════════════════
   V6 — HERO + SEANCE FIXES
   ═══════════════════════════════════════════════════ */

/* Seance btn → texte blanc */
.seance-btn { color: var(--white) !important; }
.seance-btn:hover { color: var(--white) !important; }

/* Hero titles → UPPERCASE */
.hero-title em { text-transform: uppercase !important; }

/* Hero subtitle → more line height */
.hero-subtitle { line-height: 2 !important; }

/* Brain SVG → mobile only, hidden on desktop */
.home-hero::before { display: none !important; }
@media (max-width: 768px) {
  .home-hero::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    bottom: 10px !important;
    right: 0 !important;
    width: 180px !important;
    height: 160px !important;
    background-image: url('../assets/brain-watermark.svg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 0.1 !important;
    pointer-events: none !important;
    z-index: 0 !important;
    filter: brightness(0) invert(1) !important;
    background-color: transparent !important;
    top: auto !important;
    transform: none !important;
  }
}

/* Hero title mobile — less spacing */
@media (max-width: 768px) {
  .hero-title { line-height: 1.3 !important; }
  .hero-title em { display: block; margin-bottom: 0.1rem; }
}

/* ═══════════════════════════════════════════════════
   V7 — HERO TITLE SIZE + SPACING FIX
   ═══════════════════════════════════════════════════ */

/* Hero title — smaller, tighter */
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 1.5rem !important;
}
.hero-title em {
  display: block !important;
  margin-bottom: 0.15rem !important;
  line-height: 1.15 !important;
}
/* Remove <br> gaps */
.hero-title br { display: none !important; }

/* Hero subtitle — more line height */
.hero-subtitle {
  line-height: 1.95 !important;
  font-size: 0.97rem !important;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem) !important;
    line-height: 1.15 !important;
  }
}

/* ═══════════════════════════════════════════════════
   V8 — BRAIN REPLACES CIRCLES + ALL FINAL FIXES
   ═══════════════════════════════════════════════════ */

/* ─── BRAIN — HERO (ivory bg, teal brain) ────────── */
.home-hero::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: -2% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 480px !important;
  height: 420px !important;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMTc1IiBmaWxsPSIjNEQ2ODc4Ij4KICA8cGF0aCBkPSJNMTAwIDIyIEM4NCAxMiA2MiAxNCA0OCAyOCBDMzQgNDIgMjggNjIgMzMgODIgQzI3IDg2IDIxIDk0IDIzIDEwMyBDMjUgMTEyIDM1IDExNiA0NCAxMTMgQzQ4IDEyNiA1NyAxMzggNzAgMTQ1IEw3MCAxNjIgUTcwIDE3MCA3OCAxNzAgTDkzIDE3MCBRMTAxIDE3MCAxMDEgMTYyIEwxMDEgMTUwIi8+CiAgPHBhdGggZD0iTTEwMCAyMiBDMTE2IDEyIDEzOCAxNCAxNTIgMjggQzE2NiA0MiAxNzIgNjIgMTY3IDgyIEMxNzMgODYgMTc5IDk0IDE3NyAxMDMgQzE3NSAxMTIgMTY1IDExNiAxNTYgMTEzIEMxNTIgMTI2IDE0MyAxMzggMTMwIDE0NSBMMTMwIDE2MiBRMTMwIDE3MCAxMjIgMTcwIEwxMDcgMTcwIFE5OSAxNzAgOTkgMTYyIEw5OSAxNTAiLz4KICA8cGF0aCBkPSJNOTMgMTUwIFExMDAgMTU1IDEwNyAxNTAgTDEwNyAxNjggUTEwNyAxNzUgMTAwIDE3NSBROTMgMTc1IDkzIDE2OCBaIi8+CiAgPHBhdGggZD0iTTU4IDM4IEM1MiA1MCA1NCA2NCA2MCA3MiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNEQ2ODc4IiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBvcGFjaXR5PSIwLjQiLz4KICA8cGF0aCBkPSJNNDAgNjggQzM3IDgwIDQwIDkyIDQ4IDk4IiBmaWxsPSJub25lIiBzdHJva2U9IiM0RDY4NzgiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0xNDIgMzggQzE0OCA1MCAxNDYgNjQgMTQwIDcyIiBmaWxsPSJub25lIiBzdHJva2U9IiM0RDY4NzgiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0xNjAgNjggQzE2MyA4MCAxNjAgOTIgMTUyIDk4IiBmaWxsPSJub25lIiBzdHJva2U9IiM0RDY4NzgiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIG9wYWNpdHk9IjAuNCIvPgogIDxsaW5lIHgxPSIxMDAiIHkxPSIyNSIgeDI9IjEwMCIgeTI9IjE0OCIgc3Ryb2tlPSIjNEQ2ODc4IiBzdHJva2Utd2lkdGg9IjEuNSIgb3BhY2l0eT0iMC4yNSIvPgo8L3N2Zz4=") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.07 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}

/* ─── BRAIN — SÉANCE (navy bg, white brain) ─────── */
.seance-section::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 2% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 400px !important;
  height: 350px !important;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMTc1IiBmaWxsPSJ3aGl0ZSI+CiAgPHBhdGggZD0iTTEwMCAyMiBDODQgMTIgNjIgMTQgNDggMjggQzM0IDQyIDI4IDYyIDMzIDgyIEMyNyA4NiAyMSA5NCAyMyAxMDMgQzI1IDExMiAzNSAxMTYgNDQgMTEzIEM0OCAxMjYgNTcgMTM4IDcwIDE0NSBMNzAgMTYyIFE3MCAxNzAgNzggMTcwIEw5MyAxNzAgUTEwMSAxNzAgMTAxIDE2MiBMMTAxIDE1MCIvPgogIDxwYXRoIGQ9Ik0xMDAgMjIgQzExNiAxMiAxMzggMTQgMTUyIDI4IEMxNjYgNDIgMTcyIDYyIDE2NyA4MiBDMTczIDg2IDE3OSA5NCAxNzcgMTAzIEMxNzUgMTEyIDE2NSAxMTYgMTU2IDExMyBDMTUyIDEyNiAxNDMgMTM4IDEzMCAxNDUgTDEzMCAxNjIgUTEzMCAxNzAgMTIyIDE3MCBMMTA3IDE3MCBROTkgMTcwIDk5IDE2MiBMOTkgMTUwIi8+CiAgPHBhdGggZD0iTTkzIDE1MCBRMTAwIDE1NSAxMDcgMTUwIEwxMDcgMTY4IFExMDcgMTc1IDEwMCAxNzUgUTkzIDE3NSA5MyAxNjggWiIvPgogIDxwYXRoIGQ9Ik01OCAzOCBDNTIgNTAgNTQgNjQgNjAgNzIiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik00MCA2OCBDMzcgODAgNDAgOTIgNDggOTgiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0xNDIgMzggQzE0OCA1MCAxNDYgNjQgMTQwIDcyIiBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBvcGFjaXR5PSIwLjQiLz4KICA8cGF0aCBkPSJNMTYwIDY4IEMxNjMgODAgMTYwIDkyIDE1MiA5OCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgb3BhY2l0eT0iMC40Ii8+CiAgPGxpbmUgeDE9IjEwMCIgeTE9IjI1IiB4Mj0iMTAwIiB5Mj0iMTQ4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgb3BhY2l0eT0iMC4yNSIvPgo8L3N2Zz4=") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.08 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}

/* ─── HERO EYEBROW — more visible ────────────────── */
.hero-eyebrow span {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  color: var(--rose) !important;
}

/* Mobile — hide brain on small screens */
@media (max-width: 768px) {
  .home-hero::before { display: none !important; }
  .seance-section::before { display: none !important; }
}

/* ─── BRAIN V2 — PROPER TWO LOBES ────────────────── */
.home-hero::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: -1% !important; top: 50% !important;
  transform: translateY(-50%) !important;
  width: 440px !important; height: 400px !important;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMjAgMjAwIiBmaWxsPSIjNEQ2ODc4Ij4KICA8IS0tIExlZnQgbG9iZSAtLT4KICA8ZWxsaXBzZSBjeD0iNzgiIGN5PSI4OCIgcng9IjY2IiByeT0iNzIiLz4KICA8IS0tIFJpZ2h0IGxvYmUgLS0+CiAgPGVsbGlwc2UgY3g9IjE0MiIgY3k9Ijg4IiByeD0iNjYiIHJ5PSI3MiIvPgogIDwhLS0gQnJhaW4gc3RlbSAtLT4KICA8cmVjdCB4PSI5NiIgeT0iMTQ4IiB3aWR0aD0iMjgiIGhlaWdodD0iNDIiIHJ4PSIxNCIvPgogIDwhLS0gQ2VudHJhbCBmaXNzdXJlIC0tPgogIDxsaW5lIHgxPSIxMTAiIHkxPSIxOCIgeDI9IjExMCIgeTI9IjE1MCIgc3Ryb2tlPSJyZ2JhKDMwLDU4LDc0LDAuMykiIHN0cm9rZS13aWR0aD0iNCIvPgogIDwhLS0gVG9wIG5vdGNoIC0tPgogIDxlbGxpcHNlIGN4PSIxMTAiIGN5PSIxNiIgcng9IjgiIHJ5PSIxMiIgZmlsbD0icmdiYSgzMCw1OCw3NCwwLjM1KSIvPgogIDwhLS0gTGVmdCBoZW1pc3BoZXJlIGZvbGRzIC0tPgogIDxwYXRoIGQ9Ik0yOCA1NSBDMjIgNzAgMjYgODYgMzYgOTQiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgzMCw1OCw3NCwwLjI1KSIgc3Ryb2tlLXdpZHRoPSIzLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDxwYXRoIGQ9Ik0xNCA5MCBDMTAgMTA2IDE2IDEyMiAyOCAxMzAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgzMCw1OCw3NCwwLjI1KSIgc3Ryb2tlLXdpZHRoPSIzLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDxwYXRoIGQ9Ik0zOCAxMzIgQzUwIDE0NiA2NiAxNTIgODIgMTQ4IiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMzAsNTgsNzQsMC4yNSkiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KICA8IS0tIFJpZ2h0IGhlbWlzcGhlcmUgZm9sZHMgLS0+CiAgPHBhdGggZD0iTTE5MiA1NSBDMTk4IDcwIDE5NCA4NiAxODQgOTQiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgzMCw1OCw3NCwwLjI1KSIgc3Ryb2tlLXdpZHRoPSIzLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDxwYXRoIGQ9Ik0yMDYgOTAgQzIxMCAxMDYgMjA0IDEyMiAxOTIgMTMwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMzAsNTgsNzQsMC4yNSkiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KICA8cGF0aCBkPSJNMTgyIDEzMiBDMTcwIDE0NiAxNTQgMTUyIDEzOCAxNDgiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgzMCw1OCw3NCwwLjI1KSIgc3Ryb2tlLXdpZHRoPSIzLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4=") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.06 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}

.seance-section::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 2% !important; top: 50% !important;
  transform: translateY(-50%) !important;
  width: 380px !important; height: 345px !important;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMjAgMjAwIiBmaWxsPSJ3aGl0ZSI+CiAgPCEtLSBMZWZ0IGxvYmUgLS0+CiAgPGVsbGlwc2UgY3g9Ijc4IiBjeT0iODgiIHJ4PSI2NiIgcnk9IjcyIi8+CiAgPCEtLSBSaWdodCBsb2JlIC0tPgogIDxlbGxpcHNlIGN4PSIxNDIiIGN5PSI4OCIgcng9IjY2IiByeT0iNzIiLz4KICA8IS0tIEJyYWluIHN0ZW0gLS0+CiAgPHJlY3QgeD0iOTYiIHk9IjE0OCIgd2lkdGg9IjI4IiBoZWlnaHQ9IjQyIiByeD0iMTQiLz4KICA8IS0tIENlbnRyYWwgZmlzc3VyZSAtLT4KICA8bGluZSB4MT0iMTEwIiB5MT0iMTgiIHgyPSIxMTAiIHkyPSIxNTAiIHN0cm9rZT0icmdiYSgwLDAsODAsMC4yKSIgc3Ryb2tlLXdpZHRoPSI0Ii8+CiAgPCEtLSBUb3Agbm90Y2ggLS0+CiAgPGVsbGlwc2UgY3g9IjExMCIgY3k9IjE2IiByeD0iOCIgcnk9IjEyIiBmaWxsPSJyZ2JhKDAsMCw4MCwwLjI1KSIvPgogIDwhLS0gTGVmdCBoZW1pc3BoZXJlIGZvbGRzIC0tPgogIDxwYXRoIGQ9Ik0yOCA1NSBDMjIgNzAgMjYgODYgMzYgOTQiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgwLDAsMCwwLjIpIiBzdHJva2Utd2lkdGg9IjMuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CiAgPHBhdGggZD0iTTE0IDkwIEMxMCAxMDYgMTYgMTIyIDI4IDEzMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDAsMCwwLDAuMikiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KICA8cGF0aCBkPSJNMzggMTMyIEM1MCAxNDYgNjYgMTUyIDgyIDE0OCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDAsMCwwLDAuMikiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KICA8IS0tIFJpZ2h0IGhlbWlzcGhlcmUgZm9sZHMgLS0+CiAgPHBhdGggZD0iTTE5MiA1NSBDMTk4IDcwIDE5NCA4NiAxODQgOTQiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgwLDAsMCwwLjIpIiBzdHJva2Utd2lkdGg9IjMuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CiAgPHBhdGggZD0iTTIwNiA5MCBDMjEwIDEwNiAyMDQgMTIyIDE5MiAxMzAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgwLDAsMCwwLjIpIiBzdHJva2Utd2lkdGg9IjMuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CiAgPHBhdGggZD0iTTE4MiAxMzIgQzE3MCAxNDYgMTU0IDE1MiAxMzggMTQ4IiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMCwwLDAsMC4yKSIgc3Ryb2tlLXdpZHRoPSIzLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4=") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.09 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}

@media (max-width: 768px) {
  .home-hero::before    { display: none !important; }
  .seance-section::before { display: none !important; }
}

/* ═══════════════════════════════════════════════════
   V9 — BRAIN PNG FINAL PLACEMENT
   ═══════════════════════════════════════════════════ */

/* ─── SEANCE SECTION — right, small, white ───────── */
.seance-section::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 1% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 260px !important;
  height: 260px !important;
  background-image: url('../assets/brain.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.09 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  filter: brightness(0) invert(1) !important;
}

/* ─── HERO HOME — right, behind photo, teal ──────── */
.home-hero::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 2% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 280px !important;
  height: 280px !important;
  background-image: url('../assets/brain.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.05 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  filter: sepia(1) saturate(2) hue-rotate(160deg) brightness(0.6) !important;
}

/* ─── PAGE HERO (about/services etc.) — right, white, rotated ── */
.page-hero::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 3% !important;
  top: 50% !important;
  transform: translateY(-50%) rotate(15deg) !important;
  width: 200px !important;
  height: 200px !important;
  background-image: url('../assets/brain.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.08 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  filter: brightness(0) invert(1) !important;
}

/* ─── CTA BAND — left side, white, rotated ───────── */
.cta-band {
  position: relative !important;
  overflow: hidden !important;
}
.cta-band::after {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  left: 2% !important;
  top: 50% !important;
  transform: translateY(-50%) rotate(-20deg) !important;
  width: 220px !important;
  height: 220px !important;
  background-image: url('../assets/brain.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.07 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  filter: brightness(0) invert(1) !important;
}

/* Mobile — all hidden */
@media (max-width: 768px) {
  .home-hero::before,
  .seance-section::before,
  .page-hero::before,
  .cta-band::after { display: none !important; }
}

/* ═══════════════════════════════════════════════════
   V10 — SIGNATURE + BRAIN HERO
   ═══════════════════════════════════════════════════ */

/* ─── SIGNATURE BOX (about + footer) ────────────── */


.signature-box {
  display: inline-block;
  border: 1px solid rgba(28,58,74,0.2);
  padding: 1.25rem 2rem;
  margin: 1.25rem 0 1.75rem;
  text-align: center;
}
.signature-name {
  display: block;
  font-family: 'Great Vibes', 'Cormorant Garamond', cursive;
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1.3;
  white-space: nowrap;
}
.signature-tagline {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ─── FOOTER SIGNATURE ───────────────────────────── */
.footer-signature {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.9rem 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}
.footer-sig-name {
  display: block;
  font-family: 'Great Vibes', 'Cormorant Garamond', cursive;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.3;
  white-space: nowrap;
}
.footer-sig-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 0.4rem;
}

/* ─── BRAIN IN HERO (left side, behind text) ─────── */
.home-hero::before {
  left: 5% !important;
  right: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 320px !important;
  height: 320px !important;
  opacity: 0.05 !important;
  filter: sepia(1) saturate(2) hue-rotate(160deg) brightness(0.6) !important;
}

/* ═══════════════════════════════════════════════════
   V11 — SIGNATURE REAL + BRAIN FIXES
   ═══════════════════════════════════════════════════ */

/* ─── REAL SIGNATURE STYLE ───────────────────────── */
.signature-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.sig-name {
  font-family: 'Great Vibes', 'Dancing Script', cursive;
  font-size: 2.8rem;
  color: var(--navy);
  display: block;
  line-height: 1.1;
  white-space: nowrap;
}

/* Footer signature */
.footer-sig-wrap { margin-top: 1.25rem; }
.footer-sig-name {
  font-family: 'Great Vibes', 'Dancing Script', cursive;
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  display: block;
  line-height: 1.1;
  white-space: nowrap;
}

/* ─── BRAIN — HERO HOME smaller, bottom ─────────── */
.home-hero::before {
  width: 180px !important;
  height: 180px !important;
  opacity: 0.05 !important;
  left: auto !important;
  right: 2% !important;
  top: auto !important;
  bottom: 5% !important;
  transform: none !important;
}

/* ─── BRAIN — PAGE HEROES smaller, no rotate ────── */
.page-hero::before {
  width: 130px !important;
  height: 130px !important;
  opacity: 0.08 !important;
  right: 3% !important;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

/* ─── ABOUT TEASER — image fits long text ────────── */
.about-teaser {
  align-items: flex-start !important;
}
.about-teaser-img img,
.about-hero-img img {
  height: auto !important;
  min-height: 380px;
  max-height: 600px;
  object-fit: cover;
}

/* ─── MOBILE BRAIN ───────────────────────────────── */
@media (max-width: 768px) {
  .home-hero::before {
    display: block !important;
    width: 80px !important;
    height: 80px !important;
    opacity: 0.05 !important;
    bottom: 80px !important;
    right: 5% !important;
    top: auto !important;
    transform: none !important;
  }
  .page-hero::before {
    display: block !important;
    width: 70px !important;
    height: 70px !important;
    opacity: 0.07 !important;
    bottom: 10px !important;
    right: 5% !important;
    top: auto !important;
    transform: none !important;
  }
  .seance-section::before {
    width: 90px !important;
    height: 90px !important;
    bottom: 10px !important;
    right: 0 !important;
    top: auto !important;
    transform: none !important;
    opacity: 0.07 !important;
  }
  .cta-band::after {
    width: 80px !important;
    height: 80px !important;
    bottom: 5px !important;
    right: 5px !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 0.06 !important;
  }
}

/* ═══════════════════════════════════════════════════
   V12 — FRAMED SIGNATURE + IMAGE FIT + MOBILE BRAIN
   ═══════════════════════════════════════════════════ */

/* ─── SIGNATURE FRAME (like Fatimazahra logo) ────── */
.sig-frame {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1.4rem 2.2rem 1.1rem;
  margin-top: 2rem;
}
/* Corner frame effect — top-left + bottom-right brackets */
.sig-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  height: 55%;
  border-top: 1.5px solid rgba(28,58,74,0.35);
  border-left: 1.5px solid rgba(28,58,74,0.35);
}
.sig-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 70%;
  height: 55%;
  border-bottom: 1.5px solid rgba(28,58,74,0.35);
  border-right: 1.5px solid rgba(28,58,74,0.35);
}
.sig-frame-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1.2;
  white-space: nowrap;
}
.sig-frame-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-top: 0.45rem;
  text-transform: uppercase;
}

/* Footer variant — white */
.sig-frame-footer::before {
  border-color: rgba(255,255,255,0.3) !important;
}
.sig-frame-footer::after {
  border-color: rgba(255,255,255,0.3) !important;
}
.sig-frame-footer .sig-frame-name { color: rgba(255,255,255,0.9); }
.sig-frame-footer .sig-frame-sub { color: var(--teal-light); }

/* ─── ABOUT IMAGES — fit text height ─────────────── */
.about-teaser {
  align-items: stretch !important;
}
.about-teaser-img {
  display: flex;
  align-items: stretch;
}
.about-teaser-img img {
  height: 100% !important;
  min-height: 480px !important;
  max-height: none !important;
  object-fit: cover !important;
}
.about-hero-grid {
  align-items: stretch !important;
}
.about-hero-img {
  display: flex;
  align-items: stretch;
}
.about-hero-img img {
  height: 100% !important;
  min-height: 550px !important;
  max-height: none !important;
  object-fit: cover !important;
}

/* ─── MOBILE — BRAIN BELOW HERO BUTTONS ──────────── */
@media (max-width: 768px) {
  .home-hero::before { display: none !important; }
  .hero-btns {
    position: relative;
    padding-bottom: 110px;
  }
  .hero-btns::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-image: url('../assets/brain.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    filter: sepia(1) saturate(2) hue-rotate(160deg) brightness(0.6);
  }
  /* images mobile height reset */
  .about-teaser-img img,
  .about-hero-img img {
    min-height: 300px !important;
    height: auto !important;
  }
  .sig-frame { padding: 1.1rem 1.6rem 0.9rem; }
  .sig-frame-name { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════════
   V13 — FINAL IMPROVEMENTS
   ═══════════════════════════════════════════════════ */

/* ─── BRAIN BELOW HERO BUTTONS (desktop) ─────────── */
.home-hero::before { display: none !important; }
.hero-btns {
  position: relative;
  padding-bottom: 100px;
}
.hero-btns::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85px;
  height: 85px;
  background-image: url('../assets/brain.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
  filter: sepia(1) saturate(2) hue-rotate(160deg) brightness(0.6);
}

/* ─── ABOUT IMAGES — smaller, natural fit ────────── */
.about-teaser { align-items: center !important; }
.about-teaser-img img {
  height: 420px !important;
  min-height: 0 !important;
  max-height: 420px !important;
  object-fit: cover !important;
  width: 100%;
}
.about-hero-grid { align-items: center !important; }
.about-hero-img img {
  height: 460px !important;
  min-height: 0 !important;
  max-height: 460px !important;
  object-fit: cover !important;
  width: 100%;
}

/* ─── SIGNATURE — refined, more elegant italic ───── */
.sig-frame {
  padding: 1.1rem 1.8rem 0.9rem;
  margin-top: 1.5rem;
}
.sig-frame-name {
  font-family: 'Dancing Script', cursive;
  font-style: italic;
  font-size: 1.85rem;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.sig-frame-sub {
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  margin-top: 0.4rem;
}
.sig-frame::before,
.sig-frame::after {
  width: 60%;
  height: 45%;
}

/* Footer signature refinements */
.sig-frame-footer { padding: 1rem 1.75rem 0.85rem; margin-top: 1.25rem; }
.sig-frame-footer .sig-frame-name { font-size: 1.55rem; }

@media (max-width: 768px) {
  .hero-btns { padding-bottom: 90px; }
  .hero-btns::after {
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
  }
  .about-teaser-img img,
  .about-hero-img img {
    height: 300px !important;
    max-height: 300px !important;
  }
}

/* ═══════════════════════════════════════════════════
   V14 — BRAIN REDESIGN + PHOTO HEIGHTS + CLEAN
   ═══════════════════════════════════════════════════ */

/* ─── BRAIN — refined circular badge design ──────── */
.hero-btns::after {
  width: 72px !important;
  height: 72px !important;
  opacity: 0.55 !important;
  background-color: rgba(77,104,120,0.08) !important;
  border-radius: 50% !important;
  background-size: 55% !important;
  border: 1px solid rgba(77,104,120,0.15) !important;
  filter: none !important;
  bottom: 8px !important;
}

/* ─── PHOTOS — taller ────────────────────────────── */
.about-teaser-img img {
  height: 520px !important;
  max-height: 520px !important;
}
.about-hero-img img {
  height: 560px !important;
  max-height: 560px !important;
}

/* ─── REMOVE decorative circle on about page image ─ */
.about-hero-img::before,
.about-hero-img::after,
.about-teaser-img::before,
.about-teaser-img::after {
  display: none !important;
}

/* Sig frame in home about teaser — spacing */
.about-teaser-content .sig-frame {
  margin-top: 1.75rem;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .about-teaser-img img { height: 340px !important; max-height: 340px !important; }
  .about-hero-img img { height: 360px !important; max-height: 360px !important; }
  .hero-btns::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* ═══════════════════════════════════════════════════
   V15 — BRAIN BADGE VISIBLE + TALLER PHOTOS
   ═══════════════════════════════════════════════════ */

/* ─── BRAIN BADGE — teal filled, white brain, visible ─ */
.hero-btns::after {
  width: 68px !important;
  height: 68px !important;
  opacity: 1 !important;
  background-color: var(--teal) !important;
  border-radius: 50% !important;
  background-size: 52% !important;
  border: none !important;
  box-shadow: 0 6px 18px rgba(77,104,120,0.3) !important;
  filter: none !important;
  bottom: 10px !important;
}
/* Make the brain white inside the teal circle */
.hero-btns {
  position: relative;
}
.hero-btns .brain-badge {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 68px;
  height: 68px;
  background-color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(77,104,120,0.3);
}
.hero-btns .brain-badge img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ─── PHOTOS taller ──────────────────────────────── */
.about-teaser-img img {
  height: 600px !important;
  max-height: 600px !important;
}
.about-hero-img img {
  height: 640px !important;
  max-height: 640px !important;
  object-position: center bottom !important;
}

@media (max-width: 768px) {
  .about-teaser-img img { height: 380px !important; max-height: 380px !important; }
  .about-hero-img img { height: 400px !important; max-height: 400px !important; }
}

/* Use real brain-badge element instead of pseudo */
.hero-btns::after { display: none !important; }
.hero-btns { padding-bottom: 95px !important; }
@media (max-width: 768px) {
  .hero-btns .brain-badge {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* ══ FINAL BRAIN FIX — kill badge, keep only discreet PNG ══ */
.hero-btns::after,
.brain-badge { display: none !important; }
.hero-btns { padding-bottom: 0 !important; }

.hero-brain-real {
  position: absolute !important;
  bottom: 20px !important;
  left: 20px !important;
  width: 200px !important;
  height: auto !important;
  opacity: 0.08 !important;
  mix-blend-mode: multiply !important;
  pointer-events: none !important;
  z-index: 1 !important;
  border: none !important;
}
/* ══════════════════════════════════════════════════
   BRAIN FIXES FINALES — coller à la fin de style.css
   ══════════════════════════════════════════════════ */

/* ── KILL old brain-filigrane div ── */
.brain-filigrane { display: none !important; }

/* ════════════════════════════════════════
   PAGE HERO (about, services, temo, contact)
   Brain en bas à droite — loin du texte centré
   ════════════════════════════════════════ */
.page-hero::before {
  /* dot pattern SVG — inchangé, on garde */
}
/* Override l'ancien ::after (circle décoratif) et y mettre le brain */
.page-hero::after {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 3% !important;
  bottom: 8% !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 90px !important;
  height: 90px !important;
  background-image: url('../assets/brain.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.09 !important;
  mix-blend-mode: screen !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  filter: brightness(0) invert(1) !important;
}

@media (max-width: 768px) {
  /* Sur mobile : encore plus petit et encore plus en bas à droite */
  .page-hero::after {
    width: 60px !important;
    height: 60px !important;
    opacity: 0.07 !important;
    right: 2% !important;
    bottom: 5% !important;
  }
}

/* ════════════════════════════════════════
   CTA BAND — brain en bas à droite
   Évite le chevauchement avec le texte centré
   ════════════════════════════════════════ */
.cta-band { position: relative !important; overflow: hidden !important; }
.cta-band::before { display: none !important; } /* kill old circle */
.cta-band::after {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 2% !important;
  bottom: 8% !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 100px !important;
  height: 100px !important;
  background-image: url('../assets/brain.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.07 !important;
  mix-blend-mode: screen !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  filter: brightness(0) invert(1) !important;
}

@media (max-width: 768px) {
  .cta-band::after {
    width: 60px !important;
    height: 60px !important;
    opacity: 0.06 !important;
    right: 2% !important;
    bottom: 5% !important;
  }
}

/* ════════════════════════════════════════
   SÉANCE SECTION — brain desktop seulement
   ════════════════════════════════════════ */
.seance-section::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  right: 1% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 180px !important;
  height: 180px !important;
  background-image: url('../assets/brain.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.08 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  filter: brightness(0) invert(1) !important;
}
.seance-section::after { display: none !important; }

@media (max-width: 768px) {
  .seance-section::before { display: none !important; }
}

/* ════════════════════════════════════════
   HERO BRAIN BELOW BUTTONS
   Teal color (pas blanc) desktop + mobile
   ════════════════════════════════════════ */
.hero-brain-below {
  display: block;
  width: 65px;
  height: 65px;
  object-fit: contain;
  opacity: 0.13;
  margin-top: 1.75rem;
  filter: sepia(1) saturate(2) hue-rotate(160deg) brightness(0.5);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-brain-below {
    width: 55px !important;
    height: 55px !important;
    opacity: 0.11 !important;
    /* même filtre teal — pas de invert */
    filter: sepia(1) saturate(2) hue-rotate(160deg) brightness(0.5) !important;
  }
}

/* ════════════════════════════════════════
   SLIDER TÉMOIGNAGES — styles
   Le JS ajoute data-slider="true" sur .temo-preview
   quand le slider est actif
   ════════════════════════════════════════ */
.temo-slider-wrapper {
  position: relative;
  width: 100%;
}

/* Quand le slider est actif, on override la grille */
.temo-preview[data-slider="true"] {
  display: block !important;
  grid-template-columns: unset !important;
}

/* Les cards cachées */
.temo-preview[data-slider="true"] .temoignage-card {
  width: 100% !important;
  margin: 0 !important;
}

/* Dots */
.temo-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-bottom: 0.5rem;
}

.temo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.temo-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ── KILL page-hero::before brain (gardé uniquement pour dot pattern) ── */
.page-hero::before {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238AADB8' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  width: 100% !important;
  height: 100% !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  transform: none !important;
  opacity: 0.4 !important;
  filter: none !important;
  background-size: auto !important;
  background-repeat: repeat !important;
}



/* ═══════════════════════════════════════════════════
   FIX ABOUT IMAGE — image complète, pas coupée
   ═══════════════════════════════════════════════════ */

.about-hero-grid {
  grid-template-columns: 1fr 1fr !important;
  align-items: flex-start !important;
}

.about-hero-img {
  display: block !important;
  position: sticky !important;
  top: 90px !important;
}

.about-hero-img img {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100% !important;
  object-fit: contain !important;
  border-radius: var(--radius-lg) !important;
}

@media (max-width: 960px) {
  .about-hero-img {
    position: static !important;
  }
  .about-hero-img img {
    width: 100% !important;
    height: auto !important;
  }
}


/* ═══════════════════════════════════════════════════
   V16 — HERO IMAGE FIX FINAL
   ═══════════════════════════════════════════════════ */

.home-hero {
  min-height: calc(100vh - 70px);
  max-height: calc(100vh - 70px);
  overflow: hidden;
  align-items: stretch;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 70px);
  min-height: 0;
}

.hero-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 95%;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--ivory) 0%,
    rgba(249,246,241,0.4) 30%,
    transparent 55%
  );
  z-index: 1;
}


/* ═══════════════════════════════════════════════════
   V17 — HERO IMAGE FIX FINAL (client feedback)
   ═══════════════════════════════════════════════════ */

/* Remplacer la photo hero par une image sans filigrane */
/* Option A : on garde hero.jpg mais on corrige le cadrage */
.hero-image-wrap img {
  object-position: center top !important;  /* ou "center center" selon la photo */
}

/* Si la photo est trop coupée verticalement, on peut aussi faire : */
.hero-image-wrap {
  height: calc(100vh - 70px) !important;
}



/* ═══════════════════════════════════════════════════
   V20 — HERO VERSET HORIZONTAL FINAL
   ═══════════════════════════════════════════════════ */

.hero-image-wrap img {
  object-fit: cover !important;
  object-position: center center !important;
}

.hero-image-wrap::after {
  background: linear-gradient(
    to right,
    var(--ivory) 0%,
    rgba(249,246,241,0.5) 25%,
    transparent 50%
  ) !important;
  
}



/* ═══════════════════════════════════════════════════
   FOOTER IVORY
   ═══════════════════════════════════════════════════ */
footer {
  background: var(--ivory) !important;
  color: var(--navy) !important;
}
.footer-brand-name { color: var(--navy) !important; }
.footer-brand-tagline { color: var(--teal-mid) !important; }
.footer-desc { color: var(--text-muted) !important; }
.footer-col h4 { color: var(--teal-mid) !important; }
.footer-col ul li a { color: var(--text-muted) !important; }
.footer-col ul li a:hover { color: var(--navy) !important; }
.footer-bottom { color: var(--text-muted) !important; border-top: 1px solid var(--border) !important; }
.footer-inner { border-bottom: 1px solid var(--border) !important; }
.social-link {
  background: var(--teal-pale) !important;
  color: var(--teal) !important;
  border: 1px solid var(--border) !important;
}
.social-link svg { color: var(--teal) !important; fill: var(--teal) !important; }
.social-link:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
}
.social-link:hover svg { color: var(--white) !important; fill: var(--white) !important; }
.sig-frame-footer .sig-frame-name { color: var(--navy) !important; }
.sig-frame-footer .sig-frame-sub { color: var(--text-muted) !important; }
.sig-frame-footer::before,
.sig-frame-footer::after { border-color: var(--border) !important; }




/* ═══════════════════════════════════════════════════
   V21 — HERO LAPTOP FIX
   ═══════════════════════════════════════════════════ */

.home-hero {
  min-height: calc(100vh - 70px) !important;
  max-height: none !important;
  overflow: visible !important;
  align-items: center !important;
}

.hero-content {
  padding: 3rem 2rem 3rem 3rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  overflow: visible !important;
}

.hero-btns {
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
  overflow: visible !important;
}

.hero-brain-below {
  margin-top: 1.25rem !important;
}

.hero-image-wrap {
  height: 100% !important;
  min-height: calc(100vh - 70px) !important;
  max-height: none !important;
  overflow: hidden !important;
}