/* ========================================
   3 DESIGN CONCEPT, Style
   Palette: blanc cassé, anthracite, terracotta, olive
   ======================================== */

:root {
  --white: #FDFBF7;
  --cream: #F5F0E8;
  --beige: #E8E0D4;
  --stone: #D4C9B8;
  --anthracite: #2C2C2C;
  --anthracite-light: #3D3D3D;
  --terracotta: #C17E60;
  --terracotta-dark: #A66B50;
  --olive: #6B7C5E;
  --olive-light: #8A9E7A;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --text-muted: #9A9A9A;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

body.no-scroll { overflow: hidden; }

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

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

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--text-light);
  max-width: 640px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(193,126,96,0.3);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--anthracite);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--full { width: 100%; }

.link-arrow {
  display: inline-block;
  margin-top: 16px;
  font-weight: 500;
  color: var(--terracotta);
  transition: all var(--transition);
}
.link-arrow:hover { letter-spacing: 0.5px; }

/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo__main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}

.header--scrolled .logo__main { color: var(--anthracite); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav__link:hover { color: #fff; }

.header--scrolled .nav__link { color: var(--text-light); }
.header--scrolled .nav__link:hover { color: var(--text); }

.nav__link--cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius);
}
.nav__link--cta:hover {
  background: var(--terracotta-dark);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
}
.header--scrolled .burger span { background: var(--anthracite); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--anthracite);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/terrasse-pierre-naturelle-vue-mer-cote-azur.png');
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  opacity: 0.6;
  z-index: 0;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -3%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,26,26,0.85) 0%, rgba(44,44,44,0.65) 50%, rgba(26,26,26,0.85) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(193,126,96,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(107,124,94,0.12) 0%, transparent 50%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: 720px;
}

.hero__tag {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.hero__title {
  color: #fff;
  margin-bottom: 28px;
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero__subtitle {
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7;
  margin: 0 0 44px;
  max-width: 560px;
}

.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 540px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 540px;
  margin: 32px auto 0;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}

.hero__trust-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.hero__trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: all 0.3s;
  z-index: 3;
}

.hero__scroll span {
  width: 2px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.hero__scroll:hover { border-color: var(--terracotta); }

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(14px); opacity: 1; }
}

@media (max-width: 768px) {
  .hero { min-height: 92vh; }
  .hero__content {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }
  .hero__tag { font-size: 0.72rem; margin-bottom: 18px; }
  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3rem) !important;
    line-height: 1.1;
    margin-bottom: 44px;
  }
  .hero__subtitle {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin: 0 0 22px !important;
    color: rgba(255,255,255,0.75);
  }
  .hero__sub {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .hero__actions { gap: 12px; margin-bottom: 44px; }
  .hero__actions .btn { width: 100%; padding: 14px 20px; font-size: 0.92rem; }
  .hero__trust {
    gap: 16px;
    flex-wrap: nowrap;
    padding-top: 32px;
    margin-top: 48px;
  }
  .hero__trust-num { font-size: 1.5rem; }
  .hero__trust-label { font-size: 0.62rem; }
  .hero__trust-sep { height: 24px; }
  .hero__scroll { display: none; }
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 100px 0;
}

.section--light { background: var(--cream); }

.section--dark {
  background: var(--anthracite);
  color: #fff;
}
.section--dark p { color: rgba(255,255,255,0.6); }
.section--dark .section__title { color: #fff; }

.section--accent {
  background: var(--olive);
  color: #fff;
}
.section--accent p { color: rgba(255,255,255,0.8); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section__header p { margin: 0 auto; }

.section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section__tag--light { color: rgba(255,255,255,0.6); }

.section__title {
  color: var(--anthracite);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.02rem;
  margin-top: 8px;
}

/* ========================================
   INTRO / ABOUT
   ======================================== */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro--reverse { direction: rtl; }
.intro--reverse > * { direction: ltr; }

.intro__text p {
  margin-bottom: 16px;
}

.intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ========================================
   PLACEHOLDER IMAGES
   ======================================== */

.placeholder-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.6;
  font-style: italic;
}

.placeholder-img--warm {
  background: linear-gradient(145deg, var(--stone), var(--beige));
  color: var(--text-light);
}

.placeholder-img--stone {
  background: linear-gradient(145deg, #8a8275, #b0a898);
}

.placeholder-img--terracotta {
  background: linear-gradient(145deg, var(--terracotta), var(--terracotta-dark));
}

.placeholder-img--olive {
  background: linear-gradient(145deg, var(--olive), var(--olive-light));
}

/* ========================================
   INTRO MAGAZINE, Overlay elegant
   ======================================== */

.intro-magazine {
  position: relative;
  min-height: 700px;
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.intro-magazine__photo {
  position: relative;
  height: 100%;
  min-height: 600px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.intro-magazine__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.intro-magazine:hover .intro-magazine__photo img {
  transform: scale(1.03);
}

.intro-magazine__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(31,31,31,0.15) 100%);
}

.intro-magazine__card {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 56px 48px;
  margin-left: -80px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  border-radius: 4px;
  border-left: 3px solid var(--terracotta);
}

.intro-magazine__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.intro-magazine__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--anthracite);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.intro-magazine__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.intro-magazine__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
  max-width: none;
}

