/* =========================================
   INSTANT PHOTO STUDIO — Feuille de style principale
   Palette : #dfb9b9 rose poudré / blanc / noir
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --rose:        #dfb9b9;
  --rose-dark:   #c9a0a0;
  --rose-light:  #f5ebe8;
  --rose-pale:   #fdf7f6;
  --black:       #1a1a1a;
  --black-soft:  #2d2d2d;
  --grey:        #6b6b6b;
  --grey-light:  #e8e8e8;
  --white:       #ffffff;
  --green-dark:  #1b3c34; /* accent titre hero uniquement */

  --ff-title: 'Playfair Display', Georgia, serif;
  --ff-body:  'Inter', system-ui, sans-serif;

  --radius:   12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-md:0 8px 40px rgba(0,0,0,.12);
  --shadow-lg:0 20px 60px rgba(0,0,0,.15);

  --transition: .35s cubic-bezier(.4,0,.2,1);
  --nav-h: 80px;
}

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

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}
.nav.transparent { background: transparent; }

.nav-logo {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-title);
  font-size: 1.1rem; font-weight: 600;
  color: var(--black);
}
.nav-logo img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; }
.nav-logo span { display: none; }

.nav-links {
  flex: 1; display: flex; justify-content: center; align-items: center; gap: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: block; padding: 8px 18px;
  font-size: .88rem; font-weight: 500; letter-spacing: .03em;
  color: var(--black-soft);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--rose-dark); }
.nav-link.active { color: var(--rose-dark); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle::after {
  content: '›'; display: inline-block; margin-left: 4px;
  transform: rotate(90deg); transition: transform .25s;
}
.dropdown:hover .dropdown-toggle::after { transform: rotate(-90deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 12px 0;
  min-width: 200px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 9px 20px;
  font-size: .85rem; color: var(--black-soft);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--rose-light); color: var(--rose-dark); }

.nav-actions {
  flex: 0 0 auto; display: flex; align-items: center; gap: 12px;
}
.nav-btn-outline {
  padding: 8px 16px; border: 1.5px solid var(--rose);
  border-radius: 40px; font-size: .82rem; font-weight: 500;
  color: var(--black); background: transparent;
  transition: all var(--transition);
}
.nav-btn-outline:hover { background: var(--rose); }
.nav-btn-primary {
  padding: 9px 20px; background: var(--black);
  border-radius: 40px; font-size: .82rem; font-weight: 500;
  color: var(--white); border: none;
  transition: all var(--transition);
}
.nav-btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); z-index: 999;
  padding: 20px 5% 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 12px 0;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--grey-light);
  color: var(--black-soft);
}
.nav-mobile .section-title-sm {
  padding: 16px 0 4px; font-size: .75rem; letter-spacing: .12em;
  color: var(--grey); text-transform: uppercase; font-weight: 600;
  border: none;
}
.nav-mobile .mobile-actions {
  margin-top: 20px; display: flex; flex-direction: column; gap: 10px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--rose-pale);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--rose-light) 40%, #ecdcda 100%);
}
.hero-shapes {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-shape {
  position: absolute; border-radius: 50%;
  background: var(--rose); opacity: .18;
}
.hero-shape-1 { width: 500px; height: 500px; top: -100px; right: -80px; animation: float 8s ease-in-out infinite; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -60px; left: 10%; animation: float 10s ease-in-out infinite reverse; }
.hero-shape-3 { width: 180px; height: 180px; top: 30%; right: 20%; animation: float 6s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { }
.hero-overtitle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rose-dark);
  margin-bottom: 20px;
}
.hero-overtitle::before {
  content: ''; display: block; width: 32px; height: 1.5px; background: var(--rose-dark);
}
.hero-title {
  font-family: var(--ff-title);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.18;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--rose-dark); }
