/*
Theme Name:   Éclat Beauté — Child Theme
Theme URI:    https://eclat-beaute-nevers.fr
Description:  Thème enfant Astra — Éclat Beauté, institut de beauté à Nevers
Author:       Gradly Concept
Author URI:   https://gradly-concept.com
Template:     astra
Version:      1.0.0
License:      GNU General Public License v2 or later
Text Domain:  clara-child
*/

/* ============================================================
   DESIGN SYSTEM — L'Atelier de Clara  ·  PREMIUM EDITION
   Palette : Beige chaleureux + Rose poudré + Or doux + Blanc
   Typo : Cormorant Garamond (titres) + DM Sans (corps)
   ============================================================ */

/* Google Fonts chargées via functions.php en preload — pas de @import bloquant */

:root {
  /* Couleurs — Palette violet / mauve */
  --c-mauve:       #7b4b72;
  --c-mauve-deep:  #4a2840;
  --c-mauve-light: #a87898;
  --c-rose:        #e8c4d8;
  --c-rose-light:  #f5e6f0;
  --c-rose-pale:   #fdf3f8;
  --c-gold:        #c9a96e;
  --c-gold-light:  #e8d5b0;
  --c-gold-pale:   #faf5eb;
  --c-cream:       #fefcfa;
  --c-dark:        #2d1225;
  --c-gray:        #7a6575;
  --c-border:      #e8d4e0;

  /* Typo */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Espacements */
  --section-pad: 100px 20px;
  --radius:      20px;
  --radius-sm:   10px;

  /* Ombres */
  --shadow-sm:  0 2px 12px rgba(107,61,94,.08);
  --shadow-md:  0 8px 32px rgba(107,61,94,.14);
  --shadow-lg:  0 20px 60px rgba(107,61,94,.18);
  --shadow-glow: 0 0 40px rgba(201,169,110,.25);
}

/* ── KEYFRAMES ───────────────────────────────────────────── */

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(.5deg); }
  66%      { transform: translateY(-6px) rotate(-.3deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,169,110,.2), 0 0 60px rgba(201,169,110,.1); }
  50%      { box-shadow: 0 0 30px rgba(201,169,110,.35), 0 0 80px rgba(201,169,110,.15); }
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shine-sweep {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes expandWidth {
  from { width: 0; }
  to   { width: 60px; }
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(201,169,110,.3); }
  50%      { border-color: rgba(201,169,110,.6); }
}

@keyframes textReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── ASTRA FULL-WIDTH OVERRIDE ────────────────────────────── */
/* Force toutes les pages en pleine largeur — écrase le container Astra */
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-page,
.ast-separate-container #primary,
.ast-separate-container .ast-container,
.ast-plain-container .site-content .ast-container,
#primary,
.site-content .ast-container,
.ast-container,
.site-main {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

/* Supprimer le padding/margin du wrapper Astra */
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-page {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.ast-separate-container #primary {
  padding: 0 !important;
  margin: 0 !important;
}

/* Supprimer la sidebar si elle existe */
.ast-right-sidebar #secondary,
.ast-left-sidebar #secondary {
  display: none !important;
}

/* Forcer le layout 1 colonne pleine largeur */
.ast-right-sidebar #primary,
.ast-left-sidebar #primary,
#primary {
  width: 100% !important;
  float: none !important;
}

/* Supprimer le background box Astra */
.ast-separate-container .site-main > .ast-row,
.ast-separate-container .ast-article-single {
  background: transparent !important;
  box-shadow: none !important;
}

/* Le site-content aussi en full */
.site-content {
  max-width: 100% !important;
  padding: 0 !important;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-cream);
  color: var(--c-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--c-mauve); text-decoration: none; transition: color .25s; }
a:hover { color: var(--c-gold); }

/* ── SCROLL PROGRESS BAR ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-rose), var(--c-gold));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 10000;
  transition: width .1s linear;
  box-shadow: 0 0 10px rgba(201,169,110,.5);
}

/* ── CUSTOM CURSOR — DÉSACTIVÉ (causait des bugs) ────────── */
/* Cursor custom retiré pour compatibilité */

/* ── TYPOGRAPHIE ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-mauve-deep);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9a7d3e;
  margin-bottom: 12px;
}

/* ── TOP CTA BAR — Fixe en haut ──────────────────────────── */
.top-cta-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-mauve-deep);
  padding: 0 16px;
  height: 44px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.top-cta-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white !important;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: .02em;
  white-space: nowrap;
}

.top-cta-brand:hover {
  color: var(--c-gold-light) !important;
}

.top-cta-actions {
  display: flex;
  gap: 8px;
}

.top-cta-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
}

.top-cta-icon {
  font-size: .85rem;
}

.top-cta-phone {
  background: rgba(255,255,255,.12);
  color: white !important;
  border: 1px solid rgba(255,255,255,.2);
}

.top-cta-phone:hover {
  background: rgba(255,255,255,.2);
  color: white !important;
}