.intro-magazine__lead strong { color: var(--anthracite); font-weight: 600; }

.intro-magazine__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 26px;
  max-width: none;
}

.intro-magazine__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  margin-bottom: 22px;
}

.intro-magazine__stat { display: flex; flex-direction: column; gap: 2px; }

.intro-magazine__stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.intro-magazine__stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  line-height: 1.4;
}

.intro-magazine__caption {
  position: absolute;
  bottom: 32px;
  left: 84px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.intro-magazine__caption-loc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.intro-magazine__caption-type {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .intro-magazine {
    grid-template-columns: 1fr;
    padding: 0 24px;
    margin: 60px auto;
  }
  .intro-magazine__photo { min-height: 380px; }
  .intro-magazine__card {
    margin-left: 0;
    margin-top: -60px;
    margin-right: 0;
    padding: 36px 28px;
  }
  .intro-magazine__caption { left: 40px; bottom: auto; top: 20px; }
}

/* ========================================
   SERVICES
   ======================================== */

.services__hint {
  text-align: center;
  margin: 0 auto 36px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service {
  background: transparent;
  border: none;
  padding: 0;
  perspective: 1200px;
  aspect-ratio: 1 / 1.1;
  cursor: pointer;
}

.service__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service:hover .service__inner,
.service:focus .service__inner,
.service.is-flipped .service__inner {
  transform: rotateY(180deg);
}

.service__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service__face--front {
  background: var(--cream);
  border: 1px solid var(--beige);
  justify-content: space-between;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.service:hover .service__face--front {
  border-color: var(--terracotta);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  align-self: flex-start;
}

.service__icon {
  width: 42px;
  height: 42px;
  color: var(--terracotta);
  margin: 0 0 auto;
}
.service__icon svg { width: 100%; height: 100%; }

.service__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--anthracite);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.service__flip-hint {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--beige);
  transition: transform 0.3s;
}

.service:hover .service__flip-hint {
  transform: translateX(4px);
}

.service__face--back {
  background: var(--anthracite);
  color: #fff;
  transform: rotateY(180deg);
  justify-content: center;
  align-items: flex-start;
}

.service__face--back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--terracotta);
}

.service__back-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: none;
}

.service__text strong {
  color: #fff;
  font-weight: 600;
}

/* Mobile, pas de flip, affichage ouvert */
@media (max-width: 768px) {
  .service {
    aspect-ratio: auto;
    perspective: none;
    cursor: default;
  }
  .service__inner {
    transform: none !important;
    transform-style: flat;
    height: auto;
    position: relative;
  }
  .service__face {
    position: relative;
    inset: auto;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }
  .service__face--back {
    transform: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-top: -2px;
  }
  .service__face--front {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding-bottom: 14px;
  }
  .service__flip-hint { display: none; }
  .service:hover .service__face--front {
    border-color: var(--beige);
    box-shadow: none;
  }
}

/* ========================================
   GALLERY
   ======================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item .placeholder-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 240px;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.gallery__item:hover .placeholder-img {
  transform: scale(1.05);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.gallery__info h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.gallery__info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ========================================
   CHANTIERS LAYOUT (liste + galerie)
   ======================================== */

.chantiers-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}

.chantiers-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 100px;
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 8px;
}

.chantiers-list::-webkit-scrollbar {
  width: 4px;
}
.chantiers-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

.chantier-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  color: rgba(255,255,255,0.6);
  font-family: inherit;
}