.hero-subtitle {
  font-size: 1.05rem; color: var(--grey);
  line-height: 1.7; margin-bottom: 40px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 16px; height: 520px;
}
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--rose); position: relative;
}
.hero-photo:nth-child(1) { grid-row: 1 / 3; }
.hero-photo:nth-child(2) { }
.hero-photo:nth-child(3) { }
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .8rem;
}
.photo-placeholder svg { width: 32px; height: 32px; opacity: .5; }
.ph-family { background: linear-gradient(160deg, #dfb9b9 0%, #c9a0a0 100%); }
.ph-baby   { background: linear-gradient(160deg, #e8c8c8 0%, #dfb9b9 100%); }
.ph-couple { background: linear-gradient(160deg, #d4abab 0%, #c0909090 100%); }
.ph-wedding{ background: linear-gradient(160deg, #c9a0a0 0%, #b08080 100%); }
.ph-portrait{ background: linear-gradient(160deg, #e0bebe 0%, #d0acac 100%); }
.ph-preg   { background: linear-gradient(160deg, #ead0d0 0%, #dfb9b9 100%); }
.ph-corp   { background: linear-gradient(160deg, #d4abab 0%, #c9a0a0 100%); }
.ph-event  { background: linear-gradient(160deg, #e4c0c0 0%, #d8b0b0 100%); }

/* Floating badge */
.hero-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--white); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  animation: fadeInUp .8s 1s both;
}
.hero-badge-icon {
  width: 40px; height: 40px; background: var(--rose-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-badge-text { font-size: .78rem; }
.hero-badge-text strong { display: block; font-weight: 600; }
.hero-badge-text span { color: var(--grey); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 40px;
  font-family: var(--ff-body); font-size: .9rem; font-weight: 600;
  letter-spacing: .02em; border: none;
  transition: all var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--black); color: var(--white);
}
.btn-primary:hover { background: var(--black-soft); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.btn-rose {
  background: var(--rose); color: var(--black);
}
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(223,185,185,.4); }

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

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-lg { padding: 18px 42px; font-size: 1rem; }

.btn-arrow::after { content: ' →'; }
.btn-arrow:hover::after { animation: nudgeRight .4s ease; }
@keyframes nudgeRight { 0%,100%{transform:translateX(0)} 50%{transform:translateX(6px)} }

/* =========================================
   SECTIONS GÉNÉRALES
   ========================================= */
.section { padding: 100px 5%; }
.section-sm { padding: 60px 5%; }
.section-rose { background: var(--rose-light); }
.section-pale { background: var(--rose-pale); }
.section-dark { background: var(--black); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--rose-dark);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 1.5px; background: var(--rose-dark);
}
.section-title {
  font-family: var(--ff-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--rose-dark); }
.section-subtitle {
  font-size: 1.05rem; color: var(--grey);
  max-width: 560px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =========================================
   SIGNATURE STRIP
   ========================================= */
.signature-strip {
  background: var(--black); color: var(--white);
  padding: 24px 5%; text-align: center;
  overflow: hidden;
}
.signature-strip .marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marquee 20s linear infinite;
}
.signature-strip span {
  font-family: var(--ff-title); font-size: 1.1rem; font-style: italic;
  color: var(--rose); white-space: nowrap;
}
.signature-strip .dot { color: var(--white); opacity: .3; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   PRESTATIONS / SÉANCES
   ========================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 60px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-photo {
  height: 220px; position: relative; overflow: hidden;
}
.service-photo .photo-placeholder {
  transition: transform var(--transition);
}
.service-card:hover .service-photo .photo-placeholder { transform: scale(1.05); }
.service-num {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--ff-title); font-size: 2rem; font-weight: 700;
  color: rgba(255,255,255,.35); line-height: 1;
}
.service-body { padding: 24px; }
.service-body h3 {
  font-family: var(--ff-title); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 8px;
}
.service-body p { font-size: .9rem; color: var(--grey); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: .85rem; font-weight: 600;
  color: var(--rose-dark); border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.service-link:hover { border-color: var(--rose-dark); }
.service-link::after { content: '→'; }

/* =========================================
   GALERIE
   ========================================= */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px; justify-content: center;
}
.filter-btn {
  padding: 8px 22px; border-radius: 40px; border: 1.5px solid var(--grey-light);
  font-size: .83rem; font-weight: 500; background: var(--white);
  color: var(--grey); transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--black); color: var(--white); border-color: var(--black);
}

.gallery-grid {
  columns: 3; gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-item-inner {
  position: relative; overflow: hidden;
}
.gallery-photo {
  width: 100%; border-radius: var(--radius);
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover .gallery-photo { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  border-radius: var(--radius);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { color: var(--white); }
.gallery-overlay-content h4 { font-family: var(--ff-title); font-size: 1rem; margin-bottom: 4px; }
.gallery-overlay-content span { font-size: .78rem; opacity: .8; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s, visibility .35s;
  padding: 20px;
}
.lightbox-overlay.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.lightbox-inner {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 1000px; width: 100%;
  display: grid; grid-template-columns: 1.4fr 1fr;
  overflow: hidden; max-height: 90vh;
  transform: scale(.95);
  transition: transform .35s;
}
.lightbox-overlay.open .lightbox-inner { transform: scale(1); }
.lightbox-photo {
  min-height: 500px; background: var(--rose);
  position: relative;
}
.lightbox-photo .photo-placeholder { height: 100%; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition); z-index: 10;
}
.lightbox-close:hover { background: var(--white); transform: rotate(90deg); }
.lightbox-info { padding: 40px; overflow-y: auto; }
.lightbox-category {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--rose-dark); margin-bottom: 12px;
}
.lightbox-title {
  font-family: var(--ff-title); font-size: 1.5rem; font-weight: 600;
  margin-bottom: 20px;
}
.lightbox-divider { height: 1px; background: var(--grey-light); margin-bottom: 20px; }
.lightbox-review-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.lightbox-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 8px; }
.lightbox-quote {
  font-size: .92rem; color: var(--black-soft); line-height: 1.7;
  font-style: italic; margin-bottom: 8px;
}
.lightbox-author { font-size: .82rem; color: var(--grey); }
.lightbox-cta { margin-top: 28px; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.85); border: none;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.lightbox-nav:hover { background: var(--white); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

/* =========================================
   TÉMOIGNAGES
   ========================================= */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 50px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; font-size: .95rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: .95rem; line-height: 1.75; color: var(--black-soft);
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--rose); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-title); font-size: 1rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-meta { font-size: .78rem; color: var(--grey); }

/* =========================================
   ABOUT / MÉLANIE
   ========================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo-main {
  border-radius: var(--radius-xl); overflow: hidden;
  height: 580px; background: var(--rose);
}
.about-photo-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--black); color: var(--white);
  border-radius: var(--radius-lg); padding: 24px;
  max-width: 200px;
}
.about-photo-badge .badge-num {
  font-family: var(--ff-title); font-size: 2.4rem; font-weight: 700;
  color: var(--rose); line-height: 1;
}
.about-photo-badge .badge-text { font-size: .82rem; margin-top: 4px; color: rgba(255,255,255,.7); }

.about-text .section-label { margin-top: 0; }
.about-text blockquote {
  font-size: .97rem; line-height: 1.85; color: var(--black-soft);
  border-left: 3px solid var(--rose); padding-left: 20px;
  margin: 24px 0; font-style: italic;
}
.about-stats {
  display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap;
}
.stat-card {
  flex: 1 1 120px; background: var(--rose-light); border-radius: var(--radius);
  padding: 20px; text-align: center;
}
.stat-num {
  font-family: var(--ff-title); font-size: 1.8rem; font-weight: 700;
  color: var(--rose-dark); line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--grey); margin-top: 4px; line-height: 1.3; }

/* =========================================
   TARIFS / PRICING
   ========================================= */
.pricing-table-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); overflow: hidden; margin-top: 50px;
}
.pricing-table-header {
  background: var(--black); color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 20px 32px;
}
.pricing-table-header span {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; opacity: .7;
}
.pricing-table-header span:not(:first-child) { text-align: center; }
.pricing-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 32px; border-bottom: 1px solid var(--grey-light);
  transition: background var(--transition);
  align-items: center;
}
.pricing-row:hover { background: var(--rose-pale); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row .qty {
  font-family: var(--ff-title); font-size: 1.4rem; font-weight: 600;
}
.pricing-row .price {
  text-align: center; font-weight: 600; font-size: 1.05rem;
}
.pricing-row .per-photo {
  text-align: center; font-size: .9rem; color: var(--rose-dark); font-weight: 500;
}
.pricing-row.highlighted { background: var(--rose-light); }
.pricing-free-note {
  background: var(--rose-pale); border-top: 1px solid var(--rose);
  padding: 20px 32px; text-align: center;
  font-size: .88rem; color: var(--black-soft);
}
.pricing-free-note strong { color: var(--rose-dark); }

/* Pricing calculator */
.calculator {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); padding: 40px; margin-top: 40px;
}
.calculator h3 {
  font-family: var(--ff-title); font-size: 1.5rem; margin-bottom: 24px;
}
.calc-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.calc-label { font-size: .88rem; font-weight: 500; min-width: 140px; }
.calc-input {
  width: 80px; padding: 10px 14px; border: 1.5px solid var(--grey-light);
  border-radius: 8px; font-size: 1rem; font-family: var(--ff-body);
  transition: border-color var(--transition);
}
.calc-input:focus { outline: none; border-color: var(--rose-dark); }
.calc-result {
  background: var(--rose-pale); border-radius: var(--radius);
  padding: 24px; margin-top: 16px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
}
.calc-total { font-family: var(--ff-title); font-size: 2rem; font-weight: 700; color: var(--black); }
.calc-breakdown { font-size: .85rem; color: var(--grey); }

/* =========================================
   EVENTS
   ========================================= */
.events-list { margin-top: 50px; display: flex; flex-direction: column; gap: 20px; }
.event-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  display: grid; grid-template-columns: 120px 1fr auto;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-date-block {
  background: var(--rose); display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 20px;
}
.event-day { font-family: var(--ff-title); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.event-month { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.8); margin-top: 4px; }
.event-body { padding: 24px; }
.event-tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.event-tag {
  padding: 3px 10px; border-radius: 20px; font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}
.tag-famille { background: var(--rose-light); color: var(--rose-dark); }
.tag-animaux { background: #fef3c7; color: #92400e; }
.tag-complet { background: #fee2e2; color: #991b1b; }
.tag-dispo   { background: #dcfce7; color: #166534; }
.event-body h3 { font-family: var(--ff-title); font-size: 1.2rem; margin-bottom: 6px; }
.event-body .meta { font-size: .85rem; color: var(--grey); display: flex; gap: 16px; flex-wrap: wrap; }
.event-body .meta span::before { margin-right: 4px; }
.event-action { padding: 24px; display: flex; align-items: center; }

/* Booking flow */
.booking-steps {
  display: flex; gap: 0; margin-bottom: 40px; overflow: hidden; border-radius: var(--radius);
  background: var(--grey-light);
}
.booking-step {
  flex: 1; padding: 14px 10px; text-align: center;
  font-size: .8rem; font-weight: 600; color: var(--grey);
  position: relative; transition: all var(--transition);
}
.booking-step.active { background: var(--black); color: var(--white); }
.booking-step.done { background: var(--rose); color: var(--white); }

/* =========================================
   COMPTE CLIENT / PARTENAIRE
   ========================================= */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--rose-pale); padding: 100px 5% 60px;
}
.auth-card {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 50px 44px;
  width: 100%; max-width: 460px;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 12px; }
.auth-logo h2 { font-family: var(--ff-title); font-size: 1.5rem; }
.auth-logo p { font-size: .85rem; color: var(--grey); margin-top: 4px; }
.auth-tabs {
  display: flex; background: var(--grey-light); border-radius: 8px;
  padding: 4px; margin-bottom: 28px;
}
.auth-tab {
  flex: 1; padding: 9px; border-radius: 6px; border: none;
  font-size: .85rem; font-weight: 500; background: transparent;
  transition: all var(--transition);
}
.auth-tab.active { background: var(--white); box-shadow: var(--shadow); }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--black-soft); }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--grey-light);
  border-radius: 10px; font-family: var(--ff-body); font-size: .95rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--rose-dark); }
.form-control.uppercase { text-transform: uppercase; }
.form-control::placeholder { color: #bbb; }
.form-hint { font-size: .75rem; color: var(--grey); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-alt { text-align: center; margin-top: 16px; font-size: .83rem; color: var(--grey); }
.form-alt a { color: var(--rose-dark); font-weight: 600; }
.form-error { background: #fee2e2; color: #991b1b; border-radius: 8px; padding: 10px 14px; font-size: .83rem; margin-bottom: 14px; display: none; }
.form-error.show { display: block; }

/* Dashboard */
.dashboard {
  min-height: 100vh; padding-top: var(--nav-h);
  background: var(--rose-pale);
}
.dashboard-layout {
  display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - var(--nav-h));
}
.dashboard-sidebar {
  background: var(--black); padding: 30px 0;
  position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.sidebar-user {
  padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}
.sidebar-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--rose); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-title); font-size: 1.2rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.sidebar-name { font-weight: 600; color: var(--white); font-size: .95rem; }
.sidebar-email { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; font-size: .88rem; color: rgba(255,255,255,.65);
  transition: all var(--transition); border-left: 3px solid transparent;
}
.sidebar-nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.sidebar-nav a.active { color: var(--white); border-left-color: var(--rose); background: rgba(223,185,185,.1); }
.sidebar-nav .nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.dashboard-main { padding: 40px; }
.dashboard-title {
  font-family: var(--ff-title); font-size: 1.8rem; font-weight: 700;
  margin-bottom: 8px;
}
.dashboard-subtitle { font-size: .9rem; color: var(--grey); margin-bottom: 32px; }

.dash-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.dash-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow);
}
.dash-card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 14px;
}
.dash-card h4 { font-size: .8rem; font-weight: 600; color: var(--grey); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .07em; }
.dash-card .value { font-family: var(--ff-title); font-size: 1.8rem; font-weight: 700; }
.dash-card .value-sm { font-size: 1.1rem; }

.gallery-private { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 20px; }
.gallery-private .thumb {
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative; aspect-ratio: 1;
}
.gallery-private .thumb .photo-placeholder { height: 100%; }
.gallery-private .thumb.selected::after {
  content: '✓'; position: absolute; inset: 0;
  background: rgba(223,185,185,.5); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--white);
}
.gallery-private .thumb.included { border: 2px solid var(--rose-dark); }

.order-bar {
  position: sticky; bottom: 0; left: 0; right: 0;
  background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 16px 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.order-bar .total { font-family: var(--ff-title); font-size: 1.6rem; }
.order-bar .breakdown { font-size: .82rem; color: var(--grey); }

/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.contact-info { }
.contact-info h3 { font-family: var(--ff-title); font-size: 1.6rem; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-weight: 600; font-size: .88rem; margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--grey); }
.contact-item a:hover { color: var(--rose-dark); }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--rose-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--transition);
}
.social-btn:hover { background: var(--rose); transform: translateY(-2px); }