.top-cta-rdv {
  background: var(--c-gold);
  color: white !important;
  border: 1px solid var(--c-gold);
}

.top-cta-rdv:hover {
  background: #b8935a;
  color: white !important;
}

/* Décaler tout le contenu sous la barre CTA */
body {
  padding-top: 44px !important;
}

/* Décaler le header Astra aussi */
.site-header,
#masthead {
  top: 44px !important;
}

/* Fix espace blanc header Astra — TOUT en mauve */
#masthead .ast-container,
.main-header-container,
.main-header-bar,
.ast-primary-header,
.ast-primary-header-bar,
#ast-desktop-header,
.ast-desktop-header-content,
.ast-above-header,
.ast-above-header-bar,
.ast-below-header,
.ast-below-header-bar,
.ast-header-break-point .main-header-bar,
.ast-header-break-point .ast-mobile-header-wrap,
.ast-mobile-header-wrap,
.ast-main-header-bar-alignment {
  background: var(--c-mauve-deep) !important;
  background-color: var(--c-mauve-deep) !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  border: none !important;
  box-shadow: none !important;
}

/* Menu dropdown desktop Astra — quand le toggle est utilisé */
.main-header-menu,
.ast-desktop-header-content .main-header-menu,
.ast-header-break-point .main-header-menu,
.ast-header-break-point .main-navigation ul,
.ast-header-break-point .main-header-bar .main-header-menu {
  background: var(--c-mauve-deep) !important;
}

.ast-header-break-point .main-header-menu .menu-item > a,
.ast-header-break-point .main-navigation .menu-item > a {
  color: rgba(255,255,255,.9) !important;
  border-color: rgba(255,255,255,.08) !important;
}

.ast-header-break-point .main-header-menu .menu-item > a:hover,
.ast-header-break-point .main-navigation .menu-item > a:hover {
  color: var(--c-gold-light) !important;
  background: rgba(255,255,255,.05) !important;
}

/* Dropdown sous-menus desktop */
.main-header-menu .sub-menu,
.ast-desktop-header-content .sub-menu,
.ast-primary-menu .sub-menu {
  background: var(--c-mauve-deep) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.2) !important;
}

.main-header-menu .sub-menu a,
.ast-primary-menu .sub-menu a {
  color: rgba(255,255,255,.85) !important;
}

.main-header-menu .sub-menu a:hover,
.ast-primary-menu .sub-menu a:hover {
  color: var(--c-gold-light) !important;
  background: rgba(255,255,255,.05) !important;
}


/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header,
#masthead {
  background: var(--c-mauve-deep) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .4s, background .4s;
}

.site-header.scrolled,
#masthead.scrolled {
  background: rgba(74,40,64,.98) !important;
  box-shadow: 0 4px 40px rgba(0,0,0,.2) !important;
}

.ast-site-title a,
.site-title a {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  color: white !important;
  font-weight: 600 !important;
  letter-spacing: .04em;
}

.main-navigation a,
.ast-primary-menu a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.75) !important;
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
}

/* Underline animee sur les liens nav */
.main-navigation a::after,
.ast-primary-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-rose));
  transition: width .35s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
}

.main-navigation a:hover::after,
.ast-primary-menu a:hover::after,
.main-navigation .current-menu-item > a::after {
  width: 100%;
}

.main-navigation a:hover,
.ast-primary-menu a:hover,
.main-navigation .current-menu-item > a {
  color: white !important;
}

/* Menu hamburger mobile — blanc */
.ast-mobile-menu-trigger-minimal,
.ast-button-wrap .menu-toggle,
.ast-header-break-point .ast-button-wrap .menu-toggle {
  color: white !important;
}

.ast-mobile-menu-buttons .menu-toggle .ast-mobile-svg,
.menu-toggle svg,
.ast-mobile-svg {
  fill: white !important;
  color: white !important;
}

