/* ============================================================ */
/* TECHNIBOIS AGENCEMENT — style.css                           */
/* ============================================================ */

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

/* ============================================================ */
/* 1. VARIABLES CSS                                             */
/* ============================================================ */
:root {
  --primary:    #2C3540;
  --secondary:  #1A2028;
  --accent:     #C8A96E;
  --bg:         #F7F5F1;
  --bg-mid:     #EDEAE4;
  --text:       #1A2028;
  --text-light: #F7F5F1;
  --text-mid:   #6B7280;
  --border:     rgba(200,169,110,0.25);
  --container:  1280px;
  --transition: 0.35s ease;
}

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

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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

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

/* ============================================================ */
/* 3. UTILITAIRES                                               */
/* ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--secondary);
}
.btn-primary:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.35);
}

.btn-secondary {
  border: 1px solid rgba(247,245,241,0.5);
  color: var(--text-light);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--secondary);
  padding: 9px 22px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: #d4b87a;
  border-color: #d4b87a;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.35);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================ */
/* 4. NAVBAR                                                    */
/* ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

#nav.scrolled {
  background: rgba(26,32,40,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 11px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  color: var(--text-light);
  transition: color var(--transition);
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--text-light);
  line-height: 1;
  display: block;
  letter-spacing: 0.01em;
}

.logo-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(247,245,241,0.45);
  margin: 0;
}


.logo-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.70rem;
  text-transform: uppercase;
  color: rgba(247,245,241,0.65);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F7F5F1;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

.nav-cta { display: flex; align-items: center; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: all 0.35s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--secondary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 90px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  display: flex;
}
.mobile-menu a {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 12px 28px;
  font-style: normal;
}

/* ============================================================ */
/* 4b. NAV DROPDOWN (Prestations)                              */
/* ============================================================ */
.nav-links .has-dropdown { position: relative; }

.nav-links .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition);
  opacity: 0.65;
}
.nav-links .has-dropdown:hover > a::after {
  transform: translateY(0) rotate(225deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 248px;
  background: rgba(26,32,40,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 6px;
  padding: 0.5rem 0;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 1001;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-links .dropdown a {
  display: block;
  padding: 0.62rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(247,245,241,0.82);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-links .dropdown a:hover {
  color: var(--accent);
  background: rgba(200,169,110,0.07);
}

/* ============================================================ */
/* 5. HERO                                                      */
/* ============================================================ */
#hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Hero des pages internes (prestations, atelier, contact...) */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,32,40,0.94) 0%,
    rgba(26,32,40,0.55) 55%,
    rgba(26,32,40,0.78) 100%
  );
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 4rem;
}
.page-hero .section-label { color: var(--accent); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  color: #FFFFFF;
  line-height: 1.12;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  max-width: 800px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.page-hero-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(247,245,241,0.82);
  max-width: 620px;
  line-height: 1.85;
  margin-bottom: 1.6rem;
}
.page-hero .breadcrumb { margin-top: 0; margin-bottom: 1.6rem; }
.page-hero .hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Bloc texte + image alterné (pages prestations) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-split.reverse .feature-split-media { order: 2; }
.feature-split-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.feature-split-media:hover img { transform: scale(1.03); }
.feature-split-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--primary);
  line-height: 1.18;
  margin-top: 0.4rem;
  margin-bottom: 1.3rem;
}
.feature-split-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.feature-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* Section standard claire pour pages internes */
.section-pad { padding: 110px 0; }
.section-pad.bg-light { background: var(--bg); }
.section-pad.bg-mid { background: var(--bg-mid); }
.section-pad.bg-dark { background: var(--secondary); }
.section-intro {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-top: 0.5rem;
  line-height: 1.18;
}
.section-pad.bg-dark .section-intro h2 { color: var(--text-light); }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,32,40,0.52) 0%,
    rgba(26,32,40,0.30) 50%,
    rgba(26,32,40,0.52) 100%
  );
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,32,40,0.55) 0%,
    transparent 45%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  min-height: calc(100vh - 120px);
  justify-content: center;
  padding-bottom: 5vh;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border: none;
  max-width: 380px;
}

