/* ── RESET & TOKENS ── */
:root {
  --font-script:      'Great Vibes', cursive;
  --font-heading:     'Cormorant Garamond', serif;
  --font-body:        'Montserrat', sans-serif;
  --color-primary:    #c8a08c;
  --color-primary-dk: #b08070;
  --color-beige:      #f5ede6;
  --color-dark:       #1c1c1c;
  --color-text:       #333333;
  --color-white:      #ffffff;
  --color-ph:         #d9cfc9;
  --header-h:         80px;
  --container-max:    1200px;
  --tr:               0.3s ease;
  --radius:           3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── UTILITIES ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.script-label {
  font-family: var(--font-script);
  font-size: 2.2rem;
  line-height: 1.2;
  display: block;
  margin-bottom: 4px;
}
.script-label.dark  { color: var(--color-primary); }
.script-label.light { color: rgba(255,255,255,0.85); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .script-label { margin-bottom: 6px; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  color: #777;
  font-size: 0.88rem;
  max-width: 560px;
  margin: 0 auto 16px;
}
.bold-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: underline;
  color: var(--color-text);
  display: inline-block;
}
.bold-link:hover { color: var(--color-primary); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-primary-dk); }

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-sm {
  display: inline-block;
  padding: 9px 22px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--tr);
}
.btn-sm:hover { background: var(--color-primary-dk); }

.btn-outline-dark {
  display: inline-block;
  padding: 9px 22px;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background var(--tr), color var(--tr);
}
.btn-outline-dark:hover { background: var(--color-text); color: white; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-primary);
  color: white;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background var(--tr);
  flex-shrink: 0;
}
.btn-phone:hover { background: var(--color-primary-dk); }

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-ph);
  opacity: 0;
  transition: opacity 0.8s ease;
  transform: scale(1);
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 6s ease-in-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

/* ── PHOTO PLACEHOLDERS ── */
.about-photo,
.card-photo,
.cert-badge-img,
.atouts-bg,
.collection-photo,
.cta-bg {
  background-color: var(--color-ph);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--tr), box-shadow var(--tr);
}
.site-header.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--tr);
}
.logo-img-dark  { display: none; }
.logo-img-light { display: block; }
.site-header.scrolled .logo-img-light { display: none; }
.site-header.scrolled .logo-img-dark  { display: block; }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list  { display: flex; align-items: center; gap: 28px; }
.nav-list > li > a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.92);
  transition: color var(--tr);
  padding: 4px 0;
  display: block;
}
.nav-list > li > a:hover { color: var(--color-white); }
.site-header.scrolled .nav-list > li > a { color: var(--color-text); }
.site-header.scrolled .nav-list > li > a:hover { color: var(--color-primary); }