/* ══ MENU MOBILE — Wildcards AVEC exclusions ══════════════════ */
/* Fond mauve sur tout ce qui est "mobile" + "popup/menu/drawer" mais PAS le contenu du site */
[class*="ast-mobile"][class*="popup"],
[class*="ast-mobile"][class*="drawer"],
[class*="ast-mobile"] [class*="popup"],
[class*="ast-mobile"] [class*="drawer"],
[class*="ast-mobile"] [class*="menu"]:not(.site-main):not(#primary):not(main),
[class*="ast-mobile"] [class*="content"]:not(.site-content):not(#content):not(.entry-content):not(.page-content):not(.post-content):not(.ast-container):not(.site-main),
[class*="ast-mobile"] [class*="inner"]:not(.site-inner):not(.ast-container) {
  background: var(--c-mauve-deep) !important;
  background-color: var(--c-mauve-deep) !important;
}

/* Liens dans les menus mobile — exclure les liens du contenu */
[class*="ast-mobile"][class*="popup"] a,
[class*="ast-mobile"][class*="drawer"] a,
[class*="ast-mobile"][class*="popup"] .menu-item > a,
[class*="ast-mobile"][class*="drawer"] .menu-item > a {
  color: rgba(255,255,255,.92) !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
}

[class*="ast-mobile"][class*="popup"] a:hover,
[class*="ast-mobile"][class*="drawer"] a:hover {
  color: var(--c-gold-light) !important;
}

/* Bouton fermer */
[class*="ast-mobile"][class*="popup"] [class*="close"],
[class*="ast-mobile"][class*="drawer"] [class*="close"] {
  color: white !important;
}
[class*="ast-mobile"][class*="popup"] [class*="close"] svg,
[class*="ast-mobile"][class*="drawer"] [class*="close"] svg {
  fill: white !important;
}

/* Flèches sous-menu */
[class*="ast-mobile"][class*="popup"] .ast-menu-toggle,
[class*="ast-mobile"][class*="drawer"] .ast-menu-toggle {
  color: white !important;
  border-color: rgba(255,255,255,.12) !important;
}

/* Overlay derrière le menu */
.ast-mobile-popup-overlay {
  background: rgba(0,0,0,.5) !important;
}

/* Dropdown menu dans le header (mode non-popup) */
.ast-header-break-point #masthead .main-header-menu {
  background: var(--c-mauve-deep) !important;
}
.ast-header-break-point #masthead .main-header-menu .menu-item > a {
  color: rgba(255,255,255,.92) !important;
  border-color: rgba(255,255,255,.1) !important;
}

/* Bouton nav RDV */
.nav-cta-btn {
  background: linear-gradient(135deg, var(--c-mauve), var(--c-mauve-deep)) !important;
  color: white !important;
  padding: 8px 22px !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  transition: all .3s !important;
  position: relative;
  overflow: hidden;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--c-mauve-deep), #3a1a2e) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(107,61,94,.35);
}

/* ── BOUTONS ──────────────────────────────────────────────── */
.btn, .button, input[type="submit"],
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 38px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Shimmer sur tous les boutons */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: none;
  animation: shine-sweep 4s ease-in-out infinite;
  pointer-events: none;
}

/* Ripple container */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: ripple-effect .6s linear;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-mauve), var(--c-mauve-deep));
  color: white;
  box-shadow: 0 4px 24px rgba(107,61,94,.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(107,61,94,.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--c-mauve);
  border: 1.5px solid var(--c-mauve);
}
.btn-outline:hover {
  background: var(--c-mauve);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(107,61,94,.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--c-gold), #b8935a, var(--c-gold));
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
  color: white;
  box-shadow: 0 4px 24px rgba(201,169,110,.35);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(201,169,110,.5), 0 0 20px rgba(201,169,110,.2);
  color: white;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d1225 0%, var(--c-mauve-deep) 30%, var(--c-mauve) 60%, #8a4a70 100%);
  background-size: 300% 300%;
  animation: gradient-shift 12s ease infinite;
  padding: 100px 20px 80px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, rgba(201,169,110,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(232,180,196,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 20%, rgba(255,255,255,.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Cercle decoratif animé */
.hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: glow-pulse 5s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
  animation: borderGlow 3s ease-in-out infinite;
}
.hero-badge::before {
  content: '\2726';
  color: var(--c-gold-light);
  font-size: .7rem;
  animation: glow-pulse 2s ease-in-out infinite;
}

/* Hero text reveal */
.hero h1 {
  color: white;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.05;
  perspective: 600px;
}

.hero h1 .char {
  display: inline-block;
  opacity: 0;
  animation: textReveal .6s cubic-bezier(.4,0,.2,1) forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--c-gold-light);
  text-shadow: 0 0 40px rgba(201,169,110,.4), 0 0 80px rgba(201,169,110,.15);
  position: relative;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,.78);
  margin: 24px 0 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--c-gold-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(201,169,110,.3);
}
.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Card flottante hero — glassmorphism premium */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 800px;
}

.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 32px;
  padding: 52px 44px;
  text-align: center;
  color: white;
  max-width: 340px;
  width: 100%;
  box-shadow:
    0 24px 64px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.1);
  animation: float 8s ease-in-out infinite;
  transition: transform .15s ease-out, box-shadow .3s;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-card:hover {
  box-shadow:
    0 32px 80px rgba(0,0,0,.3),
    0 0 40px rgba(201,169,110,.15),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.hero-logo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.25);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--c-gold-light);
  overflow: hidden;
  animation: glow-pulse 4s ease-in-out infinite;
  transition: transform .4s;
}

.hero-card:hover .hero-logo-circle { transform: scale(1.05); }

.hero-logo-circle img { width: 100%; height: 100%; object-fit: cover; }

.hero-card-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.hero-card-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stars { color: var(--c-gold-light); font-size: 1rem; text-shadow: 0 0 10px rgba(201,169,110,.4); }
.hero-reviews span { font-size: .82rem; color: rgba(255,255,255,.65); }

