/* ============================================
   AMCoiffeur - Feuille de styles
   Approche MOBILE-FIRST
   Design centré sur les photos de coupes
   Palette : brun, crème, doré
   ============================================ */

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

/* --- Variables CSS --- */
:root {
  --noir: #0d0d0d;
  --noir-carte: #1a1612;
  --brun-fonce: #2c1810;
  --brun: #5c3a24;
  --brun-clair: #8b5e3c;
  --dore: #c8956c;
  --dore-clair: #d4a76a;
  --creme: #f0e0c8;
  --blanc: #faf5ef;
  --rouge: #c0392b;
  --gris-texte: #b0a89e;
  --ombre: rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
  --rayon: 12px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--noir);
  color: var(--creme);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 70px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

ul { list-style: none; }

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

.icon-svg { width: 22px; height: 22px; fill: currentColor; }

/* --- Titres --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--creme);
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
  color: var(--creme);
  padding: 0 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--dore), var(--dore-clair));
  margin: 0.7rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gris-texte);
  margin-bottom: 2rem;
  font-weight: 300;
  padding: 0 1.5rem;
  line-height: 1.5;
}

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

section {
  padding: 3rem 0;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
  transition: background var(--transition), box-shadow var(--transition);
  padding-top: var(--safe-top);
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1002;
}

.header-logo img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.header-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dore-clair);
  letter-spacing: 0.5px;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1002;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--creme);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Overlay mobile */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Nav mobile */
.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--noir);
  border-left: 1px solid rgba(200,149,108,0.15);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 5rem 2rem 3rem;
  z-index: 1001;
  display: flex;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.nav-links.active {
  transform: translateX(0);
}

.nav-links li {
  width: 100%;
  text-align: center;
}

.nav-links a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--creme);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200,149,108,0.08);
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.nav-links a::after { display: none; }

.nav-links a:active,
.nav-links a:hover {
  color: var(--dore-clair);
  background: rgba(200,149,108,0.05);
}

.nav-links li:last-child { margin-top: 1rem; }
.nav-links li:last-child a { border-bottom: none; }

.nav-cta {
  background: linear-gradient(135deg, var(--dore), var(--brun-clair));
  color: var(--noir) !important;
  padding: 0.9rem 2rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 1.5px;
  border-bottom: none !important;
  display: inline-block !important;
  width: auto !important;
  box-shadow: 0 4px 15px rgba(200,149,108,0.25);
}

.nav-cta:active {
  transform: scale(0.97);
  background: linear-gradient(135deg, var(--dore-clair), var(--dore)) !important;
}

/* ==========================================
   BARRE CTA FIXE MOBILE
   ========================================== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(200,149,108,0.2);
  padding: 0.6rem 1rem;
  padding-bottom: calc(0.6rem + var(--safe-bottom));
  display: flex;
  gap: 0.6rem;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  text-align: center;
}

.mobile-cta-bar .cta-rdv {
  background: linear-gradient(135deg, var(--dore), var(--brun-clair));
  color: var(--noir);
  box-shadow: 0 2px 12px rgba(200,149,108,0.3);
}

.mobile-cta-bar .cta-rdv:active { transform: scale(0.97); }

.mobile-cta-bar .cta-call {
  background: rgba(200,149,108,0.1);
  border: 1px solid rgba(200,149,108,0.3);
  color: var(--dore-clair);
}

.mobile-cta-bar .cta-call:active {
  background: rgba(200,149,108,0.2);
}

/* ==========================================
   HERO — Photo plein écran
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 60px;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(13,13,13,0.7) 0%,
      rgba(13,13,13,0.3) 30%,
      rgba(13,13,13,0.3) 60%,
      rgba(13,13,13,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(200,149,108,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.2rem;
  max-width: 100%;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 30px rgba(200,149,108,0.3);
  border: 2px solid rgba(200,149,108,0.3);
  object-fit: cover;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--creme), var(--dore-clair));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 0.85rem;
  color: var(--gris-texte);
  font-weight: 400;
  margin-bottom: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

/* Scroll hint animé */
.hero-scroll-hint {
  position: absolute;
  bottom: calc(2rem + 70px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(200,149,108,0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--dore);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* --- Boutons --- */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--dore), var(--brun-clair));
  color: var(--noir);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(200,149,108,0.25);
  min-height: 48px;
  line-height: 1;
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(200,149,108,0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--dore);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid rgba(200,149,108,0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
}

.btn-secondary:active {
  background: var(--dore);
  color: var(--noir);
}

/* ==========================================
   BANDEAU PHOTOS DÉFILANT
   ========================================== */
.photo-strip {
  padding: 1rem 0;
  overflow: hidden;
  background: var(--noir);
  border-top: 1px solid rgba(200,149,108,0.1);
  border-bottom: 1px solid rgba(200,149,108,0.1);
}

