/* ============================================
   DESIGN SYSTEM — Photographe Maternité
   Palette: Beige, Ivoire, Taupe, Rose Poudré, Doré
   Typographies: Playfair Display, Lato
   ============================================ */

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

/* ── CSS Custom Properties ── */
:root {
  /* Couleurs principales */
  --beige:         #D4C5A9;
  --beige-warm:    #C9B896;
  --beige-light:   #E8DFD0;
  --ivoire:        #FAF7F2;
  --ivoire-pure:   #FFFDF8;
  --blanc-casse:   #F5F0E8;
  --taupe:         #8B7D6B;
  --taupe-dark:    #6B5E4F;
  --taupe-light:   #A99E8D;
  --rose-poudre:   #E8C4C4;
  --rose-light:    #F2DEDE;
  --rose-subtle:   #F5E6E6;
  --dore:          #C9A96E;
  --dore-light:    #D4BA85;
  --dore-subtle:   #E8D5A9;
  
  /* Couleurs fonctionnelles */
  --text-primary:  #4A3F35;
  --text-secondary:#7A6E62;
  --text-light:    #9E9285;
  --text-heading:  #3D3328;
  --bg-primary:    var(--ivoire);
  --bg-secondary:  var(--blanc-casse);
  --bg-section:    var(--ivoire-pure);
  --border-soft:   rgba(201, 184, 150, 0.3);
  --shadow-soft:   0 4px 20px rgba(107, 94, 79, 0.08);
  --shadow-medium: 0 8px 40px rgba(107, 94, 79, 0.12);
  --shadow-large:  0 16px 60px rgba(107, 94, 79, 0.15);
  
  /* Typographie */
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', 'Helvetica Neue', sans-serif;
  
  /* Espacement */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;
  
  /* Bordures */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:50%;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
  
  /* Largeurs max */
  --max-width: 1280px;
  --max-width-narrow: 800px;
  --max-width-text: 640px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background-color: var(--rose-poudre);
  color: var(--text-heading);
}

/* ── Typographie ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
}

.text-italic {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--taupe);
}

.text-gold {
  color: var(--dore);
}

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

/* ── Decorative Divider ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--space-md) auto;
}

.divider::before,
.divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--dore-light);
}

.divider-icon {
  color: var(--dore);
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ── Container / Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--text {
  max-width: var(--max-width-text);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section--cream {
  background-color: var(--ivoire-pure);
}

.section--rose {
  background-color: var(--rose-subtle);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-xs);
}

.section-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--taupe-light);
  margin-top: var(--space-xs);
}

/* ══════════════════════════════
   NAVIGATION
   ══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.nav.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.nav-logo-img:hover {
  opacity: 0.8;
}

.nav-logo-name {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--dore);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe-light);
  font-weight: 300;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--dore);
  transition: all var(--duration-normal) var(--ease-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--text-heading);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--dore);
}

.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
  box-shadow: var(--shadow-medium);
}

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

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-dropdown-item:hover {
  background: var(--beige-light);
  color: var(--text-heading);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-heading);
  transition: all var(--duration-normal) var(--ease-smooth);
  transform-origin: center;
}

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

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

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

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-smooth) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 247, 242, 0.55) 0%,
    rgba(250, 247, 242, 0.25) 40%,
    rgba(232, 196, 196, 0.15) 70%,
    rgba(201, 169, 110, 0.10) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: var(--space-lg);
  animation: fadeInUp 1.2s var(--ease-smooth) 0.3s both;
}

.hero-content h1 {
  color: var(--text-heading);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(250, 247, 242, 0.6);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--dore);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--taupe);
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 10px rgba(250, 247, 242, 0.5);
}

/* ============================================
   FILTRES PORTFOLIO
   ============================================ */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-soft);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.filter-btn:hover {
  border-color: var(--dore);
  color: var(--dore);
}

.filter-btn.active {
  background: var(--dore);
  border-color: var(--dore);
  color: white;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2);
}

/* Page Hero court */
.page-hero--short {
  min-height: 45vh;
}

