/* ===================================
   CLAIRE CREMONESE - PHOTOGRAPHE
   Style principal
   =================================== */

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

/* --- PROTECTION CONTENU --- */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

:root {
  --warm: #563C24;
  --taupe: #8a7d6e;
  --warm-light: #7A5C44;
  --cream: #f8f5f0;
  --cream-dark: #ede8e1;
  --noir: #1a1a1a;
  --blanc: #ffffff;
  --text: #3d3d3d;
  --text-light: #6b6b6b;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --serif-italic: 'EB Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- TYPOGRAPHY --- */
h1, h2 {
  font-family: var(--serif);
  font-weight: 100;
  line-height: 1.2;
}

h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--warm); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--warm); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

em {
  font-style: normal;
  font-family: var(--serif);
}

.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-label.light {
  color: rgba(255,255,255,0.7);
}

.section-label.center {
  text-align: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 2.5rem;
  border: 1px solid var(--noir);
  color: var(--noir);
  background: transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--warm);
  color: var(--blanc);
  border-color: var(--warm);
  opacity: 1;
}

.btn-light {
  border-color: var(--blanc);
  color: var(--blanc);
}

.btn-light:hover {
  background: var(--blanc);
  color: var(--noir);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  background-color: var(--cream);
  transition: all 0.4s ease;
}

/* Bouton remonter */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--warm);
  background: transparent;
  color: var(--warm);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--warm);
  color: var(--blanc);
}

.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

.nav-links-left {
  justify-content: flex-end;
}

.nav-links-right {
  justify-content: flex-start;
}

.nav-links-left a,
.nav-links-right a {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--noir);
  position: relative;
}

.nav-links-left > a::after,
.nav-links-right > a:not(.btn-nav)::after,
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--warm);
  transition: width 0.3s ease;
}

.nav-links-left > a:hover::after,
.nav-links-right > a:not(.btn-nav):hover::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  width: 100%;
}

.nav-links-left > a:hover,
.nav-links-right > a:not(.btn-nav):hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  opacity: 1;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 3rem;
}

.logo-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--noir);
}

.logo-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.btn-nav {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.8rem;
  border: 1px solid var(--noir);
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: var(--warm);
  color: var(--blanc);
  border-color: var(--warm);
  opacity: 1;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--noir);
  cursor: pointer;
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  padding: 1.2rem 2rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: var(--cream, #f5f0ea);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  white-space: nowrap;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  border: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-dropdown-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--warm);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--noir);
  opacity: 1;
}

.nav-dropdown-menu a:hover::after {
  width: 100%;
  left: 0;
}

/* ===== MEGA MENU ===== */
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream, #faf6f1);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6vw;
}

.mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mega-menu-close {
  position: absolute;
  top: 7.5rem;
  right: 3rem;
  background: transparent;
  border: none;
  color: rgba(26,26,26,0.45);
  font-size: 1.3rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  line-height: 1;
  font-family: var(--sans);
}
.mega-menu-close:hover { color: var(--noir); }

.mega-menu-inner {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.mega-menu-left {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  min-width: 200px;
  padding-top: 0.5rem;
}

.mega-menu-left a,
.mega-current-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.4);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.mega-menu-left a:hover { color: var(--noir); }

.mega-current-label {
  color: var(--noir) !important;
  display: flex !important;
  align-items: center;
  gap: 0;
  pointer-events: none;
}
.mega-current-label::after {
  content: '';
  display: inline-block;
  height: 1px;
  flex: 1;
  width: 140px;
  background: rgba(26,26,26,0.2);
  margin-left: 1rem;
}

.mega-menu-btn {
  display: inline-block !important;
  border: 1px solid var(--noir) !important;
  color: var(--noir) !important;
  padding: 0.65rem 1.4rem !important;
  text-align: center;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s !important;
}
.mega-menu-btn:hover {
  background: var(--warm) !important;
  border-color: var(--warm) !important;
  color: var(--blanc) !important;
}

.mega-menu-right {
  flex: 1;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.mega-card {
  flex: 1;
  text-decoration: none;
  color: var(--noir);
  display: flex;
  flex-direction: column;
}

.mega-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 1rem;
  transition: opacity 0.3s;
}
.mega-card:hover img { opacity: 0.85; }

.mega-card h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--noir);
  margin: 0 0 0.5rem 0;
  font-weight: 400;
}

.mega-sep {
  display: block;
  height: 1px;
  background: rgba(26,26,26,0.2);
  margin-bottom: 0.5rem;
}

.mega-card p {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--warm);
  font-style: italic;
  font-family: var(--serif-italic);
  margin: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: var(--noir);
  transition: all 0.3s ease;
}

.hamburger.active span {
  background: var(--noir);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/CLAIRE-ANTOINE-90_websize.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

.mobile-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
}

.mobile-menu a.mobile-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 2;
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mobile-dropdown-toggle {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}

.mobile-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 0.3s ease;
  margin-top: 1px;
}

.mobile-dropdown.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.mobile-dropdown.open .mobile-dropdown-items {
  max-height: 200px;
  padding: 0.8rem 0 0.2rem;
}