.chantier-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.chantier-btn.active {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.chantier-btn__name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.chantier-btn__meta {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}

.chantier-btn.active .chantier-btn__meta {
  opacity: 0.85;
}

.chantier-btn--featured {
  border: 1px solid rgba(193,126,96,0.5);
  background: linear-gradient(135deg, rgba(193,126,96,0.18) 0%, rgba(193,126,96,0.06) 100%);
  position: relative;
  margin-top: 8px;
}

.chantier-btn--featured:hover {
  background: linear-gradient(135deg, rgba(193,126,96,0.28) 0%, rgba(193,126,96,0.12) 100%);
  border-color: var(--terracotta);
}

.chantier-btn--featured.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.chantier-btn__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  background: rgba(255,255,255,0.95);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.chantier-btn--featured.active .chantier-btn__badge {
  color: var(--terracotta);
  background: #fff;
}

.chantier-detail__status {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  background: rgba(193,126,96,0.15);
  border: 1px solid rgba(193,126,96,0.4);
  padding: 4px 10px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 12px;
}

/* Galerie droite */
.chantier-detail {
  display: none;
}

.chantier-detail.active {
  display: block;
  animation: fadeInGallery 0.4s ease;
}

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

.chantier-detail__header {
  margin-bottom: 20px;
}

.chantier-detail__header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.chantier-detail__header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.chantier-detail__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chantier-detail__tags span {
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.chantier-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.chantier-photo {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.chantier-photo--large {
  grid-column: span 2;
  grid-row: span 2;
}

.chantier-photo img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.chantier-photo:hover img {
  transform: scale(1.05);
}

.chantier-photos--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px dashed rgba(255,255,255,0.15);
}

.chantier-photos--placeholder p {
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  font-style: italic;
}

/* ========================================
   CARROUSEL CHANTIER
   ======================================== */

.carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
}

.carousel__slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
}

.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 24px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  z-index: 2;
}

.carousel__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 8px;
  background: #b5572a;
  color: #fff;
  vertical-align: middle;
}

.carousel__badge--avant {
  background: rgba(255,255,255,0.15);
}

.carousel__counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
  backdrop-filter: blur(6px);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
}

.carousel__btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.3);
}

.carousel__btn--prev { left: 14px; }
.carousel__btn--next { right: 14px; }

.carousel__dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.carousel__dot.active {
  background: #b5572a;
  width: 22px;
  border-radius: 4px;
}

.carousel__dot:hover {
  background: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .carousel__slide img {
    max-height: 360px;
  }
  .carousel__caption {
    font-size: 0.8rem;
    padding: 12px 16px 10px;
  }
  .carousel__btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

/* ========================================
   FEATURES (Pourquoi nous)
   ======================================== */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature { text-align: center; }

.feature__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 20px;
}

.feature__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--anthracite);
}

.feature p {
  font-size: 0.9rem;
  margin: 0 auto;
}

/* ========================================
   VALUES
   ======================================== */

.values {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.value {
  flex: 1;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--terracotta);
}

.value strong {
  display: block;
  font-size: 0.9rem;
  color: var(--anthracite);
  margin-bottom: 4px;
}

.value span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ========================================
   TEAM MEMBERS
   ======================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: linear-gradient(145deg, var(--stone), var(--beige));
}

.team-card__photo--placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--stone), var(--beige));
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-style: italic;
}

.team-card__body {
  padding: 24px;
}

.team-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.team-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.team-card__spec {
  padding: 4px 12px;
  background: var(--cream);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
}

.team-card__exp {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  border-top: 1px solid var(--beige);
  padding-top: 14px;
}

.team-card__exp strong {
  color: var(--anthracite);
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ========================================
   ZONE
   ======================================== */

.zone { padding: 20px 0; }

.zone__text {
  max-width: 640px;
}
.zone__text .section__title { color: #fff; }

/* ========================================
   PHONE CTA, Gros telephone + email
   ======================================== */

.phone-cta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--anthracite);
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 48px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.phone-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,126,96,0.2), transparent 70%);
  pointer-events: none;
}

.phone-cta__link,
.phone-cta__write {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  position: relative;
  z-index: 1;
}

.phone-cta__link { transition: transform 0.3s; }
.phone-cta__link:hover { transform: scale(1.02); }

.phone-cta__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.phone-cta__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 10px;
}

.phone-cta__email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 10px;
  word-break: break-word;
  text-align: center;
}