/* ── SECTION SEPARATORS ──────────────────────────────────── */
.section-separator {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.section-separator svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── SECTIONS GÉNÉRIQUES ──────────────────────────────────── */
.section { padding: var(--section-pad); position: relative; }

.section-center { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-center h2 { margin-bottom: 16px; }
.section-center p { color: var(--c-gray); font-size: 1.05rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Séparateur doré animé */
.gold-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-rose), var(--c-gold));
  background-size: 200% 100%;
  margin: 16px auto 24px;
  border-radius: 2px;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}

.gold-line.is-visible {
  width: 60px;
  animation: shimmer 3s linear infinite;
}

/* ── SCROLL REVEAL BASE ──────────────────────────────────── */
/* Le JS ajoute .js-reveal-ready au body quand les observers sont prêts.
   Sans JS, tout reste visible. Pas de contenu caché. */

.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(40px) scale(.97);
  filter: blur(4px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1),
              filter .7s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform, filter;
}

.js-reveal-ready .reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

.js-reveal-ready .reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(3px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1),
              filter .7s cubic-bezier(.4,0,.2,1);
}

.js-reveal-ready .reveal-left.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
  filter: blur(0) !important;
}

.js-reveal-ready .reveal-right {
  opacity: 0;
  transform: translateX(50px);
  filter: blur(3px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1),
              filter .7s cubic-bezier(.4,0,.2,1);
}

.js-reveal-ready .reveal-right.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
  filter: blur(0) !important;
}

/* ── SECTION PRESTATIONS ──────────────────────────────────── */
.section-services {
  background: white;
  padding: var(--section-pad);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(253,243,246,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(237,216,228,.6);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Gradient border top animé */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-mauve), var(--c-gold), var(--c-rose));
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

/* Glow overlay au hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,.08), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(107,61,94,.08);
  border-color: var(--c-rose);
  background: rgba(253,243,246,.95);
}

.service-card:hover::before {
  transform: scaleX(1);
  animation: shimmer 2s linear infinite;
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--c-mauve), var(--c-mauve-light));
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(107,61,94,.2);
  transition: transform .4s, box-shadow .4s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(107,61,94,.3), 0 0 20px rgba(107,61,94,.1);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--c-mauve-deep);
}

.service-card p {
  font-size: .9rem;
  color: var(--c-gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--c-gold);
  font-weight: 600;
  text-shadow: 0 0 20px rgba(201,169,110,.2);
  transition: text-shadow .3s;
}

.service-card:hover .service-price {
  text-shadow: 0 0 30px rgba(201,169,110,.4);
}

/* ── SERVICE CARDS AVEC PHOTOS ────────────────────────────── */
.service-card-photo {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.service-card-photo .service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-photo .service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.service-card-photo:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-photo .service-card-body {
  padding: 28px 24px;
  text-align: center;
}

.service-card-photo .service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.service-card-photo .service-duree {
  font-size: .8rem;
  color: var(--c-gray);
}

/* ── PORTFOLIO / GALERIE ─────────────────────────────────── */
.section-portfolio {
  background: white;
  padding: var(--section-pad);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio-filter {
  padding: 8px 24px;
  border: 1.5px solid var(--c-border);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-gray);
  cursor: pointer;
  transition: all .3s;
}

.portfolio-filter:hover,
.portfolio-filter.active {
  background: var(--c-mauve);
  color: white;
  border-color: var(--c-mauve);
  box-shadow: 0 4px 16px rgba(107,61,94,.2);
}

.portfolio-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.portfolio-item {
  position: relative !important;
  border-radius: var(--radius);
  overflow: hidden !important;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
  display: block;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.portfolio-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(74,40,64,.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s;
  z-index: 2;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-cat {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-gold-light);
  margin-bottom: 4px;
}

.portfolio-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
}

/* Portfolio item hidden by filter */
.portfolio-item.hidden {
  display: none;
}

/* ── FLOATING SOCIAL BAR ─────────────────────────────────── */
.social-float {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all .3s;
  text-decoration: none;
}

.social-float-btn:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  color: white;
}

.social-fb { background: #1877F2; }
.social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ── HERO SOCIAL LINKS ───────────────────────────────────── */
.hero-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .3s;
}

.hero-social a:hover {
  background: rgba(255,255,255,.2);
  color: var(--c-gold-light);
  transform: scale(1.1);
}

/* ── MARIAGE CARDS ───────────────────────────────────────── */
.mariage-card {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-sm);
}

.mariage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-gold-light);
}

.mariage-card-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: linear-gradient(135deg, var(--c-gold), #b8935a);
  color: white;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(201,169,110,.3);
}

.mariage-card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.mariage-card h3 {
  font-size: 1.5rem;
  color: var(--c-mauve-deep);
  margin-bottom: 8px;
}

.mariage-card-desc {
  color: var(--c-gray);
  font-size: .92rem;
  margin-bottom: 24px;
}