.mobile-menu .btn-nav {
  background: #fff;
  color: var(--noir);
  border-color: #fff;
}

.mobile-menu .btn-nav:hover {
  background: var(--warm);
  border-color: var(--warm);
  color: #fff;
}

/* ===================================
   HERO
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 2rem 4rem;
  text-align: center;

}

.hero-images {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 3rem;
  max-width: 900px;
  width: 100%;
}

.hero-img {
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img:hover img {
  transform: scale(1.03);
}

.hero-img-1 {
  width: 250px;
  height: 340px;
  transform: rotate(-3deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-img-2 {
  width: 280px;
  height: 400px;
  z-index: 2;
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.hero-img-3 {
  width: 250px;
  height: 340px;
  transform: rotate(3deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-text {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', var(--serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--serif-italic);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ===================================
   QUI JE SUIS
   =================================== */
.qui-je-suis {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0;
  background: var(--warm);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.qjs-photo {
  position: absolute;
  width: 240px;
  height: 360px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

.qjs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.qjs-photo-left {
  left: 4%;
  bottom: 5%;
}

.qjs-photo-right {
  right: 4%;
  top: 5%;
}

.qjs-content {
  width: 480px;
  max-width: calc(100% - 600px);
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.qjs-content h2 {
  font-family: 'Cormorant Garamond', var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.qjs-content h2 em {
  font-family: var(--serif-italic);
  font-style: italic;
}

.qjs-sep {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto 1.5rem;
}

.qjs-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.qjs-italic {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
}

.qjs-btn {
  margin-top: 1.5rem;
  display: inline-block;
}

/* ===================================
   INTRO
   =================================== */
.intro {
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  background: var(--blanc);
}

.intro-content {
  max-width: 750px;
  text-align: center;
}

.intro h2 {
  color: var(--warm);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

.intro h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--warm);
  margin: 2.5rem auto 0;
}

.intro-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

/* ===================================
   PRESTATIONS
   =================================== */
.prestations {
  padding: 6rem 2rem 8rem;

}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.presta-card {
  text-decoration: none;
  color: var(--noir);
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
}
.presta-card:hover { opacity: 0.88; }

.presta-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.presta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.presta-card:hover .presta-img img { transform: scale(1.04); }

.presta-info {
  padding: 1rem 0 0;
}

.presta-info h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--noir);
  margin: 0 0 0.5rem 0;
  font-weight: 400;
}

.presta-sep {
  display: block;
  height: 1px;
  background: rgba(26,26,26,0.18);
  margin-bottom: 0.6rem;
}

.presta-info p {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--warm);
  font-style: italic;
  font-family: var(--serif-italic);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.presta-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--noir);
  border-bottom: 1px solid rgba(26,26,26,0.3);
  padding-bottom: 0.2rem;
}

/* ===================================
   METTRE EN LUMIERE L'AMOUR
   =================================== */
.amour {
  padding: 0;
}

.amour-bg {
  display: flex;
  min-height: 80vh;
  background: var(--warm);
}

.amour-content {
  flex: 1;
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--blanc);
}

.amour-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--blanc);
  margin-bottom: 2rem;
}

.amour-italic {
  font-family: var(--serif);
  font-style: italic;
  font-family: var(--serif-italic);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.amour-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.amour-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.amour-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.amour-slide.active {
  opacity: 1;
}

/* ===================================
   STUDIO
   =================================== */
.studio {
  padding: 8rem 2rem;
  text-align: center;

}

.studio-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--warm);
  margin-bottom: 0.5rem;
}

.studio-subtitle {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.studio-visual {
  position: relative;
  max-width: 550px;
  margin: 0 auto 3rem;
}

.studio-visual img {
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.studio-badge {
  position: absolute;
  top: -20px;
  right: -60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 15s linear infinite;
}

.studio-badge span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.studio-details {
  max-width: 600px;
  margin: 0 auto;
}

.studio-details p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.studio-types {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 2rem !important;
}

/* ===================================
   LES ETAPES
   =================================== */
.etapes {
  padding: 6rem 2rem 8rem;
  background: var(--blanc);
}

.etapes-header {
  text-align: center;
  margin-bottom: 5rem;
}

.etapes-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--warm);
  line-height: 1.15;
}

.etapes-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--warm);
  margin: 2rem auto 0;
}

.etapes-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 550px;
  margin: 1.5rem auto 0;
}

.etapes-intro em {
  color: var(--warm);
  font-style: italic;
  font-family: var(--serif-italic);
}