.strip-track {
  display: flex;
  gap: 8px;
  animation: stripScroll 30s linear infinite;
  width: max-content;
}

.strip-track img {
  height: 180px;
  width: 120px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  filter: brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.strip-track img:hover {
  filter: brightness(1.05);
  transform: scale(1.05);
  z-index: 2;
}

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

/* ==========================================
   NOS RÉALISATIONS — Galerie principale
   ========================================== */
.realisations {
  background: var(--noir);
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

/* Mobile : scroll horizontal plein écran */
.gallery-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar { display: none; }

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  width: 75vw;
  aspect-ratio: 3/4;
  scroll-snap-align: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,13,13,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 1;
  transition: opacity var(--transition);
}

.gallery-label {
  color: var(--dore-clair);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Variantes ignorées sur mobile (scroll horizontal) */
.gallery-item--wide,
.gallery-item--tall {
  width: 75vw;
  aspect-ratio: 3/4;
}

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Points indicateurs galerie */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 1rem;
}

.gallery-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200,149,108,0.25);
  transition: all var(--transition);
}

.gallery-dots span.active {
  background: var(--dore);
  width: 22px;
  border-radius: 3px;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content {
  max-width: 92vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: calc(1rem + var(--safe-top));
  right: 1rem;
  background: rgba(200,149,108,0.15);
  border: 1px solid rgba(200,149,108,0.3);
  color: var(--creme);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(200,149,108,0.3);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200,149,108,0.1);
  border: 1px solid rgba(200,149,108,0.25);
  color: var(--creme);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  transition: all var(--transition);
}

.lightbox-prev { left: 0.8rem; }
.lightbox-next { right: 0.8rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(200,149,108,0.3);
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gris-texte);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* ==========================================
   SERVICES — Cartes avec photos
   ========================================== */
.services {
  background: linear-gradient(180deg, var(--noir) 0%, var(--brun-fonce) 100%);
}

.services-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar { display: none; }

.service-card {
  background: var(--noir-carte);
  border: 1px solid rgba(200,149,108,0.1);
  border-radius: var(--rayon);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  min-width: 240px;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.service-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-body {
  padding: 1.2rem;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--dore-clair);
}

.service-card p {
  font-size: 0.82rem;
  color: var(--gris-texte);
  line-height: 1.5;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--dore), var(--brun-clair));
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 2;
}

.service-card:active::before,
.service-card:hover::before {
  transform: scaleX(1);
}

/* Indicateur de scroll (points) */
.scroll-hint {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.scroll-hint span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200,149,108,0.25);
  transition: all var(--transition);
}

.scroll-hint span.active {
  background: var(--dore);
  width: 20px;
  border-radius: 3px;
}

/* ==========================================
   TARIFS
   ========================================== */
.tarifs {
  background: var(--noir);
}

.tarifs-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 0.5rem;
}

.tarif-card {
  background: var(--noir-carte);
  border: 1px solid rgba(200,149,108,0.1);
  border-radius: var(--rayon);
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.tarif-card:active {
  border-color: rgba(200,149,108,0.25);
  background: rgba(200,149,108,0.04);
}

.tarif-card .tarif-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--creme);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.tarif-card .tarif-icon { font-size: 1.3rem; }

.tarif-card .tarif-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dore-clair);
  white-space: nowrap;
}

.tarif-card--rdv {
  border-color: rgba(200,149,108,0.2);
}

.tarif-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.tarif-detail {
  display: block;
  font-size: 0.75rem;
  color: var(--gris-texte);
  font-weight: 400;
  margin-top: 0.15rem;
}

.tarifs-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dore-clair);
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  padding-left: 0.3rem;
  letter-spacing: 0.5px;
}

.tarifs-category-title:first-child {
  margin-top: 0;
}

.tarif-detail-desktop {
  display: block;
  font-size: 0.8rem;
  color: var(--gris-texte);
  font-weight: 400;
  margin-top: 0.1rem;
}

.tarifs-table {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--rayon);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.tarifs-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--noir-carte);
}