/* ── Page Hero (Service pages) ── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 247, 242, 0.3) 0%,
    rgba(61, 51, 40, 0.4) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  animation: fadeInUp 1s var(--ease-smooth) 0.2s both;
}

.page-hero-content h1 {
  color: var(--ivoire-pure);
  text-shadow: 0 2px 20px rgba(61, 51, 40, 0.3);
  margin-bottom: var(--space-sm);
}

.page-hero-content .section-subtitle {
  color: rgba(250, 247, 242, 0.9);
  text-shadow: 0 1px 10px rgba(61, 51, 40, 0.2);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--dore);
  color: var(--ivoire-pure);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  background: var(--dore-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid var(--dore-light);
}

.btn-secondary:hover {
  background: var(--dore);
  color: var(--ivoire-pure);
  border-color: var(--dore);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(250, 247, 242, 0.8);
  color: var(--text-heading);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
}

.btn-ghost:hover {
  background: var(--ivoire-pure);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-icon {
  font-size: 1rem;
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ══════════════════════════════
   EXPERIENCES (Services)
   ══════════════════════════════ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.experience-card-img {
  position: absolute;
  inset: 0;
}

.experience-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(61, 51, 40, 0.7) 0%,
    rgba(61, 51, 40, 0.1) 50%,
    transparent 100%
  );
  transition: all var(--duration-normal) var(--ease-smooth);
}

.experience-card:hover .experience-card-overlay {
  background: linear-gradient(
    to top,
    rgba(61, 51, 40, 0.8) 0%,
    rgba(61, 51, 40, 0.2) 60%,
    transparent 100%
  );
}

.experience-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  color: var(--ivoire-pure);
  transform: translateY(10px);
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.experience-card:hover .experience-card-content {
  transform: translateY(0);
}

.experience-card-content h3 {
  color: var(--ivoire-pure);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.experience-card-content p {
  color: rgba(250, 247, 242, 0.85);
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-smooth) 0.1s;
}

.experience-card:hover .experience-card-content p {
  opacity: 1;
  transform: translateY(0);
}

.experience-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dore-light);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-smooth) 0.2s;
}

.experience-card:hover .experience-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   ABOUT / EMOTION
   ══════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--dore-subtle);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-text p {
  margin-bottom: var(--space-sm);
  line-height: 2;
}

.about-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--dore);
  margin-top: var(--space-md);
}

/* ══════════════════════════════
   ALBUMS
   ══════════════════════════════ */
.albums-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.albums-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.albums-image img {
  width: 100%;
  object-fit: cover;
}

.albums-text h2 {
  margin-bottom: var(--space-md);
}

.albums-text p {
  margin-bottom: var(--space-sm);
}

.albums-features {
  list-style: none;
  margin-top: var(--space-md);
}

.albums-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-soft);
}

.albums-features li:last-child {
  border-bottom: none;
}

.albums-features-icon {
  color: var(--dore);
  font-size: 0.8rem;
}

/* ══════════════════════════════
   TESTIMONIALS
   ══════════════════════════════ */
.testimonials-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  display: none;
  animation: fadeInUp 0.6s var(--ease-smooth);
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote {
  position: relative;
  margin-bottom: var(--space-md);
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--dore-subtle);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-primary);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--dore);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-type {
  font-size: 0.75rem;
  color: var(--taupe-light);
  margin-top: 0.25rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--beige-light);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

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

/* ══════════════════════════════
   INVESTISSEMENT (Tarifs)
   ══════════════════════════════ */
.invest-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.invest-content h2 {
  margin-bottom: var(--space-md);
}

.invest-content > p {
  margin-bottom: var(--space-sm);
  line-height: 2;
}

.invest-price {
  display: inline-block;
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--ivoire-pure), var(--rose-subtle));
  border: 1px solid var(--dore-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.invest-price-label {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--taupe-light);
  margin-bottom: 0.5rem;
}

.invest-price-amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--dore);
}

.invest-price-note {
  font-size: 0.85rem;
  color: var(--taupe-light);
  margin-top: 0.5rem;
}

.invest-detail {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--taupe);
  line-height: 2;
  margin: var(--space-md) 0 var(--space-lg);
}