.etapes-slider {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.etape-slide {
  display: grid;
  grid-template-columns: 1.5fr 1px 1fr;
  gap: 0 3rem;
  align-items: start;
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.etape-slide.leaving {
  visibility: visible;
  z-index: 1;
}

.etape-slide.active {
  position: relative;
  visibility: visible;
  pointer-events: all;
  z-index: 2;
}

.etape-slide.active .etape-main-img img,
.etape-slide.active .etape-accent-img img {
  animation: fadeIn 0.6s ease;
}

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

.etape-slide:not(.active) .etape-content {
  display: none;
}

.etape-main-img {
  overflow: hidden;
}

.etape-main-img img {
  width: 100%;
  height: auto;
  display: block;
}

.etape-divider {
  width: 1px;
  background: rgba(86, 60, 36, 0.25);
  align-self: stretch;
}

.etape-content {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
}

.etape-number {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 8rem);
  color: var(--cream-dark);
  font-weight: 100;
  line-height: 0.85;
  margin-bottom: -0.5rem;
}

.etape-content h3 {
  color: var(--noir);
  font-size: 1.3rem;
  margin: 0.5rem 0 1.2rem;
}

.etape-content > p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.etape-accent-img {
  width: 70%;
  align-self: flex-end;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.etape-accent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.etapes-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.etape-counter {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--noir);
}

.etape-total {
  color: rgba(26, 26, 26, 0.4);
}

.etape-prev,
.etape-next {
  background: transparent;
  border: none;
  color: transparent;
  width: 3.5rem;
  height: 1.5rem;

  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.etape-prev::before,
.etape-next::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--noir);
  transition: background 0.2s;
}

.etape-next::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--noir);
  border-right: 1px solid var(--noir);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s;
}

.etape-prev::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--noir);
  border-left: 1px solid var(--noir);
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}

.etape-prev:hover::before,
.etape-next:hover::before {
  background: var(--warm);
}

.etape-prev:hover::after,
.etape-next:hover::after {
  border-color: var(--warm);
}

/* ===================================
   TEMOIGNAGES SLIDER
   =================================== */
.temoignages {
  padding: 0;
}

.temoignages-slider {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.temoignage-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 0;
}

.temoignage-slide.leaving {
  opacity: 1;
  z-index: 1;
}

.temoignage-slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

.temoignage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62,42,25,0.45);
}

.temoignage-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 2rem;
}

.temoignage-card {
  max-width: 700px;
  text-align: center;
  color: var(--blanc);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--blanc);
  line-height: 1;
  display: block;
  margin-bottom: -1rem;
}

.temoignage-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-family: var(--serif-italic);
  line-height: 1.3;
  margin-bottom: 2rem;
}

.temoignage-author {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  color: transparent;
  width: 3.5rem;
  height: 1.5rem;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.slider-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--blanc);
  transition: background 0.2s;
}

.slider-next::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--blanc);
  border-right: 1px solid var(--blanc);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s;
}

.slider-prev::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--blanc);
  border-left: 1px solid var(--blanc);
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}

.slider-arrow:hover::before {
  background: rgba(255,255,255,0.6);
}

.slider-arrow:hover::after {
  border-color: rgba(255,255,255,0.6);
}

.slider-prev {
  left: 2rem;
}

.slider-next {
  right: 2rem;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.8rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--blanc);
  border-color: var(--blanc);
}

.slider-dot:hover {
  background: rgba(255,255,255,0.5);
}

/* ===================================
   QUAND RESERVER
   =================================== */
.quand-reserver {
  padding: 0;

}

.quand-layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0;
  gap: 4rem;
  align-items: center;
}

.quand-image {
  flex: 0 0 35%;
  overflow: hidden;
  border-radius: 4px;
}

.quand-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.quand-content {
  flex: 1;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quand-reserver h2 {
  color: var(--warm);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.quand-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Accordion */
.accordion {
  margin-bottom: 2.5rem;
}

.accordion-item {
  border-top: 1px solid rgba(86, 60, 36, 0.25);
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(86, 60, 36, 0.25);
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.2rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-toggle span {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s ease;
  text-align: left;
  flex: 1;
}

.accordion-toggle:hover span {
  color: var(--warm);
}

.accordion-item.active .accordion-toggle span {
  color: var(--warm);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  padding-bottom: 0.8rem;
}

.accordion-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--noir);
  color: var(--noir);
  background: transparent;
  transition: all 0.4s ease;
  margin-bottom: 1rem;
}

.accordion-link:hover {
  background: var(--warm);
  color: var(--blanc);
  border-color: var(--warm);
  opacity: 1;
}

/* ===================================
   STUDIO QUOTE
   =================================== */
.studio-quote {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--blanc);
}

.page-intro-text .studio-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-family: var(--serif-italic);
  font-size: 21px !important;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--warm) !important;
  text-align: right;
  margin-top: 4rem;
}

/* ===================================
   CTA FINAL
   =================================== */
.cta-final {
  padding: 0;
}

.cta-bg {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62,42,25,0.45);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--blanc);
  max-width: 700px;
  padding: 2rem;
}

.cta-content h2 {
  color: var(--blanc);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

.cta-content h2 em {
  color: rgba(255,255,255,0.8);
}

/* ===================================
   CITATION
   =================================== */
.citation {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;

}

.citation-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--warm);
  line-height: 1;
}

.citation blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--noir);
  line-height: 1.3;
  max-width: 850px;
  margin: 0 auto 1.5rem;
  font-style: italic;
  font-family: var(--serif-italic);
}

.citation blockquote strong {
  font-weight: 500;
  color: var(--warm);
}