.contact-form { background: var(--white); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-family: var(--ff-title); font-size: 1.5rem; margin-bottom: 28px; }
.contact-form .form-control { background: var(--rose-pale); border-color: transparent; }
.contact-form .form-control:focus { background: var(--white); border-color: var(--rose-dark); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black); color: var(--white);
  padding: 70px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { height: 50px; width: 50px; border-radius: 50%; }
.footer-logo span { font-family: var(--ff-title); font-size: 1rem; font-weight: 600; }
.footer-tagline {
  font-size: .88rem; color: rgba(255,255,255,.5);
  font-style: italic; line-height: 1.6; margin-bottom: 24px;
}
.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: .88rem; color: rgba(255,255,255,.55);
  margin-bottom: 10px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* =========================================
   SECTION CTA
   ========================================= */
.cta-section {
  background: var(--rose); padding: 100px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-section::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='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .section-title { color: var(--black); position: relative; }
.cta-section .section-title em { color: var(--white); }
.cta-section p { color: rgba(0,0,0,.6); position: relative; max-width: 500px; margin: 16px auto 36px; }
.cta-section .btn { position: relative; }

/* =========================================
   ANIMATIONS SCROLL (AOS-like)
   ========================================= */
[data-anim] {
  opacity: 0; transition: opacity .8s ease, transform .8s ease;
}
[data-anim="fade-up"]    { transform: translateY(40px); }
[data-anim="fade-down"]  { transform: translateY(-40px); }
[data-anim="fade-left"]  { transform: translateX(40px); }
[data-anim="fade-right"] { transform: translateX(-40px); }
[data-anim="zoom-in"]    { transform: scale(.92); }
[data-anim].visible      { opacity: 1; transform: none; }

[data-delay="100"] { transition-delay: .1s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }
[data-delay="400"] { transition-delay: .4s; }
[data-delay="500"] { transition-delay: .5s; }
[data-delay="600"] { transition-delay: .6s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* =========================================
   PAGE HERO (sous-pages)
   ========================================= */
.page-hero {
  padding: 160px 5% 80px;
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--rose-light) 100%);
  text-align: center; position: relative;
}
.page-hero .breadcrumb {
  font-size: .78rem; color: var(--grey); margin-bottom: 16px;
  display: flex; justify-content: center; gap: 8px;
}
.page-hero .breadcrumb a { color: var(--rose-dark); }
.page-hero .breadcrumb span { color: var(--grey-light); }