.phone-cta__link:hover .phone-cta__number,
.phone-cta__write a:hover {
  color: var(--terracotta);
}

.phone-cta__hours {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.phone-cta__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.phone-cta__divider span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  padding: 8px 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .phone-cta { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .phone-cta__divider { padding: 8px 0; }
  .phone-cta__number { font-size: 2.2rem; }
  .phone-cta__email { font-size: 1.1rem; }
}

/* ========================================
   CHIPS, Pastilles cliquables
   ======================================== */

.form__group--chips { margin-bottom: 28px; }

.form__chips-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}

.form__chips-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.chip:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-1px);
}

.chip__input:checked + .chip {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 20px rgba(193,126,96,0.3);
}

.chip__input:focus-visible + .chip {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* ========================================
   FORM FLOATING LABELS
   ======================================== */

.form--floating .form__group--float {
  position: relative;
  margin-bottom: 20px;
}

.form--floating .form__group--float input,
.form--floating .form__group--float select,
.form--floating .form__group--float textarea {
  width: 100%;
  padding: 22px 16px 10px;
  border: 1.5px solid var(--beige);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.3s;
  outline: none;
}

.form--floating .form__group--float textarea {
  padding-top: 26px;
  resize: vertical;
  min-height: 120px;
}

.form--floating .form__group--float input:focus,
.form--floating .form__group--float select:focus,
.form--floating .form__group--float textarea:focus {
  border-color: var(--terracotta);
}

.form--floating .form__group--float label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 0.88rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
}

.form--floating .form__group--float textarea ~ label {
  top: 18px;
  transform: none;
}

.form--floating .form__group--float input:focus + label,
.form--floating .form__group--float input:not(:placeholder-shown) + label,
.form--floating .form__group--float textarea:focus + label,
.form--floating .form__group--float textarea:not(:placeholder-shown) + label,
.form--floating .form__group--float select:focus + label,
.form--floating .form__group--float select:valid + label {
  top: 8px;
  transform: none;
  font-size: 0.68rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form--floating .form__group--float select:not([value=""]):not(:focus):invalid + label {
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

/* ========================================
   CONTACT
   ======================================== */

.contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}

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

.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-muted);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  margin-bottom: 20px;
}

.contact__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact__card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--anthracite);
}

.contact__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--beige);
}
.contact__item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.contact__item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact__item a,
.contact__item span {
  font-size: 0.95rem;
  color: var(--text);
}

.contact__item a:hover { color: var(--terracotta); }

/* ========================================
   FAQ
   ======================================== */

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

.faq__item {
  border-bottom: 1px solid var(--beige);
  padding: 0;
}

.faq__item:first-child {
  border-top: 1px solid var(--beige);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--anthracite);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--terracotta);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__question:hover { color: var(--terracotta); }

.faq__answer {
  padding: 0 0 24px;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: none;
}

/* ========================================
   CTA
   ======================================== */

.cta {
  background: var(--anthracite);
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta p {
  color: rgba(255,255,255,0.6);
  margin: 0 auto 32px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo__main {
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}

.footer__links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links a,
.footer__links span {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__links a:hover { color: #fff; }

.footer__more {
  margin-top: 4px;
}

.footer__more summary {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  margin-bottom: 10px;
  list-style: none;
  transition: color var(--transition);
}

.footer__more summary::-webkit-details-marker { display: none; }

.footer__more summary::after {
  content: " +";
  font-weight: 600;
}

.footer__more[open] summary::after {
  content: " −";
}

.footer__more summary:hover {
  color: #fff;
}

.footer__more a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

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

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin: 0 auto;
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ========================================
   PARTNERS
   ======================================== */

.section--partners {
  background: #fff;
  padding: 28px 0 22px;
  border-top: 1px solid #e8e0d8;
  border-bottom: 1px solid #e8e0d8;
  overflow: hidden;
}

.partners__title {
  text-align: center;
  max-width: 100%;
  width: 100%;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0 0 16px;
  padding: 0 24px;
  letter-spacing: 0.02em;
}

/* Ticker, stock trading style */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track:hover {
  animation-play-state: paused;
}

.ticker__item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.04em;
  padding: 0 14px;
  white-space: nowrap;
}
.ticker__item--brand {
  color: #b5572a;
  font-weight: 700;
}
.ticker__sep {
  color: #ccc;
  font-size: 0.9rem;
  padding: 0 6px;
}

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

/* ========================================
   STATS
   ======================================== */

.section--stats {
  background: var(--cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--beige);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ========================================
   REFERENCES
   ======================================== */

.references {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reference {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.reference:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.reference__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.reference__header h3 {
  color: #fff;
  font-size: 1.1rem;
  flex: 1;
}

.reference__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(193,126,96,0.2);
  color: var(--terracotta);
  white-space: nowrap;
}

.reference__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: none;
}

.reference__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
}
.reference__meta span:first-child {
  color: rgba(255,255,255,0.4);
}
.reference__meta span:last-child {
  color: var(--terracotta);
  font-weight: 600;
}

.references-total {
  text-align: center;
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(193,126,96,0.12);
  border: 1px solid rgba(193,126,96,0.25);
  border-radius: var(--radius-lg);
}
.references-total p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: none;
  margin: 0;
}
.references-total strong {
  color: var(--terracotta);
  font-size: 1.15rem;
}

/* ========================================
   PRICE GRID
   ======================================== */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--beige);
  transition: all var(--transition);
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta);
}