.citation-author {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ===================================
   INSTAGRAM BANNER
   =================================== */
.instagram-banner {
  background: var(--warm);
  padding: 1.2rem 0;
  overflow: hidden;
}

.instagram-scroll {
  display: flex;
  gap: 4rem;
  animation: scrollBanner 20s linear infinite;
  white-space: nowrap;
}

.instagram-scroll span {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}

@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================
   INSTAGRAM
   =================================== */
.instagram-section {
  overflow: hidden;

  padding: 5rem 0 0;

  text-align: center;
}

.instagram-section h2 {
  font-family: var(--serif);
  font-weight: 100;
  font-size: 2rem;
  color: var(--warm);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.instagram-section .lightwidget-widget {
  display: block;
  vertical-align: top;
  margin-bottom: -5px;
}

/* ===================================
   PAGES INTÉRIEURES
   =================================== */

/* Hero page */
.page-hero {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62,42,25,0.35);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--blanc);
  max-width: 700px;
  padding: 2rem;
}

.page-hero-content h1 {
  color: var(--blanc);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.page-hero-content h1 em {
  color: rgba(255,255,255,0.75);
}

.page-hero-tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-family: var(--serif-italic);
  line-height: 1.8;
}

/* Header Collage (pages intérieures) */
.page-header-collage {
  padding: 0;

  overflow: visible;
}

.collage-layout {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem 4rem;
}

.collage-photos {
  position: relative;
  flex: 0 0 55%;
  height: 80vh;
}

.collage-photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 95%;
  z-index: 1;
}

.collage-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-photo-secondary {
  position: absolute;
  top: 50%;
  left: -3%;
  transform: translateY(-50%);
  width: 38%;
  aspect-ratio: 2/3;
  z-index: 2;
}

.collage-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-text {
  flex: 0 0 40%;
  padding: 3rem;

  position: relative;
  z-index: 3;
  margin-left: 1rem;
}

.collage-text .section-label {
  margin-bottom: 1rem;
}

.collage-text h1 {
  font-family: 'Cormorant Garamond', var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--warm);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.collage-description {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--serif-italic);
}

.btn-collage {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--brun);
  color: var(--brun);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-collage:hover {
  background: var(--brun);
  color: var(--blanc);
}

/* Introduction page */
.page-intro {
  padding: 7rem 3rem;
  background: var(--blanc);
}

.page-intro-paper {
  background: var(--blanc);
}

.page-intro-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
}

.page-intro-text {
  flex: 1;
  min-width: 0;
}

.page-intro-image {
  flex: 0 0 48%;
  max-width: 48%;
}

/* Ligne verticale entre les 2 colonnes */
.page-intro-layout::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 4rem);
  background: rgba(86, 60, 36, 0.25);
}

.page-intro-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--warm);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.page-intro-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}


.page-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-intro-image-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.page-intro-image-duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2/3;
}

/* ========================
   Section Allaitement / Maman-Bébé
   ======================== */
.allaitement-section {
  background: var(--cream);
  display: flex;
  margin-top: 6rem;
}

.allaitement-content {
  flex: 0 0 44%;
  background: var(--warm);
  padding: 2.5rem 3rem;
  color: var(--blanc);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.allaitement-content .section-label {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.allaitement-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--blanc);
  font-weight: 300;
  line-height: 1.15;
  margin: 0.8rem 0 1rem;
}

.allaitement-content h2 em {
  font-style: italic;
  font-family: var(--serif-italic);
}

.allaitement-intro {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 420px;
}

.allaitement-tarifs {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.allaitement-tarif {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.allaitement-tarif .btn {
  margin-top: auto;
  align-self: flex-start;
}

.allaitement-tarif-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.5rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.allaitement-tarif h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--blanc);
  font-weight: 300;
}

.allaitement-prix {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blanc);
}

.allaitement-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.allaitement-includes li {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
}

.allaitement-includes li::before {
  content: '✓  ';
  color: rgba(255, 255, 255, 0.5);
}

.allaitement-separator {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
  margin: 0 1.5rem;
}

.allaitement-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-self: center;
}

.allaitement-cell {
  display: grid;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.allaitement-cell img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.8s ease;
}

@media (max-width: 768px) {
  .allaitement-section {
    flex-direction: column;
  }
  .allaitement-content {
    padding: 4rem 2rem;
  }
  .allaitement-grid {
    min-height: 60vw;
  }
  .allaitement-tarifs {
    flex-direction: column;
    gap: 2.5rem;
  }
  .allaitement-separator {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}

/* Galerie photos */
.page-gallery {
  padding: 2rem 3rem 6rem;
  background: var(--blanc);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(86, 60, 36, 0.25);
}


.gallery-cell {
  display: grid;
  overflow: hidden;
}

.gallery-cell img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.8s ease, transform 0.6s ease;
}

.gallery-cell:hover img:last-child {
  transform: scale(1.02);
}

/* Photos superposées duo */
.gallery-duo {
  padding: 2rem 3rem 4rem;
  background: var(--blanc);
}

.gallery-duo-layout {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 4rem;
}

.gallery-duo-main {
  width: 65%;
}

.gallery-duo-main img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-duo-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  box-shadow: -8px -8px 0 var(--blanc);
}