.hero-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #FFFFFF;
  line-height: 1;
  display: block;
  letter-spacing: 0.01em;
}

.hero-brand-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(247,245,241,0.5);
  margin: 0;
}

.hero-brand-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  color: rgba(247,245,241,0.7);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  flex-wrap: wrap;
}


/* ============================================================ */
/* 6. MANIFESTE                                                 */
/* ============================================================ */
#manifeste {
  background: var(--bg);
  padding: 130px 0;
}

.manifeste-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.manifeste-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.manifeste-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 8rem;
  align-items: center;
}

.manifeste-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.85rem;
  color: var(--primary);
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  padding-left: 2rem;
}

.manifeste-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.manifeste-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  padding: 2rem 0;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-number em {
  font-style: italic;
  color: var(--accent);
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.4rem;
  display: block;
}

/* ============================================================ */
/* EQUIPE                                                        */
/* ============================================================ */
#equipe {
  background: var(--bg-mid);
  padding: 130px 0;
}

.equipe-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.equipe-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.equipe-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.equipe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.equipe-texte {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* ============================================================ */
/* SHOWROOM                                                      */
/* ============================================================ */
#showroom {
  background: var(--secondary);
  padding: 130px 0;
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.showroom-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-light);
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.showroom-text .section-label {
  color: var(--accent);
}

.showroom-text p {
  font-size: 0.95rem;
  color: rgba(247,245,241,0.75);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.showroom-infos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid rgba(200,169,110,0.2);
  padding-top: 1.8rem;
}

.showroom-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showroom-info-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.showroom-info-value {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: rgba(247,245,241,0.8);
  line-height: 1.6;
}

.showroom-visual {
  position: relative;
}

.showroom-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.showroom-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.showroom-badge {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background: var(--accent);
  color: var(--secondary);
  padding: 0.9rem 1.3rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center;
}

/* ============================================================ */
/* BORA                                                          */
/* ============================================================ */
#bora {
  background: var(--bg);
  padding: 130px 0;
}

.bora-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bora-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
}

.bora-intro {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.bora-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.bora-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bora-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,53,64,0.1);
}

.bora-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--secondary);
  overflow: hidden;
}

.bora-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bora-card-content {
  padding: 2rem;
}

.bora-product-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.bora-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.bora-card-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.bora-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.bora-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.bora-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.bora-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.bora-footer a:hover {
  color: var(--accent);
}

/* ============================================================ */
/* 7. GALERIE                                                   */
/* ============================================================ */
#galerie {
  background: var(--secondary);
  padding: 130px 0;
}

#galerie .section-label { color: var(--accent); }

#galerie .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-light);
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

.galerie-intro {
  font-size: 1rem;
  color: rgba(247,245,241,0.65);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

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

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,32,40,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26,32,40,0.62);
}

.gallery-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  line-height: 1.4;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Large item */
.gallery-item.large {
  grid-row: span 2;
  min-height: 620px;
}

.gallery-item.medium {
  min-height: 300px;
}

/* Row 2 */
.gallery-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.gallery-row2 .gallery-item {
  min-height: 280px;
  border-radius: 8px;
}

/* Full width */
.gallery-full {
  margin-top: 12px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
  transition: transform 0.7s ease;
}
.gallery-full:hover img { transform: scale(1.03); }
.gallery-full .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,32,40,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.gallery-full:hover .gallery-overlay { background: rgba(26,32,40,0.55); }
.gallery-full .gallery-caption {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-light);
}
.gallery-full:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ============================================================ */
/* 8. SERVICES                                                  */
/* ============================================================ */
#services {
  background: var(--bg);
  padding: 130px 0;
}

/* Cuisine star */
.service-star {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 5rem;
  border-radius: 12px;
  overflow: hidden;
}

.service-star-img {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0;
}

.service-star-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  image-orientation: from-image;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-star:hover .service-star-img img { transform: scale(1.03); }