/* =========================================
   SECTION SEANCE DETAIL
   ========================================= */
.seance-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.seance-features { list-style: none; margin: 24px 0; }
.seance-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--grey-light);
  font-size: .93rem;
}
.seance-features li::before {
  content: '✦'; color: var(--rose); flex-shrink: 0; margin-top: 2px;
}
.seance-faq { margin-top: 50px; }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-weight: 600; cursor: pointer;
  font-size: .95rem;
}
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--rose); transition: transform .3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 18px; font-size: .9rem; color: var(--grey); line-height: 1.7; }

/* =========================================
   MENTIONS LÉGALES / CGV
   ========================================= */
.legal-content {
  max-width: 820px; margin: 0 auto; padding: 0 5%;
}
.legal-content h2 {
  font-family: var(--ff-title); font-size: 1.4rem; margin-top: 40px; margin-bottom: 14px;
}
.legal-content h3 {
  font-size: 1rem; font-weight: 600; margin-top: 24px; margin-bottom: 10px;
}
.legal-content p, .legal-content li {
  font-size: .92rem; color: var(--black-soft); line-height: 1.75; margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }

/* =========================================
   NOTIFICATIONS / TOAST
   ========================================= */
.toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--black); color: var(--white);
  border-radius: var(--radius); padding: 14px 20px;
  font-size: .88rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  animation: slideInRight .35s ease;
  max-width: 320px;
}
.toast.success { background: #1b3c34; }
.toast.error   { background: #7f1d1d; }
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* =========================================
   MODAL GÉNÉRIQUE
   ========================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.7); display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s, visibility .3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.modal-box {
  background: var(--white); border-radius: var(--radius-xl);
  max-width: 560px; width: 100%; padding: 44px;
  transform: scale(.95); transition: transform .3s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
}
.modal-header h3 { font-family: var(--ff-title); font-size: 1.5rem; }
.modal-close {
  background: var(--grey-light); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition); flex-shrink: 0;
}
.modal-close:hover { background: var(--rose); transform: rotate(90deg); }

/* =========================================
   PARTENAIRE
   ========================================= */
.partner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.partner-event-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); margin-bottom: 16px;
}
.partner-event-card h4 { font-family: var(--ff-title); font-size: 1.1rem; margin-bottom: 8px; }
.status-badge {
  display: inline-block; padding: 3px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.status-confirmed { background: #dcfce7; color: #166534; }
.status-pending   { background: #fef9c3; color: #854d0e; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-overtitle { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle { margin: 0 auto 40px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 480px; margin: 0 auto; }
  .about-photo-main { height: 400px; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .seance-detail { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; height: auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo span { display: block; }

  .section { padding: 70px 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .lightbox-inner { grid-template-columns: 1fr; }
  .lightbox-photo { min-height: 280px; }

  .pricing-table-header, .pricing-row { grid-template-columns: 1fr 1fr 1fr; padding: 12px 16px; }
  .event-card { grid-template-columns: 90px 1fr; }
  .event-action { grid-column: 1 / -1; padding: 0 20px 20px; }

  .auth-card { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .partner-stats { grid-template-columns: 1fr; }
  .calc-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn-lg { padding: 14px 28px; font-size: .9rem; }
  .booking-step { font-size: .7rem; padding: 10px 6px; }
}