.mariage-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.mariage-card-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: .88rem;
  color: var(--c-dark);
  padding-left: 24px;
  position: relative;
}

.mariage-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
}

.mariage-card-list li:last-child {
  border-bottom: none;
}

.mariage-card-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(201,169,110,.15);
}

/* ── REVIEWS BADGE ───────────────────────────────────────── */
.reviews-badge {
  text-align: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--c-mauve-deep), var(--c-mauve));
  border-radius: var(--radius);
  color: white;
  margin: 0 auto 40px;
  max-width: 500px;
  box-shadow: var(--shadow-md);
}

.reviews-badge-stars {
  font-size: 1.6rem;
  color: var(--c-gold-light);
  text-shadow: 0 0 20px rgba(201,169,110,.4);
  margin-bottom: 8px;
}

.reviews-badge-text {
  font-size: .95rem;
  margin-bottom: 12px;
}

.reviews-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--c-gold-light);
  text-decoration: none;
  transition: color .25s;
}

.reviews-badge-link:hover { color: white; }

/* ── SECTION POURQUOI NOUS ────────────────────────────────── */
.section-why {
  background: linear-gradient(135deg, #2d1225, var(--c-mauve-deep), var(--c-mauve));
  background-size: 300% 300%;
  animation: gradient-shift 15s ease infinite;
  padding: var(--section-pad);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Motifs decoratifs */
.section-why::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,169,110,.06), transparent 60%);
  pointer-events: none;
}

.section-why h2 { color: white; }
.section-why .gold-line { margin: 16px auto 48px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  padding: 36px 24px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.1), transparent);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.why-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,.1);
  border-color: rgba(201,169,110,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.2), 0 0 30px rgba(201,169,110,.1);
}

.why-item:hover::before { opacity: 1; }

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(201,169,110,.3);
  position: relative;
  z-index: 1;
}
.why-item h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.why-item p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  position: relative;
  z-index: 1;
}

/* ── SECTION AVIS ─────────────────────────────────────────── */
.section-reviews {
  background: linear-gradient(180deg, var(--c-rose-pale) 0%, white 100%);
  padding: var(--section-pad);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(237,216,228,.5);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

/* Guillemets decoratifs */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--c-rose);
  opacity: .2;
  line-height: 1;
  pointer-events: none;
  transition: opacity .3s, color .3s;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-gold-light);
}

.review-card:hover::before {
  opacity: .35;
  color: var(--c-gold);
}

.review-stars { color: var(--c-gold); font-size: 1.1rem; margin-bottom: 16px; text-shadow: 0 0 8px rgba(201,169,110,.3); }

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--c-mauve-deep);
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-mauve-light), var(--c-rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: .95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(107,61,94,.2);
  transition: transform .3s;
}

.review-card:hover .review-avatar { transform: scale(1.1); }

.review-author-name { font-weight: 600; font-size: .9rem; color: var(--c-dark); }
.review-author-sub  { font-size: .78rem; color: var(--c-gray); }

/* ── SECTION RENDEZ-VOUS ──────────────────────────────────── */
.section-rdv {
  background: white;
  padding: var(--section-pad);
}

.rdv-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.rdv-info h2 { margin-bottom: 16px; }
.rdv-info p { color: var(--c-gray); margin-bottom: 32px; }

.rdv-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rdv-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--c-rose-pale);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--c-dark);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.rdv-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-mauve), var(--c-mauve-deep));
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.rdv-option:hover {
  border-color: var(--c-mauve);
  color: white;
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.rdv-option:hover::before { opacity: 1; }

.rdv-option > * { position: relative; z-index: 1; }

.rdv-option-icon {
  width: 48px; height: 48px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}

.rdv-option:hover .rdv-option-icon { transform: scale(1.1) rotate(-5deg); }

/* Formulaire */
.rdv-form {
  background: rgba(253,243,246,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .4s;
}

.rdv-form:focus-within {
  box-shadow: var(--shadow-md), 0 0 30px rgba(107,61,94,.06);
}

.rdv-form h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--c-mauve-deep);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-dark);
  background: white;
  transition: border-color .3s, box-shadow .3s, transform .2s;
}

/* Select dropdown — fleche native + texte complet visible */
.form-group select {
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  appearance: menulist !important;
  height: auto !important;
  min-height: 50px;
  padding: 12px 40px 12px 16px !important;
  line-height: 1.5;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  font-size: .92rem;
}

/* Options dans le dropdown */
.form-group select option {
  padding: 10px 16px;
  font-size: .92rem;
  white-space: normal;
}

/* Inputs seulement — pas de fleche native */
.form-group input {
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-mauve);
  box-shadow: 0 0 0 4px rgba(107,61,94,.1), 0 4px 12px rgba(107,61,94,.06);
  transform: translateY(-1px);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--c-mauve), var(--c-mauve-deep));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 24px rgba(107,61,94,.3);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: shine-sweep 3s ease-in-out infinite;
  pointer-events: none;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(107,61,94,.4), 0 0 20px rgba(107,61,94,.1);
}