.price-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 16px;
}

.price-card__range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 20px;
  line-height: 1;
}
.price-card__range span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
}
.price-card li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--cream);
  padding-left: 16px;
  position: relative;
}
.price-card li::before {
  content: ', ';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.price-card li:last-child { border-bottom: none; }

.price-disclaimer {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   TRUST BADGES
   ======================================== */

.contact__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.trust-item {
  background: var(--olive);
  color: #fff;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered delays for grid items */
.service:nth-child(2), .feature:nth-child(2), .gallery__item:nth-child(2) { transition-delay: 0.1s; }
.service:nth-child(3), .feature:nth-child(3), .gallery__item:nth-child(3) { transition-delay: 0.2s; }
.service:nth-child(4), .feature:nth-child(4), .gallery__item:nth-child(4) { transition-delay: 0.3s; }
.service:nth-child(5), .gallery__item:nth-child(5) { transition-delay: 0.4s; }
.service:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   GALERIE PAR PRESTATION
   ======================================== */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.gallery-filter {
  padding: 8px 20px;
  border: 1.5px solid var(--stone);
  border-radius: 100px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.gallery-filter.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all 0.4s ease;
}
.gallery-item.hidden {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__cat {
  display: inline-block;
  padding: 3px 10px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 6px;
}
.gallery-item__title {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Placeholder pour photos à venir */
.gallery-item--placeholder {
  background: var(--cream);
  border: 2px dashed var(--stone);
}
.gallery-item__empty {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.gallery-item__empty span {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.gallery-item__empty p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   TEAM BLOCK, Encart unique
   ======================================== */

#nos-gars {
  background: var(--cream);
}

.team-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.team-block__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.team-block__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.team-block__badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}

.team-block__badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.team-block__content .section__tag { margin-bottom: 12px; }
.team-block__content .section__title {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.team-block__lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
  max-width: none;
}

.team-block__text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: none;
}

.team-block__specs {
  display: grid;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--beige);
}

.team-block__spec {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.team-block__spec-icon {
  color: var(--terracotta);
  font-size: 0.8rem;
  margin-top: 4px;
}

.team-block__spec strong { color: var(--anthracite); }

@media (max-width: 1024px) {
  .team-block { grid-template-columns: 1fr; gap: 40px; }
  .team-block__image { aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .team-block__badge { padding: 12px 16px; }
  .team-block__badge-num { font-size: 2.2rem; }
}

/* ========================================
   TEMOIGNAGES
   ======================================== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s;
  position: relative;
}

.testimonial:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(193,126,96,0.3);
  transform: translateY(-4px);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.2;
  line-height: 1;
}

.testimonial__stars {
  color: var(--terracotta);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.testimonial__text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  max-width: none;
}

.testimonial__author {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.testimonial__author strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial__author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
  .testimonials { grid-template-columns: 1fr; gap: 20px; }
}

/* ========================================
   SHOWCASE AVANT/APRÈS, STAR DU SITE
   ======================================== */

.showcase { background: var(--cream); }

.showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.showcase__thumb {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  transition: all 0.4s ease;
}

.showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.7) brightness(0.85);
}

.showcase__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  transition: opacity 0.4s;
}

.showcase__thumb-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: left;
  z-index: 1;
}

.showcase__thumb:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(1);
}