.caret { font-size: 0.55rem; vertical-align: middle; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 210px;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  /* délai sur la fermeture pour laisser le temps d'atteindre le menu */
  transition: opacity 0.25s ease 0.25s, transform 0.25s ease 0.25s;
  z-index: 10;
  /* pont invisible entre le lien et le menu */
  padding-top: 12px;
  margin-top: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  /* apparition immédiate */
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s;
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.78rem;
  color: var(--color-text);
  transition: background var(--tr), color var(--tr);
}
.dropdown li a:hover { background: var(--color-beige); color: var(--color-primary); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr), background var(--tr);
}
.site-header.scrolled .nav-toggle span { background: var(--color-text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: white;
  color: var(--color-primary);
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 2px 10px rgba(0,0,0,0.12);
  transition: background var(--tr), color var(--tr);
}
.social-link:hover { background: var(--color-primary); color: white; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.62) 30%, rgba(0,0,0,0.25) 65%, rgba(0,0,0,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: var(--header-h);
  max-width: 660px;
}
.hero-content .script-label {
  font-size: 3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-tilt {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.hero-tilt svg { display: block; width: 100%; height: 80px; }

/* ── ABOUT ── */
.about { padding: 96px 0; background: var(--color-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .script-label { margin-bottom: 10px; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 0.86rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.8;
}
.about-text .btn { margin-top: 14px; }
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-photo { aspect-ratio: 2/3; }

/* ── PRESTATIONS ── */
.prestations { padding: 96px 0 0; background: var(--color-beige); }
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.prestation-card { display: flex; flex-direction: column; }
.card-photo { aspect-ratio: 3/4; }
.card-body {
  background: var(--color-beige);
  padding: 28px 24px 40px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.card-body p {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
}

/* ── CERTIFICATION ── */
.certification { padding: 96px 0; background: var(--color-white); }
.certification-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.cert-text .script-label { margin-bottom: 10px; }
.cert-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
}
.cert-text p { font-size: 0.86rem; color: #555; line-height: 1.8; }
.cert-badge { display: flex; justify-content: center; align-items: center; }
.cert-badge-img {
  width: 220px;
  height: 220px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  border: 1px solid #ece8e4;
}

/* ── ATOUTS ── */
.atouts {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: var(--color-dark);
}
.atouts-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.atouts-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.72);
}
.atouts-content { position: relative; z-index: 1; }
.atouts-header { text-align: center; margin-bottom: 56px; }
.atouts-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--color-white);
  margin-top: 4px;
}
.atouts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.atout-item { color: white; }
.atout-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.atout-item h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.atout-item p { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── COLLECTIONS ── */
.collections { padding: 96px 0 0; background: #faf7f4; }
.collections .section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
}
.collections-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
}
.collections-track {
  display: flex;
  transition: transform 0.45s ease;
}
.collection-card {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
}
.collection-photo { aspect-ratio: 3/4; }
.collection-info {
  background: var(--color-beige);
  padding: 24px;
  text-align: center;
}
.collection-info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background var(--tr);
}
.carousel-btn:hover { background: var(--color-beige); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-btn.hidden { display: none; }

/* ── AVIS CLIENTS ── */
.avis { padding: 96px 0; background: var(--color-white); }
.avis .section-header { margin-bottom: 40px; }
.avis .section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
}
.avis-inner {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 48px;
  align-items: start;
}
.avis-badge { text-align: center; padding-top: 8px; }
.badge-excellent {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.badge-stars { font-size: 1.4rem; color: #f4b400; letter-spacing: 2px; margin-bottom: 4px; }
.badge-count { font-size: 0.76rem; color: #555; margin-bottom: 10px; }
.badge-google-wrap { display: flex; justify-content: center; }

.reviews-container { position: relative; }
.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: white;
  border: 1px solid #ece8e4;
  border-radius: 6px;
  padding: 20px;
  min-width: 0;
}
.review-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-name { font-size: 0.82rem; font-weight: 600; margin-bottom: 2px; }
.review-stars { font-size: 0.85rem; color: #f4b400; margin-bottom: 2px; }
.review-date { font-size: 0.7rem; color: #999; }
.review-google-icon { flex-shrink: 0; margin-top: 2px; }
.review-text { font-size: 0.81rem; color: #555; line-height: 1.65; margin-bottom: 10px; }
.read-more { font-size: 0.76rem; color: var(--color-primary); font-weight: 500; }
.read-more:hover { text-decoration: underline; }

.reviews-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 5;
  transition: opacity var(--tr), background var(--tr);
}
.reviews-prev { left: -18px; }
.reviews-next { right: -18px; }
.reviews-arrow.disabled { opacity: 0.3; pointer-events: none; }
.reviews-arrow:hover { background: var(--color-beige); }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-color: #2a2018;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,15,10,0.62);
}
.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.06em;
  max-width: 520px;
  line-height: 1.2;
}

/* ── FOOTER ── */
.site-footer { background: var(--color-white); }
.footer-main {
  padding: 64px 0;
  border-top: 1px solid #ece8e4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--color-text);
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.footer-brand address {
  font-size: 0.81rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.footer-brand address svg { margin-top: 3px; flex-shrink: 0; color: var(--color-primary); }
.footer-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.81rem;
  color: #666;
  margin-bottom: 20px;
  transition: color var(--tr);
}
.footer-phone:hover { color: var(--color-primary); }
.footer-phone svg { color: var(--color-primary); }
.footer-hours strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-hours p { font-size: 0.81rem; color: #666; }

.footer-links { margin-bottom: 28px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.76rem;
  color: #555;
  letter-spacing: 0.06em;
  transition: color var(--tr);
}
.footer-links a:hover { color: var(--color-primary); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--color-text);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.footer-socials a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}
.footer-map-col iframe { border-radius: var(--radius); }

.footer-bar {
  background: #f5f3f0;
  padding: 14px 0;
  border-top: 1px solid #ece8e4;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.73rem;
  color: #999;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #999; transition: color var(--tr); }
.footer-legal a:hover { color: var(--color-primary); }

/* ── SOUS-PAGES : HERO COURT ── */
.hero--short { height: 52vh; min-height: 340px; }
.hero--short .hero-content {
  justify-content: flex-end;
  padding-bottom: 48px;
  max-width: 100%;
}
.hero--short .hero-content h1 { font-size: clamp(1.8rem, 4vw, 3rem); }

/* ── PAGE INTRO (titre de page) ── */
.page-intro {
  padding: 72px 0 60px;
  background: var(--color-white);
  text-align: center;
}
.page-intro h1, .page-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-intro p {
  font-size: 0.88rem;
  color: #666;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* ── GALERIE PHOTOS ── */
.gallery-section { padding: 0 0 80px; background: var(--color-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2/3;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-section-title {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  display: block;
  margin: 60px 0 24px;
}

/* ── PAGE COLLECTIONS (nos-collections) ── */
.collections-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.collection-page-card { text-align: center; }
.collection-page-photo {
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  background-color: var(--color-ph);
  border-radius: 2px;
  margin-bottom: 16px;
}
.collection-page-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ── FORMULAIRE CONTACT ── */
.contact-section { padding: 0 0 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.contact-info p { font-size: 0.86rem; color: #666; line-height: 1.8; margin-bottom: 12px; }
.contact-info address { font-size: 0.86rem; color: #666; line-height: 1.9; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; color: #555; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--color-text);
  background: white;
  transition: border-color var(--tr);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-primary); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
}
.form-checkbox input { flex-shrink: 0; margin-top: 3px; accent-color: var(--color-primary); }
.form-checkbox a { color: var(--color-primary); }
.form-submit { text-align: left; }

/* ── TEXTE LÉGAL ── */
.legal-section { padding: 0 0 80px; }
.legal-content { max-width: 800px; }
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 36px 0 10px;
  color: var(--color-text);
}
.legal-content h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0 8px;
  color: var(--color-text);
}
.legal-content p { font-size: 0.86rem; color: #555; line-height: 1.8; margin-bottom: 12px; }
.legal-content a { color: var(--color-primary); }

/* ── RESPONSIVE SOUS-PAGES ── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--sr-delay, 0ms);
}
.sr-up    { transform: translateY(40px); }
.sr-left  { transform: translateX(-40px); }
.sr-right { transform: translateX(40px); }
.sr-scale { transform: scale(0.94); }

.sr.is-visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .atouts-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-map-col { grid-column: 1 / -1; }
  .footer-map-col iframe { height: 200px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 8px 0 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; align-items: stretch; }
  .nav-list > li > a {
    display: block;
    padding: 13px 24px;
    color: var(--color-text);
    border-bottom: 1px solid #f0ede9;
    font-size: 0.76rem;
  }
  .has-dropdown.open .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: var(--color-beige);
  }
  .dropdown li a { padding: 11px 36px; }
  .btn-phone .phone-num { display: none; }
  .social-sidebar { display: none; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .prestations-grid { grid-template-columns: 1fr; margin-left: 0; width: 100%; }
  .card-photo { aspect-ratio: 16/9; }
  .certification-inner { grid-template-columns: 1fr; }
  .cert-badge { margin-top: 24px; }
  .atouts-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .collection-card { flex: 0 0 85vw; }

  /* Avis clients — correction dépassement mobile */
  .avis { padding: 60px 0; }
  .avis-inner { grid-template-columns: 1fr; gap: 28px; }
  .avis-badge { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 0; }
  .reviews-container { overflow: hidden; padding: 0; }
  .reviews-viewport { overflow: hidden; width: 100%; }
  .reviews-track { gap: 12px; }
  .review-card { flex: 0 0 calc(100vw - 48px); max-width: 100%; min-width: 0; }
  .reviews-arrow { top: auto; bottom: -44px; transform: none; }
  .reviews-prev { left: calc(50% - 44px); }
  .reviews-next { right: auto; left: calc(50% + 8px); }
  .reviews-container { padding-bottom: 64px; }

  .cta-content { flex-direction: column; text-align: center; align-items: center; }
  .cta-content h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar-inner { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* Éléments pleine largeur — empêche le débordement */
  .collections-wrapper { overflow: hidden; max-width: 100vw; }
  .collections-track { width: max-content; max-width: none; }
  .gallery-grid { overflow: hidden; }
  .hero-tilt svg { height: 40px; }
}

@media (max-width: 480px) {
  .atouts-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 calc(100vw - 32px); }
}

/* ── LIGHTBOX ── */
.gallery-item img { cursor: zoom-in; transition: opacity 0.2s; }
.gallery-item img:hover { opacity: 0.88; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.7);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  padding: 0;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}