.tarifs-table thead th {
  background: linear-gradient(135deg, var(--dore), var(--brun-clair));
  color: var(--noir);
  padding: 1.2rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.tarifs-table tbody tr {
  border-bottom: 1px solid rgba(200,149,108,0.08);
  transition: background var(--transition);
}

.tarifs-table tbody tr:last-child { border-bottom: none; }

.tarifs-table tbody tr:hover {
  background: rgba(200,149,108,0.06);
}

.tarifs-table td {
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
}

.tarifs-table td:first-child {
  font-weight: 500;
  color: var(--creme);
}

.tarifs-table td:nth-child(2),
.tarifs-table td:nth-child(3) {
  text-align: center;
  font-weight: 700;
  color: var(--dore-clair);
  font-size: 1.15rem;
}

.tarifs-table thead th:nth-child(2),
.tarifs-table thead th:nth-child(3) {
  text-align: center;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  background: linear-gradient(180deg, var(--noir) 0%, var(--brun-fonce) 100%);
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,149,108,0.1);
  border: 1px solid rgba(200,149,108,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.9rem;
  color: var(--dore-clair);
  margin-bottom: 0.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.contact-item p {
  color: var(--gris-texte);
  font-size: 0.88rem;
}

.contact-item a:active { color: var(--dore-clair); }

.contact-quick-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.quick-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  background: rgba(200,149,108,0.08);
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: var(--rayon);
  color: var(--dore-clair);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
}

.quick-action-btn:active {
  background: rgba(200,149,108,0.15);
  transform: scale(0.97);
}

.quick-action-btn .qa-icon { font-size: 1.1rem; }

.horaires-list {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(200,149,108,0.1);
}

.horaires-list h4 {
  font-size: 0.95rem;
  color: var(--dore-clair);
  margin-bottom: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.horaires-list p {
  color: var(--gris-texte);
  font-size: 0.85rem;
  line-height: 1.9;
}

/* Formulaire */
.contact-form {
  background: var(--noir-carte);
  border: 1px solid rgba(200,149,108,0.1);
  border-radius: var(--rayon);
  padding: 1.5rem;
}

.contact-form h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--dore-clair);
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gris-texte);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,149,108,0.15);
  border-radius: 8px;
  color: var(--creme);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dore);
  box-shadow: 0 0 0 3px rgba(200,149,108,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(176,168,158,0.5);
}

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

.contact-form .btn-primary {
  width: 100%;
  margin-top: 0.3rem;
}

/* ==========================================
   RENDEZ-VOUS — Avec photo de fond
   ========================================== */
.rdv {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 5rem 0;
}

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

.rdv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) blur(2px);
}

.rdv .container {
  position: relative;
  z-index: 2;
}

.rdv-content {
  position: relative;
  z-index: 2;
  padding: 0 0.5rem;
}

.rdv-content p {
  font-size: 0.95rem;
  color: var(--gris-texte);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--brun-fonce);
  border-top: 1px solid rgba(200,149,108,0.15);
  padding: 2rem 0 1.2rem;
  padding-bottom: calc(1.2rem + 70px + var(--safe-bottom));
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dore-clair);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(200,149,108,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--creme);
}

.social-link:active {
  background: var(--dore);
  border-color: var(--dore);
  color: var(--noir);
  transform: scale(0.95);
}

.social-link .icon-svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(200,149,108,0.1);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gris-texte);
  text-align: center;
}

.footer-bottom a {
  color: var(--gris-texte);
  padding: 0.6rem 0.5rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom a:active { color: var(--dore-clair); }

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE — TABLETTE (>= 768px)
   ========================================== */
@media (min-width: 768px) {
  body { padding-bottom: 0; }

  .container { padding: 0 1.5rem; }

  section { padding: 4rem 0; }

  .mobile-cta-bar { display: none; }

  /* Header */
  .header .container { height: 70px; }
  .header-logo img { height: 50px; width: 50px; }
  .header-logo span { font-size: 1.3rem; }

  /* Titres */
  .section-title { font-size: 2.2rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2.5rem; }

  /* Hero */
  .hero-logo { width: 140px; height: 140px; }
  .hero h1 { font-size: 2.8rem; }
  .hero .tagline { font-size: 1rem; }
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .hero-scroll-hint {
    bottom: 2rem;
  }

  .btn-primary { padding: 1rem 2.5rem; font-size: 0.9rem; }

  /* Photo strip */
  .strip-track img {
    height: 200px;
    width: 150px;
    gap: 10px;
  }

  .strip-track { gap: 10px; }

  /* Gallery — grille 3 colonnes (plus de scroll) */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 12px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
  }

  .gallery-item {
    width: auto;
    aspect-ratio: 3/4;
    scroll-snap-align: unset;
  }

  .gallery-item--wide { grid-column: span 2; aspect-ratio: 16/10; }
  .gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }

  .gallery-label { font-size: 0.95rem; }

  .gallery-overlay {
    opacity: 0;
    transition: opacity var(--transition);
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-item:hover img { transform: scale(1.06); }

  .gallery-dots { display: none; }

  /* Services : grille */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
  }

  .service-card { min-width: auto; }
  .service-card-img { height: 180px; }
  .scroll-hint { display: none; }

  /* Tarifs */
  .tarifs-cards { display: none; }
  .tarifs-table { display: block; }

  /* Contact */
  .contact-wrapper {
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
  }

  .contact-info { flex: 1; }
  .contact-form { flex: 1; padding: 2rem; }
  .contact-quick-actions { display: none; }

  /* Footer */
  .footer { padding-bottom: 1.5rem; }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================
   RESPONSIVE — DESKTOP (>= 1024px)
   ========================================== */