.showcase__thumb.active {
  box-shadow: 0 0 0 3px var(--terracotta), 0 12px 30px rgba(193,126,96,0.3);
  transform: translateY(-4px);
}

.showcase__thumb.active img {
  filter: saturate(1) brightness(1);
}

.showcase__thumb.active::after {
  background: linear-gradient(to top, rgba(193,126,96,0.75) 0%, rgba(193,126,96,0.15) 50%, transparent 100%);
}

@media (max-width: 768px) {
  .showcase__thumbs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .showcase__thumb-label { font-size: 0.65rem; bottom: 6px; left: 8px; right: 8px; }
}

.showcase__wrapper { max-width: 1100px; margin: 0 auto; }

.compare { display: none; animation: fadeInCompare 0.5s ease; }
.compare.active { display: block; }

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

.compare__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  user-select: none;
  -webkit-user-select: none;
}

.compare__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.compare__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.compare__img--before {
  width: auto;
  min-width: 100%;
}

.compare__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  pointer-events: none;
}

.compare__line { width: 100%; height: 100%; }

.compare__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.compare__inner:hover .compare__btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.compare__label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  pointer-events: none;
}

.compare__label--before { left: 20px; }
.compare__label--after { right: 20px; background: var(--terracotta); }

.compare__info { text-align: center; max-width: 620px; margin: 32px auto 0; }
.compare__info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--anthracite);
  margin-bottom: 10px;
}
.compare__info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: none;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .showcase__tabs { gap: 6px; }
  .showcase__tab { padding: 8px 16px; font-size: 0.78rem; }
  .compare__inner { aspect-ratio: 4 / 3; border-radius: 14px; }
  .compare__btn { width: 44px; height: 44px; font-size: 0.7rem; }
  .compare__label { font-size: 0.6rem; padding: 4px 10px; top: 12px; }
  .compare__label--before { left: 12px; }
  .compare__label--after { right: 12px; }
}

/* ========================================
   STATS, Plus impactant (anthracite)
   ======================================== */

.section--stats {
  background: var(--anthracite);
  color: #fff;
  padding: 60px 0;
}

.section--stats .stat__number {
  color: var(--terracotta);
  font-size: 3.2rem;
}

.section--stats .stat__label {
  color: rgba(255,255,255,0.6);
}

.section--stats .stat {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.section--stats .stat:last-child { border-right: none; }


/* ========================================
   CURSEUR PERSONNALISÉ
   ======================================== */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-width 0.25s ease;
  mix-blend-mode: difference;
  background: transparent;
}

.custom-cursor--hover {
  width: 48px;
  height: 48px;
  background: rgba(193,126,96,0.15);
  border-width: 2px;
}

@media (max-width: 1024px) {
  .custom-cursor { display: none; }
}

/* ========================================
   FADE UP
   ======================================== */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ========================================
   BOUTON FLOTTANT APPEL
   ======================================== */

.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(193,126,96,0.4);
  z-index: 50;
  transition: all 0.3s;
  animation: pulseCall 2.5s ease-in-out infinite;
}

.floating-call svg {
  width: 24px;
  height: 24px;
}

.floating-call:hover {
  background: var(--terracotta-dark);
  transform: scale(1.1);
  animation: none;
}

@keyframes pulseCall {
  0%, 100% { box-shadow: 0 8px 30px rgba(193,126,96,0.4), 0 0 0 0 rgba(193,126,96,0.5); }
  50% { box-shadow: 0 8px 30px rgba(193,126,96,0.4), 0 0 0 16px rgba(193,126,96,0); }
}