.service-star-content {
  background: var(--primary);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-star-content .section-label { color: var(--accent); }

.service-star-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--text-light);
  line-height: 1.15;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-star-desc {
  font-size: 0.95rem;
  color: rgba(247,245,241,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 380px;
}

/* Grille autres services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: white;
  padding: 1.8rem 1.6rem;
  border-radius: 6px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.8rem;
  bottom: 1.8rem;
  width: 2px;
  background: var(--accent);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,53,64,0.1);
  z-index: 1;
}

.service-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 1rem;
}

/* ============================================================ */
/* 9. TÉMOIGNAGES                                               */
/* ============================================================ */
#temoignages {
  background: var(--secondary);
  padding: 130px 0;
}

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

.temoignages-header .section-label { color: var(--accent); }

.temoignages-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-light);
  font-weight: 400;
  margin-top: 0.5rem;
}

/* Grand témoignage */
.temoignage-main {
  position: relative;
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.quote-bg {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.temoignage-main blockquote {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 2rem;
}

.temoignage-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.temoignage-author-info strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.temoignage-author-info span {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(247,245,241,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 0.2rem;
  display: block;
}

/* Petits témoignages */
.temoignages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.temoignage-card {
  background: rgba(247,245,241,0.04);
  border: 1px solid rgba(200,169,110,0.20);
  padding: 2rem 2rem;
  border-radius: 8px;
  transition: border-color var(--transition);
}
.temoignage-card:hover { border-color: rgba(200,169,110,0.5); }

.temoignage-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(247,245,241,0.85);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.temoignage-card-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  flex-shrink: 0;
}

.avatar-info strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
}

.avatar-info span {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(247,245,241,0.5);
  letter-spacing: 0.08em;
}

/* Badge Google */
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200,169,110,0.15);
}

.google-badge-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,245,241,0.5);
}

.google-badge-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
}

/* ============================================================ */
/* 10. PROCESSUS                                                */
/* ============================================================ */
#processus {
  background: var(--bg-mid);
  padding: 130px 0;
}

#processus .section-header {
  text-align: center;
  margin-bottom: 5rem;
}

#processus .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  font-weight: 400;
  margin-top: 0.5rem;
}

.processus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

/* Trait doré reliant les étapes */
.processus-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 0.5rem);
  right: calc(12.5% + 0.5rem);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.4;
}

.step {
  padding: 0 2rem;
  position: relative;
  text-align: center;
}

.step-num-bg {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 8rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-mid);
  border: 2px solid var(--accent);
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
  transition: background var(--transition);
}
.step:hover .step-dot { background: var(--accent); }

.step-number {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.processus-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============================================================ */
/* 11. FAQ                                                      */
/* ============================================================ */
#faq {
  background: var(--bg);
  padding: 130px 0;
}

.faq-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  color: var(--primary);
  gap: 1rem;
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================ */
/* 12. ZONE D'INTERVENTION                                      */
/* ============================================================ */
#zone-intervention {
  background: var(--bg-mid);
  padding: 130px 0;
}

#zone-intervention h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 3rem;
  max-width: 700px;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.zone-text p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.zone-text p:last-of-type { margin-bottom: 0; }

.zone-encart {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--accent);
  border-radius: 0 4px 4px 0;
  background: rgba(200,169,110,0.07);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.zone-communes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: flex-start;
}

.commune-tag {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-mid);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.commune-tag:hover {
  border-color: var(--accent);
  color: var(--primary);
}

.commune-tag.main {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  border-radius: 3px;
  font-weight: 500;
}
.commune-tag.main:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--secondary);
}

/* ============================================================ */
/* 13. CTA FINAL                                                */
/* ============================================================ */
#cta-final {
  background: var(--secondary);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content .section-label { color: var(--accent); }

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-light);
  line-height: 1.15;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.cta-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,245,241,0.6);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================ */