.gallery-duo-secondary img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slider galerie horizontal */
.gallery-slider {
  padding: 2rem 3rem 4rem;
  background: var(--blanc);
  opacity: 0;
}

.gallery-slider.visible {
  opacity: 1;
}

.gallery-slider-frame {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(86, 60, 36, 0.25);
  padding: 1.5rem;
  overflow: hidden;
  min-height: 0;
}

/* Ancienne structure (séances) : slides individuelles */
.gallery-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

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

.gallery-slide {
  display: block;
}

.gallery-slider-track.gallery-pages > .gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
  animation: galleryFadeIn 1s ease forwards;
}

.gallery-slide.leaving {
  display: block;
  animation: galleryFadeOut 0.6s ease forwards;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Nouvelle structure (studio) : pages crossfade */
.gallery-slider-track.gallery-pages {
  display: block;
  position: relative;
  height: 500px;
}

.gallery-slider-track.gallery-pages .gallery-page {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.gallery-slider-track.gallery-pages .gallery-page.leaving {
  opacity: 1;
  z-index: 1;
}

.gallery-slider-track.gallery-pages .gallery-page.active {
  opacity: 1;
  z-index: 2;
}

.gallery-slider-track.gallery-pages .gallery-slide {
  display: block;
  overflow: hidden;
}

.gallery-slider-track.gallery-pages .gallery-slide img {
  height: 500px;
}

.gallery-slider-nav {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, 100%);
  bottom: 0;
  pointer-events: none;
  z-index: 5;
}

.gallery-slider {
  position: relative;
}

.gallery-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;

  color: transparent;
  z-index: 5;
}

.gallery-slider-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 0;
  border-top: 1px solid var(--warm);
  transition: border-color 0.3s ease;
}

.gallery-slider-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--warm);
  border-right: 1px solid var(--warm);
  transition: border-color 0.3s ease;
}

#slider-prev {
  left: 0;
}

#slider-prev::before {
  left: 0;
}

#slider-prev::after {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

#slider-next {
  right: 0;
}

#slider-next::before {
  right: 0;
}

#slider-next::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.gallery-slider-btn:hover::before {
  border-color: var(--noir);
}

.gallery-slider-btn:hover::after {
  border-color: var(--noir);
}


/* Citation page */
.page-citation {
  padding: 6rem 2rem;

  text-align: center;
}

.page-citation .quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--warm);
  line-height: 0.5;
  display: block;
  margin-bottom: 1.5rem;
}

.page-citation blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--noir);
  font-style: italic;
  font-family: var(--serif-italic);
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 2rem;
}

.page-citation .citation-author {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Tarifs */
.tarifs {
  background: var(--cream);
  padding: 6rem 3rem;

}

.tarifs-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tarifs-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}


.tarif-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  align-items: center;
}

.tarif-card:last-of-type {
  margin-bottom: 0;
}

.tarif-card:nth-child(odd) .tarif-image {
  order: 2;
}

.tarif-card:nth-child(odd) .tarif-details {
  order: 1;
}

.tarif-image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.tarif-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarif-image-duo {
  position: relative;
  aspect-ratio: auto;
  overflow: visible;
}

.tarif-image-duo .duo-main {
  width: 70%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.tarif-image-duo .duo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarif-image-duo .duo-secondary {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 38%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.tarif-image-duo .duo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarif-details h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 100;
  color: var(--warm);
  margin-bottom: 0.5rem;
}

.tarif-badge {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1rem;
}

.tarif-description {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tarif-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-bottom: 1.5rem;
}

.tarif-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--noir);
}

.tarif-icon {
  font-size: 1rem;
  color: var(--warm);
}

.tarif-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--warm);
  flex-shrink: 0;
}

.tarif-includes {
  margin-bottom: 1.5rem;
}

.tarif-includes p {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.4);
  line-height: 2;
}

.tarif-separator {
  width: 100%;
  height: 1px;
  background: rgba(86, 60, 36, 0.25);
  margin-bottom: 1.5rem;
}

.tarif-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tarif-price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.tarif-price-amount .prix {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 100;
  color: var(--warm);
}

.tarif-price .btn-reserver {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  background: var(--warm);
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.tarif-price .btn-reserver:hover {
  background: var(--noir);
}

.tarif-old-price {
  font-family: var(--sans);
  font-size: 1.2rem;
  color: rgba(0,0,0,0.35);
  text-decoration: line-through;
}

/* FAQ page */
.page-faq {
  padding: 6rem 3rem;
  background: var(--blanc);
}

.page-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--warm);
  line-height: 1.2;
}

.page-faq-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ===================================
   PAGE À PROPOS
   =================================== */

/* Header */
.about-header {
  background: var(--cream);
  padding: 2rem 4rem 0;

}

.about-header-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-header-image {
  flex: 0 0 45%;
  max-height: 75vh;
  overflow: hidden;
}

.about-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-header-text {
  flex: 1;
}

.about-header-text h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}


.about-header-desc {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  font-family: var(--serif-italic);
}

/* Mon histoire */
.about-story {
  padding: 7rem 3rem;
  background: var(--blanc);
}

.about-story-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
}

.about-story-layout::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: calc(45% + 2rem);
  width: 1px;
  height: calc(100% - 4rem);
  background: rgba(86, 60, 36, 0.25);
}