@media (min-width: 1025px) {
  .floating-call { display: none; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--large { grid-column: span 2; grid-row: span 1; }
  .references { grid-template-columns: repeat(2, 1fr); }
  .chantiers-layout { grid-template-columns: 250px 1fr; gap: 24px; }
  .chantier-photos { grid-template-columns: repeat(2, 1fr); }
  .chantier-photo--large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section__header { margin-bottom: 40px; }
  .section__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section__desc { font-size: 0.92rem; line-height: 1.65; }

  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #1a1a1a 0%, #2c2c2c 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 200;
    padding: 80px 24px 40px;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .nav__link {
    color: #fff !important;
    font-size: 1.35rem !important;
    font-weight: 500;
    padding: 8px 16px;
    letter-spacing: 0.02em;
  }
  .nav__link:hover { color: var(--terracotta) !important; }
  .nav__link--cta {
    margin-top: 12px;
    background: var(--terracotta);
    padding: 14px 32px !important;
    border-radius: 8px;
    color: #fff !important;
  }
  .burger { z-index: 250; }
  .burger.active span { background: #fff !important; }

  .hero__content { padding: 120px 0 80px; }

  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro--reverse { direction: ltr; }

  .services { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service__num { font-size: 0.95rem; }
  .service__icon { width: 38px; height: 38px; }
  .service__title { font-size: 0.92rem; }
  .service__face--front { padding: 18px 14px 14px; }
  .service__face--back { padding: 14px; }
  .service__back-title { font-size: 0.95rem; margin-bottom: 6px; }
  .service__text { font-size: 0.78rem; line-height: 1.5; }

  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery__item--large { grid-column: span 1; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 6px; }
  .gallery-filter { padding: 6px 14px; font-size: 0.75rem; }

  .chantiers-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .chantiers-list {
    position: static;
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .chantier-btn {
    padding: 10px 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .chantier-btn__meta { display: none; }
  .chantier-photos { grid-template-columns: repeat(2, 1fr); }
  .chantier-photo--large { grid-column: span 2; grid-row: span 1; }

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

  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .references { grid-template-columns: 1fr; }
  .contact__trust { grid-template-columns: 1fr; }

  .values { flex-direction: column; }

  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .hero__trust { gap: 12px; }
  .hero__trust-num { font-size: 1.3rem; }
  .hero__trust-label { font-size: 0.58rem; letter-spacing: 0.08em; }
  .section { padding: 48px 0; }
  .section__title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .container { padding: 0 22px; }
}

@media (max-width: 768px) {
  /* Plus d'air sur les bords pour Samsung/Android */
  .container { padding: 0 22px; }

  /* Cacher le bandeau partenaires/fournisseurs sur mobile (pas vital, fait charger) */
  .section--partners { display: none; }

  /* Cacher la section "Chiffres clés" en doublon avec hero__trust (déjà visible dans le hero) */
  .section--stats { display: none; }

  /* Cacher les 3 stats du bloc intro-magazine (Sept. 2024, Cagnes-sur-Mer, Côte d'Azur) — déjà mentionnés ailleurs */
  .intro-magazine__stats { display: none; }

  /* Cacher le 2ème paragraphe de l'intro (long et redondant avec les prestations) */
  .intro-magazine__text { display: none; }

  /* Cacher la section "Spécialités / Ce qui fait notre différence" (4 features) — redondante avec hero trust + team block + intro */
  #specialites { display: none; }

  /* Cacher le CTA final "Prêt à lancer votre projet" — redondant avec phone-cta du contact juste au-dessus */
  .cta { display: none; }

  /* Cacher la section "Prestations" (14 cartes) sur mobile — la galerie photo juste après suffit visuellement */
  #prestations { display: none; }

  /* Cacher la section "Zone d'intervention" sur mobile — les villes sont déjà partout (footer, schema, etc.) */
  #zone { display: none; }

  /* Cacher la FAQ sur mobile — pas essentielle, scroll lourd. Le schema FAQPage reste pour Google */
  #faq { display: none; }

  /* Cacher les liens de menu vers les sections supprimées sur mobile */
  .nav__link[href="#prestations"],
  .nav__link[href="#faq"] {
    display: none;
  }

  /* Cacher la légende "Côte d'Azur · NOTRE ÉQUIPE SUR CHANTIER" qui s'affichait par-dessus la photo */
  .intro-magazine__caption { display: none; }

  /* Cacher le H2 sous le slogan pour aérer (le slogan suffit, le SEO est ailleurs) */
  .hero__subtitle { display: none; }

  /* Cacher Assurance décennale + Sans engagement sur le bloc trust de la section Contact */
  .contact__trust .trust-item:nth-child(3),
  .contact__trust .trust-item:nth-child(4) { display: none; }

  /* Cacher la colonne "Zones d'intervention" dans le footer */
  .footer__links:last-child { display: none; }

  /* Galerie : cacher le paragraphe descriptif sous chaque titre d'onglet (Carrelage, Salle de bain, etc.) — garder seulement le titre + les tags */
  .chantier-detail__header p { display: none; }

  /* Fix text overflow dans intro-magazine__card */
  .intro-magazine__card { overflow: hidden; }
  .intro-magazine__lead, .intro-magazine__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Tronquer la liste des villes (l'essentiel + lien vers section #zone) */
  .zone__text p strong:nth-of-type(n+11) { display: none; }
  .zone__text p strong:nth-of-type(10)::after {
    content: "...";
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
  }

  /* Simplifier le formulaire contact : cacher les chips secondaires */
  .chip__input#chip-douche, .chip__input#chip-douche + label,
  .chip__input#chip-peinture, .chip__input#chip-peinture + label,
  .chip__input#chip-parquet, .chip__input#chip-parquet + label,
  .chip__input#chip-autre, .chip__input#chip-autre + label {
    display: none !important;
  }
  .form__chips-hint { font-size: 0.7rem; }
  .chip { padding: 8px 14px; font-size: 0.82rem; }
}

/* Plus d'air respiratoire entre sections sur mobile (effet wow) */
@media (max-width: 768px) {
  /* Section padding plus géré */
  .section { padding: 64px 0 !important; }

  /* Plus d'espace après le hero pour respirer */
  .intro-magazine { padding-top: 30px; }

  /* Intro-magazine plus compact */
  .intro-magazine__title { font-size: 1.6rem !important; line-height: 1.2 !important; }
  .intro-magazine__lead { font-size: 0.92rem; line-height: 1.65; }
  .intro-magazine__text { font-size: 0.88rem; line-height: 1.65; }
  .intro-magazine__card { padding: 28px 22px !important; }

  /* Zone d'intervention : la liste de villes plus discrète */
  .zone__text p { font-size: 0.85rem; line-height: 1.7; }
  .zone__text strong { font-weight: 500; color: #fff; }

  /* Témoignages en carrousel horizontal sur mobile (scroll-snap natif) */
  .testimonials {
    grid-template-columns: none !important;
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px !important;
    padding-bottom: 16px;
    margin: 0 -22px;
    padding-left: 22px;
    padding-right: 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials::-webkit-scrollbar { display: none; }
  .testimonial {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 24px 22px !important;
  }
  .testimonial__text { font-size: 0.92rem !important; line-height: 1.6 !important; }
  .testimonial__stars { font-size: 1rem; margin-bottom: 12px; }

  /* Team block plus compact */
  .team-block__lead { font-size: 0.95rem; line-height: 1.65; }
  .team-block__text { font-size: 0.88rem; }
  .team-block__spec { font-size: 0.84rem; }

  /* Features (Spécialités) plus compactes */
  .feature__title { font-size: 1.05rem !important; }
  .feature p { font-size: 0.86rem; line-height: 1.6; }

  /* FAQ plus compacte */
  .faq__question { font-size: 0.95rem !important; padding: 16px 18px !important; }
  .faq__answer p { font-size: 0.88rem; line-height: 1.6; }

  /* Contact form plus compact */
  .phone-cta {
    padding: 16px 16px !important;
    gap: 4px !important;
    margin-bottom: 28px !important;
  }
  .phone-cta__link, .phone-cta__write {
    padding: 8px 4px !important;
    gap: 2px !important;
  }
  .phone-cta__label { font-size: 0.62rem !important; margin-bottom: 2px !important; }
  .phone-cta__number { font-size: 1.25rem !important; margin: 2px 0 !important; }
  .phone-cta__hours { font-size: 0.65rem !important; line-height: 1.3 !important; }
  .phone-cta__email { font-size: 0.9rem !important; word-break: break-all; margin: 2px 0 !important; }
  .phone-cta__divider { padding: 6px 0 !important; }

  /* Footer plus compact */
  .footer { padding: 40px 0 0 !important; }
  .footer__inner { gap: 24px !important; padding: 0 22px; }
  .footer__brand p { font-size: 0.82rem; line-height: 1.65; }
  .footer__links h4 { font-size: 0.7rem; margin-bottom: 12px; }
  .footer__links a { font-size: 0.84rem; margin-bottom: 6px; }
  .footer__bottom p { font-size: 0.7rem; line-height: 1.6; }

  /* Fix burger menu cassé après scroll : retirer backdrop-filter qui crée un stacking context bloquant */
  .header--scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(253,251,247,0.98) !important;
  }
  /* Quand le menu est ouvert, le header doit être totalement transparent et non-bloquant */
  body.no-scroll .header,
  body.no-scroll .header--scrolled {
    background: transparent !important;
    box-shadow: none !important;
  }
}