/* 14. FOOTER                                                   */
/* ============================================================ */
#footer {
  background: #111820;
  padding: 70px 0 30px;
  color: rgba(247,245,241,0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.footer-logo {
  margin-bottom: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
}

.footer-about p {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(247,245,241,0.45);
  max-width: 300px;
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.82rem;
  line-height: 1.75;
  font-style: normal;
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

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

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(247,245,241,0.45);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--text-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.footer-contact-item a {
  color: rgba(247,245,241,0.45);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(247,245,241,0.3);
}

.footer-credit {
  font-size: 0.78rem;
  color: rgba(247,245,241,0.3);
  text-align: center;
  transition: color var(--transition);
}
.footer-credit:hover { color: var(--accent); }

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(247,245,241,0.3);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(247,245,241,0.65); }

/* ============================================================ */
/* 15. BARRE TEL MOBILE STICKY                                  */
/* ============================================================ */
.mobile-tel-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--accent);
  padding: 14px 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.mobile-tel-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

.mobile-tel-bar a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  text-decoration: none;
}

/* ============================================================ */
/* 16. MENTIONS LÉGALES                                         */
/* ============================================================ */
.hero-simple {
  background: var(--primary);
  min-height: auto;
  padding: 120px 0 60px;
  position: relative;
}

.breadcrumb {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(247,245,241,0.45);
  margin-top: 1rem;
}

.breadcrumb a {
  color: rgba(247,245,241,0.45);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--accent); }

.breadcrumb span { color: rgba(247,245,241,0.25); margin: 0 0.5rem; }

.legal-content {
  background: var(--bg);
  padding: 80px 0;
}

.legal-inner {
  max-width: 800px;
}

.legal-inner h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.legal-inner h2:first-child { margin-top: 0; }

.legal-inner p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-inner strong {
  color: var(--text);
  font-weight: 600;
}

.legal-contact-box {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.legal-contact-box h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.legal-contact-box p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.legal-contact-box a {
  color: var(--primary);
  transition: color var(--transition);
}
.legal-contact-box a:hover { color: var(--accent); }

/* ============================================================ */
/* 17. RESPONSIVE — max-width: 1024px                          */
/* ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  .equipe-grid-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showroom-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .showroom-badge {
    top: -1rem;
    right: 0;
  }

  .manifeste-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.large { grid-row: span 1; min-height: 320px; }
  .gallery-item.medium { min-height: 320px; }

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

  .processus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .processus-grid::before { display: none; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-about { grid-column: span 2; }

  .service-star {
    grid-template-columns: 1fr;
  }
  .service-star-img { min-height: 380px; }
  .service-star-content { padding: 3rem; }

  .zone-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-split.reverse .feature-split-media { order: 0; }
}

/* ============================================================ */
/* 18. RESPONSIVE — max-width: 768px                           */
/* ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .section-pad { padding: 70px 0; }
  .page-hero { min-height: 52vh; }
  .page-hero .container { padding-top: 120px; padding-bottom: 3rem; }
  .page-hero .hero-ctas { flex-direction: column; align-items: stretch; }
  .page-hero .hero-ctas .btn { width: 100%; justify-content: center; }
  .feature-split-media { aspect-ratio: 16/10; }

  .showroom-img-wrap {
    aspect-ratio: 16/9;
  }

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

  #manifeste,
  #galerie,
  #services,
  #temoignages,
  #processus,
  #faq,
  #zone-intervention,
  #cta-final {
    padding: 70px 0;
  }

  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero-content { max-width: 100%; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large, .gallery-item.medium { min-height: 280px; }

  .gallery-row2 {
    grid-template-columns: 1fr;
  }
  .gallery-row2 .gallery-item { min-height: 240px; }
  .gallery-full { min-height: 240px; }

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

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

  .temoignage-main blockquote { font-size: 1.25rem; }

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

  .step {
    text-align: left;
    padding: 0 0 0 1.5rem;
    border-left: 2px solid rgba(200,169,110,0.3);
  }
  .step-dot { margin: 0 0 1rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-about { grid-column: span 1; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  body.bar-visible { padding-bottom: 52px; }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn { width: 100%; justify-content: center; max-width: 360px; }

  .hero-simple { padding: 100px 0 50px; }

  .legal-content { padding: 50px 0; }
}

/* ============================================================ */
/* BLOCS HERO OBLIGATOIRES — NE PAS MODIFIER (après tout CSS)  */
/* ============================================================ */
#hero h1,
.hero h1,
.hero-content h1,
.hero-text h1,
.hero-inner h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
  max-width: 60vw !important;
  width: 60vw !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  white-space: normal !important;
  text-align: center !important;
  color: #FFFFFF !important;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 0 80px rgba(0,0,0,0.4) !important;
  font-style: normal !important;
}