.about-story-text {
  flex: 1;
  min-width: 0;
}

.about-story-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--warm);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-story-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-story-image {
  flex: 0 0 45%;
  max-width: 45%;
}

.about-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mes valeurs */
.about-values {
  background: var(--cream);
  padding: 6rem 3rem;

}

.about-values-content {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-values-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--warm);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-values-intro {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  font-family: var(--serif-italic);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-value {
  text-align: center;
  padding: 2rem 1.5rem;
}

.about-value-icon {
  display: block;
  margin-bottom: 1.2rem;
  opacity: 0.45;
}

.about-value h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--noir);
}

.about-value p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Portrait personnel */
.about-personal {
  padding: 7rem 3rem;
  background: var(--blanc);
}

.about-personal-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-personal-image {
  flex: 0 0 48%;
  max-width: 48%;
}

.about-personal-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-personal-text {
  flex: 1;
  min-width: 0;
}

.about-personal-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--warm);
  margin-bottom: 2rem;
  line-height: 1.2;
}


.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(86, 60, 36, 0.1);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 5rem 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blanc);
  line-height: 1.2;
}

.footer-logo small {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-col a:hover {
  color: var(--blanc);
  opacity: 1;
}

.footer-socials {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.footer-legal {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===================================
   PAGES LÉGALES
   =================================== */
.legal-page {
  padding: 4rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--warm);
  margin-bottom: 3rem;
  text-align: center;
}

.legal-page h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--warm);
  text-decoration: underline;
}

/* ===================================
   PAGE RÉSERVER - FORMULAIRE
   =================================== */

.page-hero-small {
  min-height: 55vh;
}

.contact-section {
  background: #fff;
  padding: 6rem 4rem;
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: stretch;
}

.contact-image {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-wrapper {
  flex: 1;
}

.contact-form-wrapper h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
  color: var(--warm);
}

.contact-intro {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

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

.form-group label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--noir);
  background: transparent;
  border: none;
  border-bottom: 1px solid #c5beb5;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--warm);
}

.form-group textarea {
  border: 1px solid #c5beb5;
  padding: 1rem;
  resize: vertical;
  min-height: 120px;
}

.form-group textarea:focus {
  border-color: var(--warm);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b5aea5;
  font-style: italic;
  font-family: var(--serif-italic);
}

.form-group select {
  cursor: pointer;
  color: var(--text);
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* ===================================
   PAGE STUDIO – ATOUTS
   =================================== */
.studio-atouts {
  padding: 6rem 3rem;

  text-align: center;
}

.studio-atouts-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--noir);
  margin-bottom: 4rem;
  line-height: 1.2;
}

.studio-atouts-title em {
  color: var(--warm);
}

.studio-atouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.studio-atout {
  text-align: center;
  padding: 2rem 1.5rem;
}

.studio-atout-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--warm);
  opacity: 0.6;
}

.studio-atout-icon svg {
  width: 100%;
  height: 100%;
}

.studio-atout h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--noir);
}