/* ── SECTION CONTACT ──────────────────────────────────────── */
.section-contact {
  background: var(--c-cream);
  padding: var(--section-pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(237,216,228,.5);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.contact-card:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold-light);
}

.contact-card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--c-mauve), var(--c-mauve-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(107,61,94,.2);
  transition: transform .3s;
}

.contact-card:hover .contact-card-icon { transform: rotate(-5deg) scale(1.05); }

.contact-card-label { font-size: .75rem; color: var(--c-gray); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.contact-card-value { font-weight: 500; color: var(--c-dark); font-size: .95rem; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  height: 340px;
  transition: box-shadow .4s;
}
.contact-map:hover { box-shadow: var(--shadow-lg), 0 0 40px rgba(107,61,94,.08); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER UNIVERSEL GRADLY ──────────────────────────────── */

/* Masquer le footer Astra natif */
.site-footer .ast-container,
.site-footer .ast-row,
#colophon .ast-container,
#colophon .ast-row,
.ast-small-footer,
.ast-footer-copyright {
  display: none !important;
}

/* Conserver le wrapper Astra comme fond */
.site-footer,
#colophon {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── Footer principal ───────────────────────────────────── */
.gc-footer {
  background: linear-gradient(135deg, #1a0f14 0%, var(--c-mauve-deep) 100%);
  color: rgba(255,255,255,.7);
  padding: 56px 24px 24px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

/* Ligne dorée decorative en haut */
.gc-footer-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--c-gold) 30%, var(--c-rose) 50%, var(--c-gold) 70%, transparent 95%);
  opacity: .6;
}

/* Layout 3 colonnes */
.gc-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Col 1 : Marque */
.gc-footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: white;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.gc-footer-brand-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin: 0;
}

/* Cols 2 & 3 : Titres */
.gc-footer-nav h4,
.gc-footer-seo h4 {
  color: white;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

/* Listes de liens */
.gc-footer-nav ul,
.gc-footer-seo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gc-footer-nav li,
.gc-footer-seo li {
  margin-bottom: 10px;
}

.gc-footer-nav a,
.gc-footer-seo a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  text-decoration: none;
  transition: color .25s, padding-left .25s;
  display: inline-block;
  line-height: 1.5;
}

.gc-footer-nav a:hover,
.gc-footer-seo a:hover {
  color: var(--c-gold-light);
  padding-left: 5px;
}

/* Lien SEO interne — legèrement mis en avant */
.gc-footer-seo-link {
  color: rgba(255,255,255,.55) !important;
  font-size: .86rem !important;
  line-height: 1.55 !important;
}

.gc-footer-seo-link:hover {
  color: var(--c-gold-light) !important;
}

/* Barre basse */
.gc-footer-bottom {
  max-width: 1100px;
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  color: rgba(255,255,255,.48);
}

.gc-footer-bottom span {
  line-height: 1.5;
}

/* Lien crédit Gradly — discret */
.gc-footer-credit {
  color: rgba(255,255,255,.5) !important;
  text-decoration: none;
  transition: color .25s;
  font-size: .76rem;
}

.gc-footer-credit:hover {
  color: var(--c-gold-light) !important;
}

.gc-footer-credit strong {
  font-weight: 600;
  color: inherit;
}

/* ── BREADCRUMBS ─────────────────────────────────────────── */
.gc-breadcrumbs {
  padding: 14px 24px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.gc-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gc-breadcrumbs a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .25s;
}

.gc-breadcrumbs a:hover {
  color: var(--c-gold-light);
}

.gc-breadcrumbs-sep {
  color: rgba(255,255,255,.3);
  font-size: .7rem;
}

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-item {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item:hover {
  border-color: var(--c-rose);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-mauve-deep);
  text-align: left;
  line-height: 1.4;
  transition: color .25s;
}

.faq-question:hover {
  color: var(--c-gold);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  color: var(--c-gray);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--c-gold);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  font-size: .95rem;
  color: var(--c-gray);
  line-height: 1.7;
  margin: 0;
}

/* ── ANIMATIONS DE BASE ──────────────────────────────────── */
.fade-up { animation: fadeUp .8s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }

/* ── TABLET RESPONSIVE (≤ 900px) ─────────────────────────── */
@media (max-width: 900px) {
  /* Hero */
  .hero-inner       { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-actions     { justify-content: center; }
  .hero-stats       { justify-content: center; flex-wrap: wrap; }
  .hero-visual      { order: -1; }
  .hero-card        { max-width: 280px; margin: 0 auto; }
  .hero::after      { display: none; }

  /* Layout */
  .rdv-wrapper      { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid     { grid-template-columns: 1fr; }
  .gc-footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .gc-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-separator { height: 50px; }

  /* Portfolio */
  .portfolio-grid   { grid-template-columns: repeat(3, 1fr) !important; gap: 12px; }

  /* Reviews */
  .reviews-grid     { grid-template-columns: 1fr 1fr; max-width: 700px; margin: 0 auto; }

  /* Services */
  .services-grid    { grid-template-columns: repeat(2, 1fr) !important; }

  /* Mariage cards */
  .mariage-card     { padding: 32px 24px; }
}

/* ── REDUCE MOTION — accessibilité + perf ────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── MOBILE RESPONSIVE (≤ 600px) ─────────────────────────── */
@media (max-width: 600px) {
  :root { --section-pad: 60px 16px; }

  /* Désactiver animations lourdes sur mobile */
  .hero { animation: none !important; background-size: 100% 100% !important; }
  .hero-card { animation: none !important; }
  .btn::before { animation: none !important; }
  .form-submit::before { animation: none !important; }
  .hero-logo-circle { animation: none !important; }
  .section-why { animation: none !important; background-size: 100% 100% !important; }
  .btn-gold { animation: none !important; background-size: 100% 100% !important; }
  .scroll-progress { display: none !important; }
  .hero-particles { display: none !important; }

  /* Hero */
  .hero             { padding: 60px 16px 40px; min-height: 85vh; }
  .hero h1          { font-size: 2.2rem; }
  .hero-subtitle    { font-size: .95rem; }
  .hero-badge       { font-size: .7rem; padding: 6px 14px; }
  .hero-stats       { gap: 16px; }
  .hero-stat strong { font-size: 1.6rem; }
  .hero-stat span   { font-size: .7rem; }
  .hero-actions     { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Cards / Forms */
  .form-row         { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rdv-form         { padding: 24px 16px; }
  .rdv-wrapper      { gap: 32px; }

  /* Portfolio */
  .portfolio-grid   { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .portfolio-item   { border-radius: 12px; }
  .portfolio-overlay { padding: 12px; }
  .portfolio-label  { font-size: .9rem; }
  .portfolio-filters { gap: 6px; }
  .portfolio-filter { padding: 6px 16px; font-size: .75rem; }

  /* Services with photos */
  .services-grid            { grid-template-columns: 1fr !important; max-width: 500px; margin: 0 auto; }
  .service-card-photo .service-card-img { height: 200px; }

  /* Reviews */
  .reviews-grid     { grid-template-columns: 1fr !important; max-width: 500px; }
  .review-card      { padding: 24px; }
  .review-text      { font-size: .95rem; }
  .reviews-badge    { padding: 18px 20px; margin-bottom: 28px; }

  /* Contact */
  .contact-card     { padding: 16px; }
  .contact-map      { height: 250px; }

  /* Mariage */
  .mariage-card     { padding: 28px 20px; }
  .mariage-card h3  { font-size: 1.3rem; }
  .mariage-card-price { font-size: 1.5rem; }
  .mariage-card-badge { font-size: .6rem; right: -35px; top: 12px; }
  .hero-mariage     { min-height: 60vh !important; }

  /* Separators */
  .section-separator { height: 30px; }

  /* Section headings */
  .section-center   { margin-bottom: 40px; }
  .section-center h2 { font-size: 1.6rem; }

  /* Social float */
  .social-float     { right: 12px; bottom: 80px; }
  .social-float-btn { width: 42px; height: 42px; }

  /* Buttons */
  .btn              { padding: 13px 28px; font-size: .85rem; }

  /* Top CTA bar */
  .top-cta-bar      { height: 40px; padding: 0 10px; }
  .top-cta-brand    { font-size: .95rem; }
  .top-cta-btn      { padding: 5px 10px; font-size: .72rem; }
  body              { padding-top: 40px !important; }
  .site-header, #masthead { top: 40px !important; }

  /* A propos mini galerie */
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── VERY SMALL SCREENS (≤ 380px) ────────────────────────── */
@media (max-width: 380px) {
  .hero h1          { font-size: 1.9rem; }
  .hero-card        { max-width: 240px; padding: 36px 24px; }
  .hero-card-name   { font-size: 1.5rem; }
  .hero-logo-circle { width: 100px; height: 100px; }
  .portfolio-grid   { grid-template-columns: repeat(2, 1fr) !important; gap: 6px; }
  .why-grid         { grid-template-columns: 1fr; }
  .service-card-photo .service-card-body { padding: 20px 16px; }

  /* Top CTA bar — icônes seules */
  .top-cta-label    { display: none; }
  .top-cta-icon     { font-size: 1rem; }
  .top-cta-brand    { font-size: .85rem; }

  /* Mariage */
  .mariage-card-list li { font-size: .82rem; }
}

/* ── UTILITAIRES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   ÉLÉMENTS DE PROSPECTION — Gradly Concept
   Bandeau démo · CTA bas · Popup
   ============================================================ */

/* ── Variable hauteur bandeau démo (mise à jour par JS) ─────── */
:root {
  --demo-banner-height: 0px;
}

/* ── BANDEAU DÉMO — Fixé tout en haut ───────────────────────── */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  background: linear-gradient(90deg, #b8860b 0%, #d4a017 50%, #b8860b 100%);
  color: #1a0a00;
  text-align: center;
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: .80rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: var(--demo-banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(180,130,0,.25);
}

.demo-banner a {
  color: #1a0a00 !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.demo-banner a:hover { opacity: .72; }

/* Décaler la barre CTA sous le bandeau démo */
.top-cta-bar {
  top: var(--demo-banner-height) !important;
}

/* Décaler body + header Astra sous les deux barres */
body {
  padding-top: calc(44px + var(--demo-banner-height)) !important;
}

.site-header,
#masthead {
  top: calc(44px + var(--demo-banner-height)) !important;
}

/* ── CTA BANDEAU BAS ─────────────────────────────────────────── */
.cta-bandeau {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 60px 13px 24px;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
}

.cta-bandeau.active {
  transform: translateY(0);
}

.cta-bandeau-text {
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-size: .90rem;
  white-space: nowrap;
}

.cta-bandeau-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #d4a017;
  color: #111 !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(212,160,23,.35);
}

.cta-bandeau-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212,160,23,.5);
}

.cta-bandeau-close {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s;
}

.cta-bandeau-close:hover { color: rgba(255,255,255,.85); }

@media (max-width: 580px) {
  .cta-bandeau {
    flex-direction: column;
    gap: 10px;
    padding: 16px 40px 16px 16px;
    align-items: flex-start;
  }
  .cta-bandeau-text {
    white-space: normal;
    font-size: .84rem;
  }
  .cta-bandeau-btn {
    width: 100%;
    justify-content: center;
    font-size: .92rem;
  }
  .cta-bandeau-close {
    top: 12px;
    transform: none;
  }
}

/* ── POPUP PROSPECTION ──────────────────────────────────────── */
.prosp-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(20, 10, 30, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.prosp-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.prosp-popup-modal {
  background: #181d2e;
  border-radius: 22px;
  padding: 42px 38px 34px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 28px 90px rgba(0,0,0,.65);
  transform: scale(.9) translateY(24px);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
}

.prosp-popup-overlay.active .prosp-popup-modal {
  transform: scale(1) translateY(0);
}

.prosp-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.65);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.prosp-popup-close:hover {
  background: rgba(255,255,255,.2);
  color: white;
}

.prosp-popup-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  line-height: 1;
  display: block;
}

.prosp-popup-modal h2 {
  color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-size: 1.70rem !important;
  font-weight: 600 !important;
  margin: 0 0 16px !important;
  line-height: 1.28 !important;
  text-shadow: none !important;
}

.prosp-popup-modal p {
  color: rgba(255,255,255,.72);
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.prosp-popup-modal p strong {
  color: #ffffff;
  font-weight: 700;
}

.prosp-popup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.prosp-popup-list li {
  color: var(--c-gold-light);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 500;
}

.prosp-popup-cta {
  display: block;
  background: linear-gradient(135deg, var(--c-gold), #c8960c);
  color: #1a0800 !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none !important;
  margin-bottom: 14px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(201,169,110,.38);
}

.prosp-popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(201,169,110,.55);
  color: #1a0800 !important;
}

.prosp-popup-skip {
  display: block;
  background: none;
  border: none;
  color: rgba(255,255,255,.38);
  font-family: var(--font-body);
  font-size: .88rem;
  cursor: pointer;
  padding: 4px;
  margin: 0 auto;
  transition: color .2s;
}

.prosp-popup-skip:hover { color: rgba(255,255,255,.65); }

@media (max-width: 520px) {
  .prosp-popup-modal {
    padding: 36px 22px 28px;
  }
  .prosp-popup-modal h2 { font-size: 1.42rem !important; }
  .prosp-popup-modal p { font-size: .88rem; }
}

/* Ajuster le @media mobile — compenser le bandeau démo */
@media (max-width: 768px) {
  body {
    padding-top: calc(40px + var(--demo-banner-height)) !important;
  }
  .site-header,
  #masthead {
    top: calc(40px + var(--demo-banner-height)) !important;
  }
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  .scroll-progress,
  .custom-cursor,
  .custom-cursor-dot,
  .social-float,
  .hero-particles,
  .top-cta-bar,
  .gc-footer-line { display: none !important; }
  .hero { min-height: auto; padding: 40px 20px; background: #f5f5f5 !important; animation: none !important; }
  .hero::before, .hero::after { display: none !important; }
  body { background: white; padding-top: 0 !important; color: #000; }
  .site-header, #masthead { position: relative !important; top: 0 !important; }
  h1, h2, h3, h4 { color: #000 !important; }
  a { color: #333 !important; }
  .btn, .btn-primary, .btn-gold, .btn-outline { box-shadow: none !important; }
  .gc-footer { background: #333 !important; }
}