/* ══════════════════════════════
   PORTFOLIO / GALLERY
   ══════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}

.portfolio-item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 51, 40, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-normal) var(--ease-smooth);
}

.portfolio-item:hover .portfolio-item-overlay {
  background: rgba(61, 51, 40, 0.3);
}

.portfolio-item-overlay span {
  color: var(--ivoire-pure);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.portfolio-item:hover .portfolio-item-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item-cta {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivoire-pure);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-smooth);
  transition-delay: 0.05s;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.portfolio-item:hover .portfolio-item-cta {
  opacity: 0.9;
  transform: translateY(0);
}

/* Portfolio item en tant que lien */
a.portfolio-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
}


/* ══════════════════════════════
   CONTACT / RÉSERVATION
   ══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-sm);
  line-height: 2;
}

.contact-details {
  margin-top: var(--space-lg);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige-light);
  border-radius: var(--radius-full);
  color: var(--dore);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--ivoire-pure);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--blanc-casse);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-smooth);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--dore-light);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
  background: var(--ivoire-pure);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--taupe-light);
  font-weight: 300;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: var(--taupe-dark);
  color: var(--beige-light);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--ivoire);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: var(--taupe-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dore-light);
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--taupe-light);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--ivoire);
}

.footer-bottom {
  border-top: 1px solid rgba(169, 158, 141, 0.2);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--taupe-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(169, 158, 141, 0.15);
  color: var(--beige-light);
  font-size: 0.85rem;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-social a:hover {
  background: var(--dore);
  color: var(--ivoire-pure);
  transform: translateY(-2px);
}

/* ══════════════════════════════
   ANIMATIONS
   ══════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════
   MODAL / LIGHTBOX
   ══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 51, 40, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

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

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--ivoire);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
}

.modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* ══════════════════════════════
   PAGE SECTIONS (for sub-pages)
   ══════════════════════════════ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 247, 242, 0.3) 0%,
    rgba(250, 247, 242, 0.7) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 {
  margin-bottom: var(--space-sm);
}

/* ══════════════════════════════
   CARDS (Carte cadeau etc.)
   ══════════════════════════════ */
.gift-card {
  background: linear-gradient(135deg, var(--ivoire-pure), var(--rose-subtle), var(--ivoire-pure));
  border: 1px solid var(--dore-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow-large);
  position: relative;
  overflow: hidden;
}

.gift-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dore-subtle), var(--dore), var(--dore-subtle));
}

.gift-card h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.gift-card p {
  line-height: 1.9;
}

/* ══════════════════════════════
   SCROLL-TO-TOP
   ══════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--dore);
  color: var(--ivoire-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-medium);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-smooth);
  cursor: pointer;
}

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

.scroll-top:hover {
  background: var(--dore-light);
  transform: translateY(-3px);
}

/* ══════════════════════════════
   PAGE LOADER
   ══════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ivoire);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-heading);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--beige-light);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-inner {
  width: 0%;
  height: 100%;
  background: var(--dore);
  border-radius: 2px;
  animation: loading 1.5s var(--ease-smooth) forwards;
}

@keyframes loading {
  to { width: 100%; }
}

/* ══════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .albums-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

/* ══════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--ivoire);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--space-lg) var(--space-lg);
    gap: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right var(--duration-normal) var(--ease-smooth);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    backdrop-filter: none;
    padding: 0 0 0 var(--space-sm);
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

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

  .experience-card {
    aspect-ratio: 4/5;
  }

  .section {
    padding: var(--space-xl) 0;
  }

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

  .portfolio-item:nth-child(1) {
    grid-row: span 1;
    aspect-ratio: 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .contact-form {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg img {
    animation: none;
    transform: none;
  }
}
/* ══════════════════════════════
   LIGHTBOX — AGRANDISSEMENT
   ══════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(45, 38, 30, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-md);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: translateY(0) scale(1);
}

.lightbox-content img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.lightbox-close:hover {
  background: var(--dore);
  transform: scale(1.1) rotate(90deg);
}

/* ── Navigation flèches lightbox ── */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10002;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
  user-select: none;
}
.lightbox-nav:hover {
  background: var(--dore);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav--prev { left: 1.5rem; }
.lightbox-nav--next { right: 1.5rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 768px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.2rem; }
  .lightbox-nav--prev { left: 0.5rem; }
  .lightbox-nav--next { right: 0.5rem; }
}