.studio-atout p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Intro inversée (image à gauche, texte à droite) */
.page-intro-reverse .page-intro-layout {
  flex-direction: row-reverse;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .contact-section {
    padding: 4rem 2rem;
  }

  .contact-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  .contact-image {
    flex: 0 0 auto;
    max-height: 400px;
    overflow: hidden;
  }

  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prestations-grid .presta-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .amour-bg {
    flex-direction: column;
  }

  .amour-image {
    flex: 0 0 auto;
    min-height: 400px;
  }

  .amour-content {
    padding: 4rem 3rem;
  }

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

  .collage-layout {
    flex-direction: column;
    min-height: auto;
    padding: 0 2rem;
  }

  .collage-photos {
    flex: 0 0 auto;
    width: 100%;
    height: 55vh;
  }

  .collage-photo-main {
    left: 15%;
    width: 70%;
    height: 95%;
  }

  .collage-photo-secondary {
    left: 0;
    width: 45%;
    aspect-ratio: 2/3;
  }

  .collage-text {
    flex: 0 0 auto;
    text-align: left;
    padding: 2rem;
    margin-left: 0;
  }

  /* About page */
  .about-header-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-header-image {
    flex: 0 0 auto;
    max-height: 50vh;
  }

  .about-header-text {
    text-align: center;
  }

  .about-story-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-story-layout::before {
    display: none;
  }

  .about-story-image {
    flex: 0 0 100%;
    max-width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .about-personal-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-personal-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links-left,
  .nav-links-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-form-wrapper h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 1.5rem 1.5rem 3rem;
    min-height: calc(100vh - 7.5rem);
    justify-content: flex-start;
  }

  .hero-images {
    gap: 0.8rem;
  }

  .hero-img-1 { width: 140px; height: 200px; }
  .hero-img-2 { width: 160px; height: 240px; }
  .hero-img-3 { width: 140px; height: 200px; }

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

  .prestations-grid .presta-card:last-child {
    max-width: 100%;
  }

  .presta-img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .presta-img img {
    object-position: center center;
  }

  .etape-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .etape-divider {
    display: none;
  }

  .etape-main-img {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .etape-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .etape-accent-img {
    position: absolute;
    width: 42%;
    right: 8%;
    top: calc(55vw - 1.5rem);
    z-index: 5;
  }

  .etape-content {
    padding-top: 0.5rem;
  }

  .etape-number {
    font-size: 3.5rem;
  }

  .etape-content h3 {
    margin: 0.3rem 0 0.8rem;
  }

  .etape-content > p {
    margin-bottom: 1rem;
  }

  .etapes-header {
    margin-bottom: 2.5rem;
  }

  .etapes-intro {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .intro h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  }

  .intro-text p {
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .quand-subtitle {
    font-size: 0.85rem;
  }

  .etape-content > p {
    font-size: 0.88rem;
  }

  .etapes-nav {
    justify-content: center;
  }

  .quand-layout {
    flex-direction: column;
    padding: 0 0 1rem;
    gap: 1.5rem;
  }

  .quand-image {
    flex: 0 0 auto;
    height: auto;
    overflow: visible;
    padding: 2rem 2rem 0;
  }

  .quand-content {
    padding: 1rem 2rem 2rem;
  }

  .amour-content {
    padding: 3rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .temoignages-slider {
    background-attachment: scroll;
  }

  .cta-bg {
    background-attachment: scroll;
  }

  .slider-arrow {
    width: 3rem;
    height: 1.2rem;
  }

  .slider-prev {
    left: 1rem;
  }

  .slider-next {
    right: 1rem;
  }

  .studio-badge {
    right: -10px;
    top: -15px;
    width: 90px;
    height: 90px;
  }

  .studio-badge span {
    font-size: 0.55rem;
  }

  .studio {
    padding: 3rem 1.5rem;
  }

  /* Pages intérieures responsive */
  .page-hero {
    min-height: 60vh;
  }

  .page-header-collage {
    padding: 0;
  }

  .collage-layout {
    padding: 0;
  }

  .collage-photos {
    width: 100%;
    flex: 0 0 auto;
    margin-top: 0.5rem;
    position: relative;
    height: 75vw;
    overflow: visible;
    margin-bottom: 4vw;
  }

  .collage-photo-main {
    position: absolute;
    top: 0;
    left: 60%;
    transform: translateX(-50%);
    right: auto;
    width: 60%;
    height: 100%;
    z-index: 1;
  }

  .collage-photo-secondary {
    position: absolute;
    top: 18%;
    left: 10%;
    width: 36%;
    aspect-ratio: 2/3;
    z-index: 2;
    transform: none;
  }

  .collage-text h1 {
    font-size: 2.2rem;
  }

  .page-intro-text h2,
  .about-story-text h2,
  .about-values-content h2,
  .about-personal-text h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  }

  .collage-description {
    font-size: 0.88rem;
  }

  .gallery-slider {
    padding: 1.5rem 1.5rem 3rem;
  }

  .gallery-slider-frame {
    padding: 0.8rem;
  }

  .gallery-slider-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gallery-slider-track.gallery-pages {
    height: auto;
  }

  .gallery-slider-track.gallery-pages .gallery-page {
    position: absolute;
    inset: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gallery-slider-track.gallery-pages .gallery-page.active {
    position: relative;
  }

  .gallery-slider-track.gallery-pages .gallery-slide img {
    height: auto;
    object-fit: contain;
  }

  .gallery-slider-nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0 0;
    pointer-events: auto;
  }

  .gallery-slider-btn {
    position: relative;
    top: auto;
    transform: none;
  }

  .gallery-slider-btn::before {
    width: 16px;
  }

  .gallery-slider-btn::after {
    width: 5px;
    height: 5px;
  }

  #slider-prev {
    left: auto;
  }

  #slider-next {
    right: auto;
  }

  .page-intro-text p {
    font-size: 0.85rem;
  }

  .about-story-text p,
  .about-value p,
  .about-values-intro {
    font-size: 0.85rem;
  }

  .contact-intro {
    font-size: 0.88rem;
  }

  .page-intro {
    padding: 4rem 2rem 0;
  }

  .page-intro-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  .page-intro-reverse .page-intro-layout {
    flex-direction: column-reverse;
  }

  .page-intro-image {
    flex: 0 0 auto;
    max-width: none;
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
  }

  .page-intro-image img {
    width: 100%;
    height: auto;
  }

  .page-intro-layout::before {
    display: none;
  }

  .page-gallery {
    padding: 2rem 1.5rem 4rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .page-citation {
    padding: 4rem 2rem;
  }

  .page-faq {
    padding: 4rem 2rem;
  }

  .tarifs {
    padding: 4rem 1.5rem;
  }

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

  .tarif-card:nth-child(odd) .tarif-image {
    order: 0;
  }

  .tarif-card:nth-child(odd) .tarif-details {
    order: 0;
  }

  .tarif-image {
    aspect-ratio: 4 / 5;
  }

  .tarif-image-duo {
    margin-bottom: 2rem;
  }

  .tarif-image-duo .duo-main {
    width: 65%;
  }

  .tarif-image-duo .duo-secondary {
    width: 40%;
    bottom: -1.5rem;
    right: 0;
  }

  .tarif-price {
    justify-content: space-between;
  }

  /* About page */
  .about-header {
    padding: 1rem 2rem 0;
  }

  .about-header-text h1 {
    font-size: 2.2rem;
  }

  .about-story {
    padding: 4rem 2rem 0;
  }

  .about-values {
    padding: 4rem 2rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;

  }

  .studio-atouts {
    padding: 4rem 2rem;
  }

  .studio-atouts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-personal {
    padding: 4rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-img-1 { width: 110px; height: 160px; }
  .hero-img-2 { width: 130px; height: 190px; }
  .hero-img-3 { width: 110px; height: 160px; }

  .intro {
    padding: 5rem 1.5rem;
  }

  .prestations {
    padding: 4rem 1.5rem;
  }

  .etapes {
    padding: 4rem 1.5rem 2rem;
  }
}

/* ===================================
   PAGE BLOG
   =================================== */

/* --- Blog Hero (style éditorial, photos décalées) --- */
.blog-hero {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 4rem 2rem;
  min-height: 80vh;
}

.blog-hero-photos {
  position: relative;
  flex: 0 0 42%;
  min-height: 600px;
}

.blog-hero-photo-main {
  width: 70%;
  position: relative;
  z-index: 1;
}

.blog-hero-photo-main img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.blog-hero-photo-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 55%;
  z-index: 2;
}

.blog-hero-photo-secondary img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.blog-hero-text {
  flex: 1;
  padding-right: 2rem;
}

.blog-hero-intro {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.blog-hero-text h1 {
  font-family: 'Cormorant Garamond', var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--warm);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.blog-hero-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
  max-width: 480px;
}

/* --- Filtres catégories --- */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem 1rem;
}