@media (max-width: 1024px) {
  #hero h1,
  .hero h1,
  .hero-content h1,
  .hero-text h1,
  .hero-inner h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important;
    max-width: 65vw !important;
    width: 65vw !important;
  }
}

@media (max-width: 768px) {
  #hero h1,
  .hero h1,
  .hero-content h1,
  .hero-text h1,
  .hero-inner h1 {
    font-size: clamp(1.9rem, 6.5vw, 2.6rem) !important;
    max-width: 88vw !important;
    width: 88vw !important;
    hyphens: none !important;
  }
}

#hero { min-height: 100vh; padding-top: 0; position: relative; overflow: hidden; }

#hero .hero-content, #hero .hero-inner, #hero .hero-text, #hero > div:first-child {
  padding-top: 120px;
}

@media (max-width: 768px) {
  #hero .hero-content, #hero .hero-inner, #hero .hero-text, #hero > div:first-child {
    padding-top: 100px;
  }
}

/* ============================================================ */
/* 19. LIGHTBOX / CAROUSEL GALERIE                             */
/* ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17,24,32,0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-figure img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(247,245,241,0.85);
  text-align: center;
  max-width: 80vw;
}
.lightbox-counter {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}

.lightbox-btn {
  position: absolute;
  background: rgba(247,245,241,0.08);
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--text-light);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.lightbox-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--secondary); }
.lightbox-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox-close { top: 24px; right: 3vw; width: 46px; height: 46px; font-size: 1.5rem; }

@media (max-width: 768px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-btn { width: 44px; height: 44px; font-size: 1.4rem; }
  .lightbox-figure img { max-height: 70vh; }
}

/* ============================================================ */
/* 20. MOSAÏQUE RÉALISATIONS ACCUEIL (1 grande + 4)            */
/* ============================================================ */
.realisations-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
}
.realisations-mosaic .mosaic-large.gallery-item {
  min-height: 524px;
  border-radius: 8px;
}
.realisations-mosaic .mosaic-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.realisations-mosaic .mosaic-quad .gallery-item {
  min-height: 256px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .realisations-mosaic { grid-template-columns: 1fr; }
  .realisations-mosaic .mosaic-large.gallery-item { min-height: 300px; }
  .realisations-mosaic .mosaic-quad .gallery-item { min-height: 180px; }
}

/* ============================================================ */
/* 21. PLACEHOLDER IMAGE MANQUANTE (rose)                      */
/* ============================================================ */
.img-missing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #f0c8d4,
    #f0c8d4 16px,
    #ecbecd 16px,
    #ecbecd 32px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-missing::after {
  content: "Photo à venir";
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b5b6e;
  background: rgba(247,245,241,0.75);
  padding: 8px 16px;
  border-radius: 4px;
}
/* le placeholder a besoin d'un parent positionné */
.feature-split-media { position: relative; }
.gallery-item:has(.img-missing) { cursor: default; }

/* Hero en placeholder (pas de photo) */
.page-hero.is-missing .page-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(240,200,212,0.92) 0%,
    rgba(240,200,212,0.45) 55%,
    rgba(240,200,212,0.7) 100%
  );
}
.page-hero.is-missing h1,
.page-hero.is-missing .page-hero-sub,
.page-hero.is-missing .section-label,
.page-hero.is-missing .breadcrumb,
.page-hero.is-missing .breadcrumb a {
  color: #7a3b4d !important;
  text-shadow: none !important;
}
.page-hero.is-missing .breadcrumb span { color: rgba(122,59,77,0.45) !important; }
.page-hero.is-missing .btn-secondary {
  border-color: rgba(122,59,77,0.5);
  color: #7a3b4d;
}

/* ============================================================ */
/* 22. MENTION GARANTIE (footer)                                */
/* ============================================================ */
.footer-warranty {
  margin-top: 1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-warranty::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
