/* =====================================================
   Équilibreglobal — Feuille de styles principale
   Design : violet (#6B4FA0) + vert (#4A9B6F)
   Polices : Lato (corps) + Playfair Display (titres)
   ===================================================== */

/* ----- Imports Google Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ----- Variables CSS ----- */
:root {
  --violet:        #6B4FA0;
  --violet-dark:   #52397a;
  --violet-light:  #f0eaf8;
  --green:         #4A9B6F;
  --green-dark:    #367a55;
  --green-light:   #eaf5ef;
  --white:         #ffffff;
  --off-white:     #fafafa;
  --gray-light:    #f4f4f6;
  --gray:          #888;
  --text:          #2c2c3e;
  --text-light:    #555;
  --border:        #e2daf0;
  --shadow:        0 4px 24px rgba(107, 79, 160, 0.10);
  --shadow-hover:  0 8px 32px rgba(107, 79, 160, 0.18);
  --radius:        10px;
  --radius-lg:     18px;
  --font-body:     'Lato', sans-serif;
  --font-title:    'Playfair Display', serif;
  --transition:    0.25s ease;
  --max-width:     1160px;
}

/* ----- Reset & base ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--violet);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--violet-dark); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.25;
  color: var(--text);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

main { flex: 1; }

/* ----- Utilitaires ----- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--gray-light);
}

.section--violet {
  background: var(--violet-light);
}

.section--green {
  background: var(--green-light);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--violet);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ----- Boutons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}
.btn--primary:hover {
  background: var(--violet-dark);
  border-color: var(--violet-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,155,111,0.22);
}

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

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

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}

/* ----- HEADER ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(107,79,160,0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}

/* Logo */
.header__logo {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.header__logo span { color: var(--green); }
.header__logo:hover { color: var(--violet-dark); }

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--violet);
  background: var(--violet-light);
}

/* CTA header */
.header__cta {
  flex-shrink: 0;
}

/* ----- MENU DÉROULANT "SÉANCES" ----- */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__dropdown-toggle:hover,
.nav__dropdown-toggle.active {
  color: var(--violet);
  background: var(--violet-light);
}

.nav__dropdown-toggle .dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
  margin-left: 0.1rem;
}

.nav__dropdown:hover .nav__dropdown-toggle .dropdown-arrow,
.nav__dropdown:focus-within .nav__dropdown-toggle .dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(107,79,160,0.14);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Petit triangle indicateur */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.active {
  background: var(--violet-light);
  color: var(--violet);
}

.nav__dropdown-menu .dropdown-icon {
  font-size: 1rem;
  width: 1.4rem;
  text-align: center;
  flex-shrink: 0;
}

/* Mobile : accordéon séances */
.mobile-nav__group-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  user-select: none;
}
.mobile-nav__group-title:hover { color: var(--violet); background: var(--violet-light); }

.mobile-nav__group-title .dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
}
.mobile-nav__group-title.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.15rem;
  border-left: 2px solid var(--violet-light);
  margin: 0.2rem 0 0.2rem 1rem;
}
.mobile-nav__sub.is-open { display: flex; }

.mobile-nav__sub a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.mobile-nav__sub a:hover { color: var(--violet); background: var(--violet-light); }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background var(--transition);
}
.header__hamburger:hover { background: var(--violet-light); }
.hamburger-bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.header__hamburger.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.header__hamburger.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 0.25rem;
}
.header__mobile-nav.is-open { display: flex; }

.mobile-nav__link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-nav__link:hover { color: var(--violet); background: var(--violet-light); }

.mobile-nav__cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3a2660 0%, var(--violet) 50%, #3d8a5f 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,38,96,0.75) 0%, rgba(107,79,160,0.55) 50%, rgba(61,138,95,0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: #c9f0da;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero page intérieure */
.hero--inner {
  min-height: 38vh;
  padding: 4rem 0;
}
.hero--inner .hero__title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

/* ----- CARDS ----- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card__icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.card__title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--violet);
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.card__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.card__link:hover { color: var(--green-dark); }

/* ----- LISTE BENEFICES ----- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 10px rgba(107,79,160,0.07);
  border-left: 3px solid var(--green);
  font-size: 0.97rem;
  color: var(--text-light);
}

.benefits-list li::before {
  content: '✅';
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ----- DEUX COLONNES ----- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col--reverse .two-col__img {
  order: 2;
}

.two-col__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.two-col__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ----- BLOCKQUOTE ----- */
.quote {
  background: var(--violet-light);
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.75rem;
  font-style: italic;
  color: var(--violet-dark);
  margin: 2rem 0;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ----- SECTION RAISONS ----- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.reason-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--violet);
  transition: transform var(--transition);
}
.reason-item:hover { transform: translateY(-3px); }

.reason-item__num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--violet-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.reason-item__title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--violet);
  margin-bottom: 0.75rem;
}

.reason-item__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ----- SECTION CONTACT ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--violet-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 400;
}

/* ----- FORMULAIRE ----- */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--violet);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(107,79,160,0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form__submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 1rem;
  display: none;
}
.form-alert--success {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #b6e0ca;
}
.form-alert--error {
  background: #fdeaea;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}
.form-alert.visible { display: block; }

/* ----- CTA SECTION ----- */
.cta-section {
  background: linear-gradient(135deg, var(--violet) 0%, var(--green) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn--green {
  background: var(--white);
  color: var(--violet);
  border-color: var(--white);
}
.cta-section .btn--green:hover {
  background: var(--violet-light);
  border-color: var(--violet-light);
  color: var(--violet-dark);
}

/* ----- INFO BANDE (adresse rapide) ----- */
.info-band {
  background: var(--violet);
  color: rgba(255,255,255,0.88);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.info-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

.info-band__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-band__item a {
  color: rgba(255,255,255,0.95);
}
.info-band__item a:hover { color: #c9f0da; }

/* ----- DIPLOMES / GALLERY ----- */
.diplomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.diplome-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  border: 1px solid var(--border);
}
.diplome-card:hover { transform: scale(1.02); }

.diplome-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ----- SECTION SEANCE (deux colonnes avec image) ----- */
.seance-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.seance-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: sticky;
  top: 100px;
}

.seance-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ----- PAGES LÉGALES ----- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.legal-content h1 {
  font-family: var(--font-title);
  color: var(--violet);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-title);
  color: var(--violet);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ----- FOOTER ----- */
.footer {
  background: #1e1530;
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
}

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

.footer__logo {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: block;
}
.footer__logo span { color: #9fd8b5; }

.footer__desc {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer__col-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  color: rgba(255,255,255,0.7);
}

.footer__address a {
  color: rgba(255,255,255,0.85);
}
.footer__address a:hover { color: #9fd8b5; }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__links a:hover { color: #9fd8b5; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer__bottom a {
  color: rgba(255,255,255,0.55);
}
.footer__bottom a:hover { color: #9fd8b5; }

/* ----- DISCLAIMER MÉDICAL ----- */
.disclaimer {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  font-style: italic;
  margin-top: 3rem;
}

/* ----- RESPONSIVE ----- */

/* Tablette */
@media (max-width: 900px) {
  .two-col,
  .seance-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .two-col--reverse .two-col__img { order: 0; }

  .seance-img {
    position: static;
  }

  .seance-img img {
    height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }

  .header__nav,
  .header__cta { display: none; }
  .header__hamburger { display: flex; }

  .hero { min-height: 70vh; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .two-col__img img,
  .seance-img img {
    height: 240px;
  }

  .info-band__inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