.blog-filter {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-light);
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.blog-filter:hover {
  color: var(--noir);
}

.blog-filter.active {
  color: var(--noir);
  border-color: var(--warm);
}

/* --- Grille articles --- */
.blog-articles {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Grande carte (premier article) */
.blog-card-large {
  grid-column: 1 / -1;
}

.blog-card-large a {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.blog-card-large .blog-card-image img {
  aspect-ratio: 4 / 5;
}

.blog-card-large .blog-card-content h2 {
  font-size: 1.8rem;
}

/* Carte article standard */
.blog-card {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.blog-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.blog-card-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card a:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 0 0.2rem;
}

.blog-card-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(86, 60, 36, 0.25);
}

.blog-card-content h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--noir);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.blog-card-content p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-card-date {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  opacity: 0.7;
}

/* --- CTA Blog --- */
.blog-cta {
  padding: 6rem 3rem;
  text-align: center;
  background: var(--blanc);
}

.blog-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.blog-cta h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 1rem;
}

.blog-cta p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--noir);
  color: var(--blanc);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background: var(--warm);
}

/* --- Blog responsive 1024 --- */
@media (max-width: 1024px) {
  .blog-hero {
    gap: 3rem;
    padding: 3rem 2rem 2rem;
  }

  .blog-hero-photos {
    flex: 0 0 38%;
    min-height: 450px;
  }

  .blog-hero-photo-main img {
    height: 420px;
  }

  .blog-hero-photo-secondary img {
    height: 280px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .blog-card-large {
    grid-column: 1 / -1;
  }
}

/* --- Blog responsive 768 --- */
@media (max-width: 768px) {
  .blog-hero {
    flex-direction: column;
    padding: 2rem 1.5rem;
    min-height: auto;
    gap: 2rem;
  }

  .blog-hero-photos {
    flex: none;
    width: 100%;
    min-height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }

  .blog-hero-photo-main img {
    height: 380px;
  }

  .blog-hero-photo-secondary img {
    height: 260px;
  }

  .blog-hero-text {
    padding-right: 0;
    text-align: center;
  }

  .blog-hero-desc {
    margin: 0 auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .blog-card-large a {
    display: block;
  }

  .blog-card-large .blog-card-image img {
    aspect-ratio: 4 / 5;
  }

  .blog-card-image img {
    aspect-ratio: 4 / 5;
  }

  .blog-articles {
    padding: 2rem 1.5rem 3rem;
  }

  .blog-filters {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .blog-cta {
    padding: 4rem 1.5rem;
  }
}

/* QUI JE SUIS - responsive */
@media (max-width: 1024px) {
  .qui-je-suis {
    padding: 5rem 2rem;
    min-height: 500px;
  }

  .qjs-photo {
    width: 160px;
    height: 240px;
  }

  .qjs-photo-left {
    left: 2%;
    bottom: 8%;
  }

  .qjs-photo-right {
    right: 2%;
    top: 8%;
  }

  .qjs-content {
    width: 55%;
    max-width: 400px;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .qui-je-suis {
    min-height: 450px;
    padding: 4rem 1rem;
  }

  .qjs-photo {
    width: 120px;
    height: 180px;
  }

  .qjs-content {
    width: 50%;
    padding: 0 0.5rem;
  }

  .qjs-content h2 {
    font-size: 1.8rem;
  }

  .qjs-italic {
    font-size: 0.95rem;
  }
}