@media (min-width: 1024px) {
  section { padding: 5rem 0; }

  /* Nav desktop */
  .burger { display: none; }
  .nav-overlay { display: none !important; }

  .nav-links {
    position: static;
    transform: none;
    flex-direction: row;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    border-left: none;
    padding: 0;
    gap: 0;
    overflow: visible;
  }

  .nav-links li { width: auto; text-align: center; }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: none;
    margin: 0 1rem;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dore);
    transition: width var(--transition);
  }

  .nav-links a:hover {
    color: var(--dore-clair);
    background: transparent;
  }

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

  .nav-links li:last-child { margin-top: 0; margin-left: 0.5rem; }

  .nav-cta {
    padding: 0.55rem 1.5rem !important;
    font-size: 0.82rem !important;
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 149, 108, 0.4);
    background: linear-gradient(135deg, var(--dore-clair), var(--dore)) !important;
  }

  /* Header */
  .header .container { height: 75px; }
  .header-logo img { height: 55px; width: 55px; }
  .header-logo span { font-size: 1.4rem; letter-spacing: 1px; }

  /* Titres */
  .section-title { font-size: 2.5rem; }
  .section-title::after { width: 60px; }
  .section-subtitle { font-size: 1.05rem; margin-bottom: 3rem; }

  /* Hero */
  .hero { padding-top: 75px; }
  .hero-logo {
    width: 170px;
    height: 170px;
    box-shadow: 0 0 50px rgba(200,149,108,0.3);
    border: 3px solid rgba(200,149,108,0.3);
    margin-bottom: 1.5rem;
  }
  .hero h1 { font-size: 3.5rem; }
  .hero .tagline { font-size: 1.15rem; margin-bottom: 2.5rem; }

  .btn-primary { padding: 1rem 2.5rem; font-size: 1rem; }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200,149,108,0.5);
    background: linear-gradient(135deg, var(--dore-clair), var(--dore));
  }

  .btn-secondary:hover {
    background: var(--dore);
    color: var(--noir);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200,149,108,0.3);
  }

  /* Photo strip */
  .strip-track img {
    height: 250px;
    width: 188px;
    border-radius: 10px;
  }

  .strip-track { gap: 12px; }

  /* Gallery — bento grid desktop */
  .realisations { padding-top: 5rem; padding-bottom: 4rem; }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .gallery-item { border-radius: 14px; }

  .gallery-overlay { padding: 1.5rem; }

  .gallery-label { font-size: 1.05rem; }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .service-card-img { height: 200px; }
  .service-card-body { padding: 1.5rem; }

  .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200,149,108,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  }

  .service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
  .service-card p { font-size: 0.85rem; line-height: 1.6; }

  /* Galerie overlay hover */
  .gallery-overlay { padding: 1.5rem; }
  .gallery-label { font-size: 1.1rem; }

  /* Contact */
  .contact-wrapper { gap: 3rem; }
  .contact-form { padding: 2.5rem; }
  .contact-form h3 { font-size: 1.5rem; }
  .contact-icon { width: 50px; height: 50px; font-size: 1.3rem; }
  .contact-item h4 { font-size: 1rem; }
  .contact-item p { font-size: 0.95rem; }
  .contact-item a:hover { color: var(--dore-clair); }

  /* RDV */
  .rdv { padding: 6rem 0; }
  .rdv .btn-primary { font-size: 1.1rem; padding: 1.1rem 3rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-logo img { height: 45px; width: 45px; }
  .footer-logo span { font-size: 1.2rem; }

  .social-link { width: 44px; height: 44px; }
  .social-link:hover {
    background: var(--dore);
    border-color: var(--dore);
    color: var(--noir);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(200,149,108,0.3);
  }

  .footer-bottom { font-size: 0.85rem; }
  .footer-bottom a:hover { color: var(--dore-clair); }

  /* Horaires */
  .horaires-list h4 { font-size: 1rem; }
  .horaires-list p { font-size: 0.9rem; }

  /* Lightbox */
  .lightbox-content { max-width: 80vw; max-height: 90vh; }
  .lightbox-content img { max-height: 90vh; border-radius: 12px; }
  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }
}

/* ==========================================
   GRAND ECRAN (>= 1400px)
   ========================================== */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .hero h1 { font-size: 4rem; }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .strip-track img {
    height: 280px;
    width: 210px;
  }
}
